From 4bdacfbbaa4270d66f3667b290eacb0216e2d6ed Mon Sep 17 00:00:00 2001 From: Tanaya Mankad Date: Mon, 20 Jan 2025 07:42:50 -0700 Subject: [PATCH 01/15] Correct schema syntax, take 1. --- dodo.py | 8 ++++---- examples/AOSmithHPTS50.yaml | 4 ++-- pyproject.toml | 6 +++--- schema/CentralWaterHeatingSystem.schema.yaml | 10 +++++----- schema/HPWHSimInput.schema.yaml | 2 +- schema/HeatSourceConfiguration.schema.yaml | 4 ++-- schema/RSCONDENSERWATERHEATSOURCE.schema.yaml | 2 +- schema/RSINTEGRATEDWATERHEATER.schema.yaml | 2 +- schema/RSTANK.schema.yaml | 8 +++++--- 9 files changed, 24 insertions(+), 22 deletions(-) diff --git a/dodo.py b/dodo.py index a664a9e..28ffa45 100644 --- a/dodo.py +++ b/dodo.py @@ -14,7 +14,7 @@ def task_validate_example_files(): """Validates the example files against the JSON schema (and other validation steps)""" return { "file_dep": data_model.examples - + [schema.path for schema in data_model.schemas], + + [schema.file_path for schema in data_model.schemas], "actions": [(data_model.validate_example_files, [])], } @@ -22,10 +22,10 @@ def task_validate_example_files(): def task_generate_cpp_code(): """Generate CPP headers and source for example schema.""" return { - "file_dep": [schema.path for schema in data_model.cpp_schemas] + "file_dep": [schema.file_path for schema in data_model.cpp_schemas] + [schema.meta_schema_path for schema in data_model.schemas], - "targets": [schema.cpp_header_path for schema in data_model.cpp_schemas] - + [schema.cpp_source_path for schema in data_model.cpp_schemas], + "targets": [schema.cpp_header_file_path for schema in data_model.cpp_schemas] + + [schema.cpp_source_file_path for schema in data_model.cpp_schemas], "actions": [(data_model.generate_cpp_project, [[]])], "clean": True, } diff --git a/examples/AOSmithHPTS50.yaml b/examples/AOSmithHPTS50.yaml index 6c36ad1..73822f6 100644 --- a/examples/AOSmithHPTS50.yaml +++ b/examples/AOSmithHPTS50.yaml @@ -1,12 +1,12 @@ --- metadata: - schema: HPWHSimInput + schema_name: HPWHSimInput depresses_temperature: false fixed_volume: true integrated_system: metadata: - schema: RSINTEGRATEDWATERHEATER + schema_name: RSINTEGRATEDWATERHEATER performance: heat_source_configurations: - companion_heat_source_id: compressor diff --git a/pyproject.toml b/pyproject.toml index cd6dbd3..d8fbb5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,9 @@ description = "" authors = ["Big Ladder Software"] [tool.poetry.dependencies] -python = "^3.8" -#lattice = {path = "../lattice", develop = true} # "0.1.4" -lattice = {git = "https://github.com/bigladder/lattice.git", branch = "add-basic-build-support"} +python = "^3.9" +lattice = {path = "../lattice", develop = true} +#lattice = {git = "https://github.com/bigladder/lattice.git", branch = "cpp-cleanup"} [tool.poetry.dev-dependencies] doit = "0.36.0" diff --git a/schema/CentralWaterHeatingSystem.schema.yaml b/schema/CentralWaterHeatingSystem.schema.yaml index e941841..bd034c8 100644 --- a/schema/CentralWaterHeatingSystem.schema.yaml +++ b/schema/CentralWaterHeatingSystem.schema.yaml @@ -35,15 +35,15 @@ CentralWaterHeatingSystem: standby_power: Description: "Power drawn when system is in standby mode" Data Type: "Numeric" - Constrains: "> 0" + Constraints: ">0.0" external_inlet_height: Description: "Fractional tank height of inlet" Data Type: "Numeric" - Constrains: "> 0" + Constraints: ">0" external_outlet_height: Description: "Fractional tank height of outlet" Data Type: "Numeric" - Constrains: "> 0" + Constraints: ">0" control_type: Description: "Control type" Data Type: "" @@ -52,13 +52,13 @@ CentralWaterHeatingSystem: Description: "Flow rate, if multipass system" Data Type: "Numeric" Units: "m3/s" - Constrains: "> 0" + Constraints: ">0" Required: if control_type=FIXED_FLOW_RATE fixed_outlet_temperature: Description: "Fixed Outlet Temperature" Data Type: "Numeric" Units: "K" - Constrains: "> 0" + Constraints: ">0" Required: if control_type=FIXED_OUTLET_TEMPERATURE secondary_heat_exchanger: Description: "Secondary heat exchanger" diff --git a/schema/HPWHSimInput.schema.yaml b/schema/HPWHSimInput.schema.yaml index 448447d..4b71bf9 100644 --- a/schema/HPWHSimInput.schema.yaml +++ b/schema/HPWHSimInput.schema.yaml @@ -25,7 +25,7 @@ HPWHSimInput: number_of_nodes: Description: "Number of tank nodes used for simulation" Data Type: "Integer" - Constrains: "> 0" + Constraints: ">0" depresses_temperature: Description: "Depresses space temperature when activated" Data Type: Boolean diff --git a/schema/HeatSourceConfiguration.schema.yaml b/schema/HeatSourceConfiguration.schema.yaml index e0ce435..baf79af 100644 --- a/schema/HeatSourceConfiguration.schema.yaml +++ b/schema/HeatSourceConfiguration.schema.yaml @@ -120,7 +120,7 @@ HeatingLogic: Data Elements: heating_logic_type: Description: "Type of heating logic" - Data Type: "{HeatingLogicType}" + Data Type: "" Required: True Notes: "Determines which heating-logic data group is used for `heating_logic`" heating_logic: @@ -151,7 +151,7 @@ TemperatureBasedHeatingLogic: Required: "if !absolute_temperature" standby_temperature_location: Description: "Standby temperature location" - Data Type: "{StandbyTemperatureLocation}" + Data Type: "" Required: "if !logic_distribution" temperature_weight_distribution: Description: "Weighted distribution for comparison, by division, in order" diff --git a/schema/RSCONDENSERWATERHEATSOURCE.schema.yaml b/schema/RSCONDENSERWATERHEATSOURCE.schema.yaml index c8cf6ce..0786fa9 100644 --- a/schema/RSCONDENSERWATERHEATSOURCE.schema.yaml +++ b/schema/RSCONDENSERWATERHEATSOURCE.schema.yaml @@ -59,7 +59,7 @@ Performance: Constraints: ">=0.0" coil_configuration: Description: "Coil configuration" - Data Type: "{CoilConfiguration}" + Data Type: "" Required: True maximum_refrigerant_temperature: Description: "Maximum temperature of the refrigerant entering the condenser" diff --git a/schema/RSINTEGRATEDWATERHEATER.schema.yaml b/schema/RSINTEGRATEDWATERHEATER.schema.yaml index 85913ef..fcd43aa 100644 --- a/schema/RSINTEGRATEDWATERHEATER.schema.yaml +++ b/schema/RSINTEGRATEDWATERHEATER.schema.yaml @@ -63,5 +63,5 @@ Performance: standby_power: Description: "Power drawn when system is in standby mode" Data Type: "Numeric" - Constrains: "> 0" + Constraints: ">0" diff --git a/schema/RSTANK.schema.yaml b/schema/RSTANK.schema.yaml index 5739a18..af3ad0b 100644 --- a/schema/RSTANK.schema.yaml +++ b/schema/RSTANK.schema.yaml @@ -49,12 +49,12 @@ Performance: volume: Data Type: "Numeric" Units: "m3" - Range: ">= 0" + Constraints: ">=0.0" Required: True diameter: Data Type: "Numeric" Units: "m" - Range: ">= 0" + Constraints: ">=0.0" ua: Data Type: "Numeric" Units: "W/K" @@ -66,7 +66,9 @@ Performance: Description: "Bottom fraction of the tank that should mix during draws" Data Type: "Numeric" Units: "-" - Range: ">= 0, <= 1" + Constraints: + - ">=0.0" + - "<=1.0" heat_exchanger_effectiveness: # TODO: Move to separate RS Description: "Effectiveness for heat exchange" Data Type: "Numeric" From 991670861bfc3bbe29a979ffec30412a703ae2c3 Mon Sep 17 00:00:00 2001 From: Tanaya Mankad Date: Mon, 20 Jan 2025 08:51:43 -0700 Subject: [PATCH 02/15] Upgrade schema with minor validation fixes. --- examples/AOSmithHPTS50.yaml | 248 ++++++++++++++++-------------------- 1 file changed, 113 insertions(+), 135 deletions(-) diff --git a/examples/AOSmithHPTS50.yaml b/examples/AOSmithHPTS50.yaml index 73822f6..c1e4c5b 100644 --- a/examples/AOSmithHPTS50.yaml +++ b/examples/AOSmithHPTS50.yaml @@ -1,149 +1,127 @@ --- metadata: - schema_name: HPWHSimInput + schema_author: Big Ladder Software + schema_name: RSINTEGRATEDWATERHEATER + schema_version: 1.0.0 + author: None + id: 6998e64f-7824-414c-9d48-57e43ee47071 + description: AOSmith 50-gallon integrated heat-pump water heater + time_of_creation: 2022-11-23T11:45Z -depresses_temperature: false -fixed_volume: true -integrated_system: - metadata: - schema_name: RSINTEGRATEDWATERHEATER - performance: - heat_source_configurations: - - companion_heat_source_id: compressor - followed_by_heat_source_id: compressor - heat_distribution: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - heat_source: +description: + product_information: + manufacturer: Rheem + model_number: Rheem2020Prem50 + +performance: + tank: + metadata: + schema_author: Big Ladder Software + schema_name: RS_TANK + schema_version: 1.0.0 + author: None + description: Generic tank + id: 12345678-1234-0000-1234-987654321000 + time_of_creation: 2020-05-07T00:00Z + disclaimer: Example data not to be used for simulation + notes: An example representation of a tank + description: + product_information: + manufacturer: Generic + model_number: XXXXXX + performance: + volume: 0.1726 + ua: 0.001778611 # kW/K + bottom_fraction_of_tank_mixing_on_draw: 0.333 + + heat_source_configurations: + - heat_source: metadata: + data_model: ASHRAE205 schema: RSRESISTANCEWATERHEATSOURCE + schema_version: 1.0.0 + description: Thermistor + id: XXXX-XXXX-XXXXX + data_timestamp: 2020-05-07T00:00Z + data_version: 1 + disclaimer: Example data not to be used for simulation + notes: An example representation of a resistive heat source + description: + product_information: + manufacturer: Generic + model_number: XXXXXX performance: input_power: 4500 - heat_source_type: RESISTANCE - id: resistiveElementTop + id: XXXX-XXXX-XXXXX + heat_distribution: [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0] turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 6.594444444444444 - temperature_weight_distribution: - - 0 - - 0 - - 1 - heating_logic_type: TEMPERATURE_BASED - - backup_heat_source_id: compressor - followed_by_heat_source_id: compressor - heat_distribution: - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSRESISTANCEWATERHEATSOURCE - performance: - input_power: 4500 - heat_source_type: RESISTANCE - id: resistiveElementBottom - - backup_heat_source_id: resistiveElementBottom - heat_distribution: - - 0 - - 0.2 - - 0.2 - - 0.2 - - 0.2 - - 0.2 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: + differential_temperature: 0 + logic_distribution: [0, 0, 0, 0, 0, 1] + evaluation_criterion: MAXIMUM + comparison_type: LESS_THAN + hysteresis_temperature: 0 + + - heat_source: metadata: + data_model: ASHRAE205 schema: RSCONDENSERWATERHEATSOURCE + schema_version: 1.0.0 + description: Condenser coil + id: XXXX-XXXX-XXXXX + data_timestamp: 2020-05-07T00:00Z + data_version: 1 + disclaimer: Example data not to be used for simulation + notes: An example representation of a condenser heat source + description: + product_information: + manufacturer: Generic + model_number: XXXXXX performance: - coil_configuration: WRAPPED - compressor_lockout_temperature_hysteresis: 0.5555555555555556 - maximum_refrigerant_temperature: 344.26111111111106 - maximum_temperature: 322.0388888888889 - minimum_temperature: 275.92777777777775 - performance_map: + performance_map: # test values grid_variables: - evaporator_environment_dry_bulb_temperature: - - 275.92777777777775 - - 283.15 - - 292.8722222222222 - - 308.15 - - 322.0388888888889 - heat_source_temperature: - - 273.15 - - 344.26111111111106 + evaporator_environment_temperature: [293.15, 313.25] + heat_source_temperature: [293.15, 313.25] lookup_variables: - heating_capacity: - - 799.4886411755099 - - 655.9118269387769 - - 1061.3632 - - 774.1260800000014 - - 1460.4995680000004 - - 933.6636000000017 - - 1868.607808 - - 2020.603200000001 - - 2274.8743891570252 - - 3153.5009851239693 - input_power: - - 135.53542857142855 - - 464.7148571428571 - - 146.5 - - 465.2199999999999 - - 161.26 - - 465.8999999999999 - - 172.84 - - 508.1999999999999 - - 183.36727272727273 - - 546.6545454545454 - heat_source_type: CONDENSER - id: compressor + input_power: [200, 300, 300, 400] + cop: [0.3, 0.4, 0.4, 0.5] + standby_power: 50 + coil_configuration: WRAPPED + id: XXXX-XXXX-XXXXX + heat_distribution: [0.2, 0.2, 0.2, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0] turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 16.77777777777778 - temperature_weight_distribution: - - 1 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 5 - standby_temperature_location: TOP_OF_TANK - heating_logic_type: TEMPERATURE_BASED - primary_heat_source_id: resistiveElementTop - tank: - metadata: - schema: RSTANK - performance: - bottom_fraction_of_tank_mixing_on_draw: 0.3333333333333333 - fittings_ua: 0 - ua: 1.7786111111111111 - volume: 0.172614696 -number_of_nodes: 12 -standard_setpoint: 325.92777777777775 -system_type: INTEGRATED + differential_temperature: 6.594 # K + logic_distribution: [1, 0, 0] + evaluation_criterion: WEIGHTED_AVERAGE + comparison_type: LESS_THAN + temperature_hysteresis: 0.556 + standby_logic: + differential_temperature: 5 + evaluation_criterion: WEIGHTED_AVERAGE + comparison_type: LESS_THAN + hysteresis_temperature: 0.556 + + - heat_source: + metadata: + data_model: ASHRAE205 + schema: RSRESISTANCEWATERHEATSOURCE + schema_version: 1.0.0 + description: Thermistor + id: XXXX-XXXX-XXXXX + data_timestamp: 2020-05-07T00:00Z + data_version: 1 + disclaimer: Example data not to be used for simulation + notes: An example representation of a resistive heat source + description: + product_information: + manufacturer: Generic + model_number: XXXXXX + performance: + input_power: 4500 + id: XXXX-XXXX-XXXXX + heat_distribution: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + shut_off_logic: + differential_temperature: 55.56 + logic_distribution: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + evaluation_criterion: MAXIMUM + comparison_type: LESS_THAN + hysteresis_temperature: 2.22 From db8f8cf732cecbfdaec6b97d0af858084ad3474c Mon Sep 17 00:00:00 2001 From: Tanaya Mankad Date: Mon, 20 Jan 2025 08:58:57 -0700 Subject: [PATCH 03/15] Add complete metadata to schema so validation can continue. --- examples/ColmacCxA_20_MP.yaml | 7 ++++++- examples/ColmacCxA_20_SP.yaml | 7 ++++++- examples/Rheem2020Prem50.yaml | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/examples/ColmacCxA_20_MP.yaml b/examples/ColmacCxA_20_MP.yaml index 9cf1a39..fc6ae0e 100644 --- a/examples/ColmacCxA_20_MP.yaml +++ b/examples/ColmacCxA_20_MP.yaml @@ -2146,7 +2146,12 @@ central_system: depresses_temperature: false fixed_volume: false metadata: - schema: HPWHSimInput + schema_author: Big Ladder Software + schema_name: HPWHSimInput + schema_version: 1.0.0 + author: None + id: 6998e64f-7824-414c-9d48-57e43ee47071 + time_of_creation: 2022-11-23T11:45Z number_of_nodes: 24 standard_setpoint: 330.3722222222222 system_type: CENTRAL diff --git a/examples/ColmacCxA_20_SP.yaml b/examples/ColmacCxA_20_SP.yaml index 2d2aef3..77110ae 100644 --- a/examples/ColmacCxA_20_SP.yaml +++ b/examples/ColmacCxA_20_SP.yaml @@ -4146,7 +4146,12 @@ central_system: depresses_temperature: false fixed_volume: false metadata: - schema: HPWHSimInput + schema_author: Big Ladder Software + schema_name: HPWHSimInput + schema_version: 1.0.0 + author: None + id: 6998e64f-7824-414c-9d48-57e43ee47071 + time_of_creation: 2022-11-23T11:45Z number_of_nodes: 96 standard_setpoint: 330.3722222222222 system_type: CENTRAL diff --git a/examples/Rheem2020Prem50.yaml b/examples/Rheem2020Prem50.yaml index 5d5ae3b..63a8f5a 100644 --- a/examples/Rheem2020Prem50.yaml +++ b/examples/Rheem2020Prem50.yaml @@ -212,7 +212,12 @@ integrated_system: ua: 2.375 volume: 0.170721991 metadata: - schema: HPWHSimInput + schema_author: Big Ladder Software + schema_name: HPWHSimInput + schema_version: 1.0.0 + author: None + id: 6998e64f-7824-414c-9d48-57e43ee47071 + time_of_creation: 2022-11-23T11:45Z number_of_nodes: 12 standard_setpoint: 325.92777777777775 system_type: INTEGRATED From 64d873428df004b3bf048c11ee185beff69f7581 Mon Sep 17 00:00:00 2001 From: Tanaya Mankad Date: Mon, 20 Jan 2025 11:05:33 -0700 Subject: [PATCH 04/15] Separate example validation from cpp generation. --- dodo.py | 21 +- poetry.lock | 1146 +++++++++++++++++++++++------------------------- pyproject.toml | 6 +- 3 files changed, 580 insertions(+), 593 deletions(-) diff --git a/dodo.py b/dodo.py index 28ffa45..ab83f36 100644 --- a/dodo.py +++ b/dodo.py @@ -7,9 +7,27 @@ from lattice import Lattice -data_model = Lattice() +data_model = Lattice(build_validation=False) +def task_generate_meta_schemas(): + """Generate JSON meta schemas""" + return { + "file_dep": [schema.file_path for schema in data_model.schemas], + "targets": [schema.meta_schema_path for schema in data_model.schemas], + "actions": [(data_model.generate_meta_schemas, [])], + "clean": True, + } + +def task_validate_schemas(): + """Validate the example schemas against the JSON meta schema""" + return { + "task_dep": [f"generate_meta_schemas"], + "file_dep": [schema.file_path for schema in data_model.schemas] + + [schema.meta_schema_path for schema in data_model.schemas], + "actions": [(data_model.validate_schemas, [])], + } + def task_validate_example_files(): """Validates the example files against the JSON schema (and other validation steps)""" return { @@ -22,6 +40,7 @@ def task_validate_example_files(): def task_generate_cpp_code(): """Generate CPP headers and source for example schema.""" return { + "task_dep": [f"validate_schemas"], "file_dep": [schema.file_path for schema in data_model.cpp_schemas] + [schema.meta_schema_path for schema in data_model.schemas], "targets": [schema.cpp_header_file_path for schema in data_model.cpp_schemas] diff --git a/poetry.lock b/poetry.lock index 9ad8d2a..3ea13fe 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,20 +1,20 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "attrs" -version = "24.2.0" +version = "24.3.0" description = "Classes Without Boilerplate" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, + {file = "attrs-24.3.0-py3-none-any.whl", hash = "sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308"}, + {file = "attrs-24.3.0.tar.gz", hash = "sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff"}, ] [package.extras] benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] @@ -30,56 +30,60 @@ files = [ {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] -[package.dependencies] -pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""} - [package.extras] dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] [[package]] name = "cbor2" -version = "5.6.4" +version = "5.6.5" description = "CBOR (de)serializer with extensive tag support" optional = false python-versions = ">=3.8" files = [ - {file = "cbor2-5.6.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c40c68779a363f47a11ded7b189ba16767391d5eae27fac289e7f62b730ae1fc"}, - {file = "cbor2-5.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0625c8d3c487e509458459de99bf052f62eb5d773cc9fc141c6a6ea9367726d"}, - {file = "cbor2-5.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de7137622204168c3a57882f15dd09b5135bda2bcb1cf8b56b58d26b5150dfca"}, - {file = "cbor2-5.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3545e1e62ec48944b81da2c0e0a736ca98b9e4653c2365cae2f10ae871e9113"}, - {file = "cbor2-5.6.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d6749913cd00a24eba17406a0bfc872044036c30a37eb2fcde7acfd975317e8a"}, - {file = "cbor2-5.6.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:57db966ab08443ee54b6f154f72021a41bfecd4ba897fe108728183ad8784a2a"}, - {file = "cbor2-5.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:380e0c7f4db574dcd86e6eee1b0041863b0aae7efd449d49b0b784cf9a481b9b"}, - {file = "cbor2-5.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5c763d50a1714e0356b90ad39194fc8ef319356b89fb001667a2e836bfde88e3"}, - {file = "cbor2-5.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:58a7ac8861857a9f9b0de320a4808a2a5f68a2599b4c14863e2748d5a4686c99"}, - {file = "cbor2-5.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d715b2f101730335e84a25fe0893e2b6adf049d6d44da123bf243b8c875ffd8"}, - {file = "cbor2-5.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f53a67600038cb9668720b309fdfafa8c16d1a02570b96d2144d58d66774318"}, - {file = "cbor2-5.6.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f898bab20c4f42dca3688c673ff97c2f719b1811090430173c94452603fbcf13"}, - {file = "cbor2-5.6.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5e5d50fb9f47d295c1b7f55592111350424283aff4cc88766c656aad0300f11f"}, - {file = "cbor2-5.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:7f9d867dcd814ab8383ad132eb4063e2b69f6a9f688797b7a8ca34a4eadb3944"}, - {file = "cbor2-5.6.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e0860ca88edf8aaec5461ce0e498eb5318f1bcc70d93f90091b7a1f1d351a167"}, - {file = "cbor2-5.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c38a0ed495a63a8bef6400158746a9cb03c36f89aeed699be7ffebf82720bf86"}, - {file = "cbor2-5.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c8d8c2f208c223a61bed48dfd0661694b891e423094ed30bac2ed75032142aa"}, - {file = "cbor2-5.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24cd2ce6136e1985da989e5ba572521023a320dcefad5d1fff57fba261de80ca"}, - {file = "cbor2-5.6.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7facce04aed2bf69ef43bdffb725446fe243594c2451921e89cc305bede16f02"}, - {file = "cbor2-5.6.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f9c8ee0d89411e5e039a4f3419befe8b43c0dd8746eedc979e73f4c06fe0ef97"}, - {file = "cbor2-5.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:9b45d554daa540e2f29f1747df9f08f8d98ade65a67b1911791bc193d33a5923"}, - {file = "cbor2-5.6.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a5cb2c16687ccd76b38cfbfdb34468ab7d5635fb92c9dc5e07831c1816bd0a9"}, - {file = "cbor2-5.6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6f985f531f7495527153c4f66c8c143e4cf8a658ec9e87b14bc5438e0a8d0911"}, - {file = "cbor2-5.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9d9c7b4bd7c3ea7e5587d4f1bbe073b81719530ddadb999b184074f064896e2"}, - {file = "cbor2-5.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64d06184dcdc275c389fee3cd0ea80b5e1769763df15f93ecd0bf4c281817365"}, - {file = "cbor2-5.6.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e9ba7116f201860fb4c3e80ef36be63851ec7e4a18af70fea22d09cab0b000bf"}, - {file = "cbor2-5.6.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:341468ae58bdedaa05c907ab16e90dd0d5c54d7d1e66698dfacdbc16a31e815b"}, - {file = "cbor2-5.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:bcb4994be1afcc81f9167c220645d878b608cae92e19f6706e770f9bc7bbff6c"}, - {file = "cbor2-5.6.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:41c43abffe217dce70ae51c7086530687670a0995dfc90cc35f32f2cf4d86392"}, - {file = "cbor2-5.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:227a7e68ba378fe53741ed892b5b03fe472b5bd23ef26230a71964accebf50a2"}, - {file = "cbor2-5.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13521b7c9a0551fcc812d36afd03fc554fa4e1b193659bb5d4d521889aa81154"}, - {file = "cbor2-5.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4816d290535d20c7b7e2663b76da5b0deb4237b90275c202c26343d8852b8a"}, - {file = "cbor2-5.6.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1e98d370106821335efcc8fbe4136ea26b4747bf29ca0e66512b6c4f6f5cc59f"}, - {file = "cbor2-5.6.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:68743a18e16167ff37654a29321f64f0441801dba68359c82dc48173cc6c87e1"}, - {file = "cbor2-5.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:7ba5e9c6ed17526d266a1116c045c0941f710860c5f2495758df2e0d848c1b6d"}, - {file = "cbor2-5.6.4-py3-none-any.whl", hash = "sha256:fe411c4bf464f5976605103ebcd0f60b893ac3e4c7c8d8bc8f4a0cb456e33c60"}, - {file = "cbor2-5.6.4.tar.gz", hash = "sha256:1c533c50dde86bef1c6950602054a0ffa3c376e8b0e20c7b8f5b108793f6983e"}, + {file = "cbor2-5.6.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e16c4a87fc999b4926f5c8f6c696b0d251b4745bc40f6c5aee51d69b30b15ca2"}, + {file = "cbor2-5.6.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:87026fc838370d69f23ed8572939bd71cea2b3f6c8f8bb8283f573374b4d7f33"}, + {file = "cbor2-5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a88f029522aec5425fc2f941b3df90da7688b6756bd3f0472ab886d21208acbd"}, + {file = "cbor2-5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9d15b638539b68aa5d5eacc56099b4543a38b2d2c896055dccf7e83d24b7955"}, + {file = "cbor2-5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:47261f54a024839ec649b950013c4de5b5f521afe592a2688eebbe22430df1dc"}, + {file = "cbor2-5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:559dcf0d897260a9e95e7b43556a62253e84550b77147a1ad4d2c389a2a30192"}, + {file = "cbor2-5.6.5-cp310-cp310-win_amd64.whl", hash = "sha256:5b856fda4c50c5bc73ed3664e64211fa4f015970ed7a15a4d6361bd48462feaf"}, + {file = "cbor2-5.6.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:863e0983989d56d5071270790e7ed8ddbda88c9e5288efdb759aba2efee670bc"}, + {file = "cbor2-5.6.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5cff06464b8f4ca6eb9abcba67bda8f8334a058abc01005c8e616728c387ad32"}, + {file = "cbor2-5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4c7dbcdc59ea7f5a745d3e30ee5e6b6ff5ce7ac244aa3de6786391b10027bb3"}, + {file = "cbor2-5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34cf5ab0dc310c3d0196caa6ae062dc09f6c242e2544bea01691fe60c0230596"}, + {file = "cbor2-5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6797b824b26a30794f2b169c0575301ca9b74ae99064e71d16e6ba0c9057de51"}, + {file = "cbor2-5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:73b9647eed1493097db6aad61e03d8f1252080ee041a1755de18000dd2c05f37"}, + {file = "cbor2-5.6.5-cp311-cp311-win_amd64.whl", hash = "sha256:6e14a1bf6269d25e02ef1d4008e0ce8880aa271d7c6b4c329dba48645764f60e"}, + {file = "cbor2-5.6.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e25c2aebc9db99af7190e2261168cdde8ed3d639ca06868e4f477cf3a228a8e9"}, + {file = "cbor2-5.6.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fde21ac1cf29336a31615a2c469a9cb03cf0add3ae480672d4d38cda467d07fc"}, + {file = "cbor2-5.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8947c102cac79d049eadbd5e2ffb8189952890df7cbc3ee262bbc2f95b011a9"}, + {file = "cbor2-5.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38886c41bebcd7dca57739439455bce759f1e4c551b511f618b8e9c1295b431b"}, + {file = "cbor2-5.6.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ae2b49226224e92851c333b91d83292ec62eba53a19c68a79890ce35f1230d70"}, + {file = "cbor2-5.6.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f2764804ffb6553283fc4afb10a280715905a4cea4d6dc7c90d3e89c4a93bc8d"}, + {file = "cbor2-5.6.5-cp312-cp312-win_amd64.whl", hash = "sha256:a3ac50485cf67dfaab170a3e7b527630e93cb0a6af8cdaa403054215dff93adf"}, + {file = "cbor2-5.6.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f0d0a9c5aabd48ecb17acf56004a7542a0b8d8212be52f3102b8218284bd881e"}, + {file = "cbor2-5.6.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:61ceb77e6aa25c11c814d4fe8ec9e3bac0094a1f5bd8a2a8c95694596ea01e08"}, + {file = "cbor2-5.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97a7e409b864fecf68b2ace8978eb5df1738799a333ec3ea2b9597bfcdd6d7d2"}, + {file = "cbor2-5.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6d69f38f7d788b04c09ef2b06747536624b452b3c8b371ab78ad43b0296fab"}, + {file = "cbor2-5.6.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f91e6d74fa6917df31f8757fdd0e154203b0dd0609ec53eb957016a2b474896a"}, + {file = "cbor2-5.6.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5ce13a27ef8fddf643fc17a753fe34aa72b251d03c23da6a560c005dc171085b"}, + {file = "cbor2-5.6.5-cp313-cp313-win_amd64.whl", hash = "sha256:54c72a3207bb2d4480c2c39dad12d7971ce0853a99e3f9b8d559ce6eac84f66f"}, + {file = "cbor2-5.6.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4586a4f65546243096e56a3f18f29d60752ee9204722377021b3119a03ed99ff"}, + {file = "cbor2-5.6.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3d1a18b3a58dcd9b40ab55c726160d4a6b74868f2a35b71f9e726268b46dc6a2"}, + {file = "cbor2-5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a83b76367d1c3e69facbcb8cdf65ed6948678e72f433137b41d27458aa2a40cb"}, + {file = "cbor2-5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90bfa36944caccec963e6ab7e01e64e31cc6664535dc06e6295ee3937c999cbb"}, + {file = "cbor2-5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:37096663a5a1c46a776aea44906cbe5fa3952f29f50f349179c00525d321c862"}, + {file = "cbor2-5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:93676af02bd9a0b4a62c17c5b20f8e9c37b5019b1a24db70a2ee6cb770423568"}, + {file = "cbor2-5.6.5-cp38-cp38-win_amd64.whl", hash = "sha256:8f747b7a9aaa58881a0c5b4cd4a9b8fb27eca984ed261a769b61de1f6b5bd1e6"}, + {file = "cbor2-5.6.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:94885903105eec66d7efb55f4ce9884fdc5a4d51f3bd75b6fedc68c5c251511b"}, + {file = "cbor2-5.6.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fe11c2eb518c882cfbeed456e7a552e544893c17db66fe5d3230dbeaca6b615c"}, + {file = "cbor2-5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66dd25dd919cddb0b36f97f9ccfa51947882f064729e65e6bef17c28535dc459"}, + {file = "cbor2-5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa61a02995f3a996c03884cf1a0b5733f88cbfd7fa0e34944bf678d4227ee712"}, + {file = "cbor2-5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:824f202b556fc204e2e9a67d6d6d624e150fbd791278ccfee24e68caec578afd"}, + {file = "cbor2-5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7488aec919f8408f9987a3a32760bd385d8628b23a35477917aa3923ff6ad45f"}, + {file = "cbor2-5.6.5-cp39-cp39-win_amd64.whl", hash = "sha256:a34ee99e86b17444ecbe96d54d909dd1a20e2da9f814ae91b8b71cf1ee2a95e4"}, + {file = "cbor2-5.6.5-py3-none-any.whl", hash = "sha256:3038523b8fc7de312bb9cdcbbbd599987e64307c4db357cd2030c472a6c7d468"}, + {file = "cbor2-5.6.5.tar.gz", hash = "sha256:b682820677ee1dbba45f7da11898d2720f92e06be36acec290867d5ebf3d7e09"}, ] [package.extras] @@ -89,13 +93,13 @@ test = ["coverage (>=7)", "hypothesis", "pytest"] [[package]] name = "certifi" -version = "2024.8.30" +version = "2024.12.14" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, + {file = "certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56"}, + {file = "certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db"}, ] [[package]] @@ -179,112 +183,114 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.1" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.7" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"}, + {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"}, + {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"}, + {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"}, + {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"}, + {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"}, + {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"}, + {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"}, + {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"}, + {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"}, ] [[package]] name = "click" -version = "8.1.7" +version = "8.1.8" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, - {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, + {file = "click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2"}, + {file = "click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"}, ] [package.dependencies] @@ -292,13 +298,13 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "cloudpickle" -version = "3.0.0" +version = "3.1.1" description = "Pickler class to extend the standard pickle.Pickler functionality" optional = false python-versions = ">=3.8" files = [ - {file = "cloudpickle-3.0.0-py3-none-any.whl", hash = "sha256:246ee7d0c295602a036e86369c77fecda4ab17b506496730f2f576d9016fd9c7"}, - {file = "cloudpickle-3.0.0.tar.gz", hash = "sha256:996d9a482c6fb4f33c1a35335cf8afd065d2a56e973270364840712d9131a882"}, + {file = "cloudpickle-3.1.1-py3-none-any.whl", hash = "sha256:c8c5a44295039331ee9dad40ba100a9c7297b6f988e50e87ccdf3765a668350e"}, + {file = "cloudpickle-3.1.1.tar.gz", hash = "sha256:b216fa8ae4019d5482a8ac3c95d8f6346115d8835911fd4aefd1a445e4242c64"}, ] [[package]] @@ -349,65 +355,50 @@ dev = ["flake8", "markdown", "twine", "wheel"] [[package]] name = "idna" -version = "3.8" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.6" files = [ - {file = "idna-3.8-py3-none-any.whl", hash = "sha256:050b4e5baadcd44d760cedbd2b8e639f2ff89bbc7a5730fcc662954303377aac"}, - {file = "idna-3.8.tar.gz", hash = "sha256:d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] -[[package]] -name = "importlib-metadata" -version = "8.4.0" -description = "Read metadata from Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "importlib_metadata-8.4.0-py3-none-any.whl", hash = "sha256:66f342cc6ac9818fc6ff340576acd24d65ba0b3efabb2b4ac08b598965a4a2f1"}, - {file = "importlib_metadata-8.4.0.tar.gz", hash = "sha256:9a547d3bc3608b025f93d403fdd1aae741c24fbb8314df4b155675742ce303c5"}, -] - -[package.dependencies] -zipp = ">=0.5" - [package.extras] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -perf = ["ipython"] -test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] [[package]] -name = "importlib-resources" -version = "6.4.4" -description = "Read resources from Python packages" +name = "importlib-metadata" +version = "8.5.0" +description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.4-py3-none-any.whl", hash = "sha256:dda242603d1c9cd836c3368b1174ed74cb4049ecd209e7a1a0104620c18c5c11"}, - {file = "importlib_resources-6.4.4.tar.gz", hash = "sha256:20600c8b7361938dc0bb2d5ec0297802e575df486f5a544fa414da65e13721f7"}, + {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, + {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, ] [package.dependencies] -zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} +zipp = ">=3.20" [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] -test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +perf = ["ipython"] +test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] type = ["pytest-mypy"] [[package]] name = "jinja2" -version = "3.1.4" +version = "3.1.5" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, - {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, + {file = "jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb"}, + {file = "jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb"}, ] [package.dependencies] @@ -429,9 +420,7 @@ files = [ [package.dependencies] attrs = ">=22.2.0" -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} jsonschema-specifications = ">=2023.03.6" -pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} referencing = ">=0.28.4" rpds-py = ">=0.7.1" @@ -441,17 +430,16 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- [[package]] name = "jsonschema-specifications" -version = "2023.12.1" +version = "2024.10.1" description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, - {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, + {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, + {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, ] [package.dependencies] -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} referencing = ">=0.31.0" [[package]] @@ -459,25 +447,25 @@ name = "lattice" version = "0.0.0" description = "A framework for developing data models, including schema development and documentation." optional = false -python-versions = "^3.8" +python-versions = "^3.10" files = [] develop = false [package.dependencies] cbor2 = "*" -Jinja2 = "^3.1.4" +Jinja2 = ">=3.1.4" jsonschema = "*" markdown-grid-tables = "*" mkdocs-material = "*" -pygit2 = "^1.13.0" +pygit2 = ">=1.15.1" pyyaml = "*" -stringcase = "1.2.0" +stringcase = ">=1.2.0" [package.source] type = "git" url = "https://github.com/bigladder/lattice.git" -reference = "add-basic-build-support" -resolved_reference = "9a3399d39945e5cfba65ea27a42dae79dadc2e49" +reference = "cpp-cleanup" +resolved_reference = "556944e76d632b9e69c1194b5875312c501745d7" [[package]] name = "markdown" @@ -490,21 +478,18 @@ files = [ {file = "markdown-3.7.tar.gz", hash = "sha256:2ae2471477cfd02dbbf038d5d9bc226d40def84b4fe2986e49b59b6b472bbed2"}, ] -[package.dependencies] -importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} - [package.extras] docs = ["mdx-gh-links (>=0.2)", "mkdocs (>=1.5)", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-nature (>=0.6)", "mkdocs-section-index", "mkdocstrings[python]"] testing = ["coverage", "pyyaml"] [[package]] name = "markdown-grid-tables" -version = "0.3.2" +version = "0.4.0" description = "Python-Markdown extension to support grid tables." optional = false python-versions = ">=3.7" files = [ - {file = "markdown_grid_tables-0.3.2-py3-none-any.whl", hash = "sha256:9a5ac60f018883ca917a81b7ad04ae55cc4c6c46155a80c235deab46d2513dbb"}, + {file = "markdown_grid_tables-0.4.0-py3-none-any.whl", hash = "sha256:6f3422b854e8dbfe25a4e35e337df32f1bd901c420d4d6f132886334709939f5"}, ] [package.dependencies] @@ -512,71 +497,72 @@ markdown = ">=3.0.0" [[package]] name = "markupsafe" -version = "2.1.5" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, - {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, - {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, - {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, - {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, - {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, - {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, - {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] @@ -605,7 +591,6 @@ files = [ click = ">=7.0" colorama = {version = ">=0.4", markers = "platform_system == \"Windows\""} ghp-import = ">=1.0" -importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} jinja2 = ">=2.11.1" markdown = ">=3.3.6" markupsafe = ">=2.0.1" @@ -633,20 +618,19 @@ files = [ ] [package.dependencies] -importlib-metadata = {version = ">=4.3", markers = "python_version < \"3.10\""} mergedeep = ">=1.3.4" platformdirs = ">=2.2.0" pyyaml = ">=5.1" [[package]] name = "mkdocs-material" -version = "9.5.34" +version = "9.5.50" description = "Documentation that simply works" optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_material-9.5.34-py3-none-any.whl", hash = "sha256:54caa8be708de2b75167fd4d3b9f3d949579294f49cb242515d4653dbee9227e"}, - {file = "mkdocs_material-9.5.34.tar.gz", hash = "sha256:1e60ddf716cfb5679dfd65900b8a25d277064ed82d9a53cd5190e3f894df7840"}, + {file = "mkdocs_material-9.5.50-py3-none-any.whl", hash = "sha256:f24100f234741f4d423a9d672a909d859668a4f404796be3cf035f10d6050385"}, + {file = "mkdocs_material-9.5.50.tar.gz", hash = "sha256:ae5fe16f3d7c9ccd05bb6916a7da7420cf99a9ce5e33debd9d40403a090d5825"}, ] [package.dependencies] @@ -663,7 +647,7 @@ regex = ">=2022.4" requests = ">=2.26,<3.0" [package.extras] -git = ["mkdocs-git-committers-plugin-2 (>=1.1,<2.0)", "mkdocs-git-revision-date-localized-plugin (>=1.2.4,<2.0)"] +git = ["mkdocs-git-committers-plugin-2 (>=1.1,<3)", "mkdocs-git-revision-date-localized-plugin (>=1.2.4,<2.0)"] imaging = ["cairosvg (>=2.6,<3.0)", "pillow (>=10.2,<11.0)"] recommended = ["mkdocs-minify-plugin (>=0.7,<1.0)", "mkdocs-redirects (>=1.2,<2.0)", "mkdocs-rss-plugin (>=1.6,<2.0)"] @@ -680,13 +664,13 @@ files = [ [[package]] name = "packaging" -version = "24.1" +version = "24.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, + {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, + {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, ] [[package]] @@ -715,26 +699,15 @@ files = [ {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, ] -[[package]] -name = "pkgutil-resolve-name" -version = "1.3.10" -description = "Resolve a name to an object." -optional = false -python-versions = ">=3.6" -files = [ - {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, - {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, -] - [[package]] name = "platformdirs" -version = "4.3.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.3.2-py3-none-any.whl", hash = "sha256:eb1c8582560b34ed4ba105009a4badf7f6f85768b30126f351328507b2beb617"}, - {file = "platformdirs-4.3.2.tar.gz", hash = "sha256:9e5e27a08aa095dd127b9f2e764d74254f482fef22b0970773bfba79d091ab8c"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] @@ -755,52 +728,56 @@ files = [ [[package]] name = "pygit2" -version = "1.13.3" +version = "1.17.0" description = "Python bindings for libgit2." optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" files = [ - {file = "pygit2-1.13.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a3053850e29c1e102b1ab759d90b0dcc6402d7a434cbe810cfd2792294cf0ba6"}, - {file = "pygit2-1.13.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d2461db082c27231e2565e24e7ec3d6a60c7ceea5cda7364cb6eb81a6aedebd"}, - {file = "pygit2-1.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2216dc34edbe44e37c5cabc5f1530266445b87c66038fc8b3e0e7be64b3d4edb"}, - {file = "pygit2-1.13.3-cp310-cp310-win32.whl", hash = "sha256:5bc8c173ead087a4200e8763fad92105b4c9d40d03e007b9d9bbe47793716d31"}, - {file = "pygit2-1.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:c305adf3a86e02db8bcd89bb92e33e896a2ff36f58a5ad7ff15675491ab6a751"}, - {file = "pygit2-1.13.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8de720ca137624d8f98c8b8d57cdb1e461034adf3e158762ee5c3085620c8075"}, - {file = "pygit2-1.13.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a85521b8e218afd4111d5bd4e106d77ffaac7ecd9a1ed8c1eea9f8d9568d287"}, - {file = "pygit2-1.13.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7c5cb78cc0a88f5cb2910e85996f33fcac99994251117f00f2e344f84d2616a"}, - {file = "pygit2-1.13.3-cp311-cp311-win32.whl", hash = "sha256:81686e3e06132f23eab32c6718c21930e8adda795c2ca76617f7562bff7b6b66"}, - {file = "pygit2-1.13.3-cp311-cp311-win_amd64.whl", hash = "sha256:93cc7ffb403688c2ec3e169096f34b2b99bc709adc54487e9d11165cfd070948"}, - {file = "pygit2-1.13.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:07b17f766c88ce1d05d264b5819e75ad261f3b60e33e4105a71f02467d0f6d39"}, - {file = "pygit2-1.13.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81bfe9ca394cdc896b632f18cd5f9c656a5f6c03c61deb1570b9081f2406776b"}, - {file = "pygit2-1.13.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c83e6e5ac357a9e87698c1eb25f430846f208bce12362d2209e7c9ac214e00c"}, - {file = "pygit2-1.13.3-cp312-cp312-win32.whl", hash = "sha256:de481a2cee7ef98143109bd9d2b30690022aeb8ba849feeba082a3b48a53c214"}, - {file = "pygit2-1.13.3-cp312-cp312-win_amd64.whl", hash = "sha256:0353b55f8bed1742dab15083ee9ee508ed91feb5c2563e2a612af277317030c6"}, - {file = "pygit2-1.13.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:60152bb30bc2ab880d3c82f113be33aac7ced571d1148c51720ccefff9dfc9ce"}, - {file = "pygit2-1.13.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bcf827ebe392e2181a50ebaf724947e30a1da076a74d8a6f9cec784158faced1"}, - {file = "pygit2-1.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73cb821acc5cc8ad62a96154d030ff47127073b56f71157e7c65b2e7ebb4d52f"}, - {file = "pygit2-1.13.3-cp38-cp38-win32.whl", hash = "sha256:112c4efd421c3c8b4bb4406d3cd4a3a6a18a925c1f8b08d8a6dd0b591c6c6049"}, - {file = "pygit2-1.13.3-cp38-cp38-win_amd64.whl", hash = "sha256:21f73fd2863b6b21b4fbfed11a42af0ac1036472bb3716944b42a9719beaf07e"}, - {file = "pygit2-1.13.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e94f2598bdf68340609bb21fd4d21213812913b40b73e5fcba67f4fb01f4fba4"}, - {file = "pygit2-1.13.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5846aadb7b72802b3e4cb981f956965e92bc1692e7514ff4491bd7e24b20b358"}, - {file = "pygit2-1.13.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2823d097b103740d52e600ef2079e23966583edbde08ac122279f1ab3b2c3979"}, - {file = "pygit2-1.13.3-cp39-cp39-win32.whl", hash = "sha256:72fda35f88a3f5549eb9683c47ac73a6b674df943fc2490d93d539b46f518cbd"}, - {file = "pygit2-1.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:2087fd130181e4ba6b8599fcd406920781555a52a3f142bd1dec4de21b9c5792"}, - {file = "pygit2-1.13.3.tar.gz", hash = "sha256:0257c626011e4afb99bdb20875443f706f84201d4c92637f02215b98eac13ded"}, + {file = "pygit2-1.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbe1a3354a3eff0f4e842abcff73b24455ba7205ac959f146d7cb8dcd63cfa45"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:578d78fc97d5c16b1ad44c1e2fda093628c3f29793b42be68b93a46ce7a662a0"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e59de6138787aa3a5365557fb1ad427d3e877868917e0910257fb11f71f3c736"}, + {file = "pygit2-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66431dba77977b9010fac580eaefcc7567ea0955b030d8e8472fdce0f1a7c5f0"}, + {file = "pygit2-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:877ce82239de45301fa9953d50b41c46a5300cf7b3993db86bde64e08521a506"}, + {file = "pygit2-1.17.0-cp310-cp310-win32.whl", hash = "sha256:8b7921016cbec166083206daca20d00f2358b18178122e1b0d1932b410296de1"}, + {file = "pygit2-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:5724683b3d239cc1457b9800d9d7988a00cd0cb1797d5caa6f46d16f3f74f1ca"}, + {file = "pygit2-1.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:39e7087e2affdba2530d1fe1ec04c27fa85db405be84e1cd4759891045324a31"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0ef5c3634317295268ef84b99e8acae37cb2f8b17d966b318c79e5211bf78d3"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ad964b2eea81e0c99d05c6ec0ec8b5715d3d0c99b3b6e09abcdb57c57701592"}, + {file = "pygit2-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cce8db6aa40361270b14e1adb3a8e7d4606b9b53088e27321472c9a92f922648"}, + {file = "pygit2-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:136b1ea44107fb6a3a58e7b1322227e83101bff50a929816d8653a38e0ed0e07"}, + {file = "pygit2-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5ffce0772167e5c436be57ee3ef0fb421c864657911aeb1a97618e1dd9f8b574"}, + {file = "pygit2-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:0809029cf804f343abdc9eaeaf9d915f9dbf320d79078c20138a3bf642583365"}, + {file = "pygit2-1.17.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f7224d89a7dda7290e458393941e500c8682f375f41e6d80ee423958a5d4013d"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ae1967b0c8a2438b3b0e4a63307b5c22c80024a2f09b28d14dfde0001fed8dc"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:507343fa142a82028c8448c2626317dc19885985aba8ea27d381777ac484eefb"}, + {file = "pygit2-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc04917a680591c6e801df912d7fb722c253b5ac68178ff37b5666dafd06999"}, + {file = "pygit2-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7bb1b623cbd16962c3a1ec7f8e1012fa224c9e9642758c65e8e656ecc7ff1574"}, + {file = "pygit2-1.17.0-cp312-cp312-win32.whl", hash = "sha256:3029331ddf56a6908547278ab4c354b2d6932eb6a53be81e0093adc98a0ae540"}, + {file = "pygit2-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:1011236bab7317b82e6cbc3dff4be8467923b1dcf2ffe28bf2e64805dcb37749"}, + {file = "pygit2-1.17.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ce938e7a4fdfc816ffceb62babad65fb62e1a5ad261e880b9a072e8da144ccca"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61ff2c8b0fc96fdf45a7a5239cc262b0293a5171f68d67eea239a42c3b2226cb"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8101aa723c292892ba46303b19487a9fb0de50d9e30f4c1c2a76e3383b6e4b6d"}, + {file = "pygit2-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36e3e9225e3f01bb6a2d4589c126900bbc571cd0876ca9c01372a6e3d3693c0e"}, + {file = "pygit2-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:614cfddbf048900da19b016787f153d44ea9fd7ef80f9e03a77024aa1555d5f4"}, + {file = "pygit2-1.17.0-cp313-cp313-win32.whl", hash = "sha256:1391762153af9715ed1d0586e3f207c518f03f5874e1f5b8e398697d006a0a82"}, + {file = "pygit2-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:d677d6fb85c426c5f5f8409bdc5a2e391016c99f73b97779b284c4ad25aa75fa"}, + {file = "pygit2-1.17.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c491db4f71fd5d814023f2ad89ad7023c15738bcbe0807acc2313026600bf1b1"}, + {file = "pygit2-1.17.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89ff254387d23d107dd2b542907d248a3a988e3be8cda99bcc8af04f56e6e5cf"}, + {file = "pygit2-1.17.0.tar.gz", hash = "sha256:fa2bc050b2c2d3e73b54d6d541c792178561a344f07e409f532d5bb97ac7b894"}, ] [package.dependencies] -cffi = ">=1.16.0" -setuptools = {version = "*", markers = "python_version >= \"3.12\""} +cffi = ">=1.17.0" [[package]] name = "pygments" -version = "2.18.0" +version = "2.19.1" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.8" files = [ - {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, - {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, + {file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"}, + {file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"}, ] [package.extras] @@ -808,13 +785,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pymdown-extensions" -version = "10.9" +version = "10.14" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.9-py3-none-any.whl", hash = "sha256:d323f7e90d83c86113ee78f3fe62fc9dee5f56b54d912660703ea1816fed5626"}, - {file = "pymdown_extensions-10.9.tar.gz", hash = "sha256:6ff740bcd99ec4172a938970d42b96128bdc9d4b9bcad72494f29921dc69b753"}, + {file = "pymdown_extensions-10.14-py3-none-any.whl", hash = "sha256:202481f716cc8250e4be8fce997781ebf7917701b59652458ee47f2401f818b5"}, + {file = "pymdown_extensions-10.14.tar.gz", hash = "sha256:741bd7c4ff961ba40b7528d32284c53bc436b8b1645e8e37c3e57770b8700a34"}, ] [package.dependencies] @@ -822,7 +799,7 @@ markdown = ">=3.6" pyyaml = "*" [package.extras] -extra = ["pygments (>=2.12)"] +extra = ["pygments (>=2.19.1)"] [[package]] name = "python-dateutil" @@ -838,17 +815,6 @@ files = [ [package.dependencies] six = ">=1.5" -[[package]] -name = "pytz" -version = "2024.1" -description = "World timezone definitions, modern and historical" -optional = false -python-versions = "*" -files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, -] - [[package]] name = "pyyaml" version = "6.0.2" @@ -927,105 +893,121 @@ pyyaml = "*" [[package]] name = "referencing" -version = "0.35.1" +version = "0.36.1" description = "JSON Referencing + Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, - {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, + {file = "referencing-0.36.1-py3-none-any.whl", hash = "sha256:363d9c65f080d0d70bc41c721dce3c7f3e77fc09f269cd5c8813da18069a6794"}, + {file = "referencing-0.36.1.tar.gz", hash = "sha256:ca2e6492769e3602957e9b831b94211599d2aade9477f5d44110d2530cf9aade"}, ] [package.dependencies] attrs = ">=22.2.0" rpds-py = ">=0.7.0" +typing-extensions = {version = ">=4.4.0", markers = "python_version < \"3.13\""} [[package]] name = "regex" -version = "2024.7.24" +version = "2024.11.6" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce"}, - {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024"}, - {file = "regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa"}, - {file = "regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66"}, - {file = "regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e"}, - {file = "regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c"}, - {file = "regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38"}, - {file = "regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc"}, - {file = "regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:66b4c0731a5c81921e938dcf1a88e978264e26e6ac4ec96a4d21ae0354581ae0"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:88ecc3afd7e776967fa16c80f974cb79399ee8dc6c96423321d6f7d4b881c92b"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64bd50cf16bcc54b274e20235bf8edbb64184a30e1e53873ff8d444e7ac656b2"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb462f0e346fcf41a901a126b50f8781e9a474d3927930f3490f38a6e73b6950"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a82465ebbc9b1c5c50738536fdfa7cab639a261a99b469c9d4c7dcbb2b3f1e57"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:68a8f8c046c6466ac61a36b65bb2395c74451df2ffb8458492ef49900efed293"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac8e84fff5d27420f3c1e879ce9929108e873667ec87e0c8eeb413a5311adfe"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba2537ef2163db9e6ccdbeb6f6424282ae4dea43177402152c67ef869cf3978b"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:43affe33137fcd679bdae93fb25924979517e011f9dea99163f80b82eadc7e53"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c9bb87fdf2ab2370f21e4d5636e5317775e5d51ff32ebff2cf389f71b9b13750"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:945352286a541406f99b2655c973852da7911b3f4264e010218bbc1cc73168f2"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8bc593dcce679206b60a538c302d03c29b18e3d862609317cb560e18b66d10cf"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:3f3b6ca8eae6d6c75a6cff525c8530c60e909a71a15e1b731723233331de4169"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c51edc3541e11fbe83f0c4d9412ef6c79f664a3745fab261457e84465ec9d5a8"}, - {file = "regex-2024.7.24-cp38-cp38-win32.whl", hash = "sha256:d0a07763776188b4db4c9c7fb1b8c494049f84659bb387b71c73bbc07f189e96"}, - {file = "regex-2024.7.24-cp38-cp38-win_amd64.whl", hash = "sha256:8fd5afd101dcf86a270d254364e0e8dddedebe6bd1ab9d5f732f274fa00499a5"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9"}, - {file = "regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1"}, - {file = "regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9"}, - {file = "regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff590880083d60acc0433f9c3f713c51f7ac6ebb9adf889c79a261ecf541aa91"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:658f90550f38270639e83ce492f27d2c8d2cd63805c65a13a14d36ca126753f0"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:164d8b7b3b4bcb2068b97428060b2a53be050085ef94eca7f240e7947f1b080e"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3660c82f209655a06b587d55e723f0b813d3a7db2e32e5e7dc64ac2a9e86fde"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d22326fcdef5e08c154280b71163ced384b428343ae16a5ab2b3354aed12436e"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac758ef6aebfc8943560194e9fd0fa18bcb34d89fd8bd2af18183afd8da3a2"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:997d6a487ff00807ba810e0f8332c18b4eb8d29463cfb7c820dc4b6e7562d0cf"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:02a02d2bb04fec86ad61f3ea7f49c015a0681bf76abb9857f945d26159d2968c"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f02f93b92358ee3f78660e43b4b0091229260c5d5c408d17d60bf26b6c900e86"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:06eb1be98df10e81ebaded73fcd51989dcf534e3c753466e4b60c4697a003b67"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:040df6fe1a5504eb0f04f048e6d09cd7c7110fef851d7c567a6b6e09942feb7d"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabbfc59f2c6edba2a6622c647b716e34e8e3867e0ab975412c5c2f79b82da2"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8447d2d39b5abe381419319f942de20b7ecd60ce86f16a23b0698f22e1b70008"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da8f5fc57d1933de22a9e23eec290a0d8a5927a5370d24bda9a6abe50683fe62"}, + {file = "regex-2024.11.6-cp310-cp310-win32.whl", hash = "sha256:b489578720afb782f6ccf2840920f3a32e31ba28a4b162e13900c3e6bd3f930e"}, + {file = "regex-2024.11.6-cp310-cp310-win_amd64.whl", hash = "sha256:5071b2093e793357c9d8b2929dfc13ac5f0a6c650559503bb81189d0a3814519"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5478c6962ad548b54a591778e93cd7c456a7a29f8eca9c49e4f9a806dcc5d638"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2c89a8cc122b25ce6945f0423dc1352cb9593c68abd19223eebbd4e56612c5b7"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:94d87b689cdd831934fa3ce16cc15cd65748e6d689f5d2b8f4f4df2065c9fa20"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1062b39a0a2b75a9c694f7a08e7183a80c63c0d62b301418ffd9c35f55aaa114"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:167ed4852351d8a750da48712c3930b031f6efdaa0f22fa1933716bfcd6bf4a3"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d548dafee61f06ebdb584080621f3e0c23fff312f0de1afc776e2a2ba99a74f"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a19f302cd1ce5dd01a9099aaa19cae6173306d1302a43b627f62e21cf18ac0"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bec9931dfb61ddd8ef2ebc05646293812cb6b16b60cf7c9511a832b6f1854b55"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9714398225f299aa85267fd222f7142fcb5c769e73d7733344efc46f2ef5cf89"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:202eb32e89f60fc147a41e55cb086db2a3f8cb82f9a9a88440dcfc5d37faae8d"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4181b814e56078e9b00427ca358ec44333765f5ca1b45597ec7446d3a1ef6e34"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:068376da5a7e4da51968ce4c122a7cd31afaaec4fccc7856c92f63876e57b51d"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f2c4184420d881a3475fb2c6f4d95d53a8d50209a2500723d831036f7c45"}, + {file = "regex-2024.11.6-cp311-cp311-win32.whl", hash = "sha256:c36f9b6f5f8649bb251a5f3f66564438977b7ef8386a52460ae77e6070d309d9"}, + {file = "regex-2024.11.6-cp311-cp311-win_amd64.whl", hash = "sha256:02e28184be537f0e75c1f9b2f8847dc51e08e6e171c6bde130b2687e0c33cf60"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:52fb28f528778f184f870b7cf8f225f5eef0a8f6e3778529bdd40c7b3920796a"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdd6028445d2460f33136c55eeb1f601ab06d74cb3347132e1c24250187500d9"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805e6b60c54bf766b251e94526ebad60b7de0c70f70a4e6210ee2891acb70bf2"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b85c2530be953a890eaffde05485238f07029600e8f098cdf1848d414a8b45e4"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb26437975da7dc36b7efad18aa9dd4ea569d2357ae6b783bf1118dabd9ea577"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abfa5080c374a76a251ba60683242bc17eeb2c9818d0d30117b4486be10c59d3"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b7fa6606c2881c1db9479b0eaa11ed5dfa11c8d60a474ff0e095099f39d98e"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c32f75920cf99fe6b6c539c399a4a128452eaf1af27f39bce8909c9a3fd8cbe"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:982e6d21414e78e1f51cf595d7f321dcd14de1f2881c5dc6a6e23bbbbd68435e"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a7c2155f790e2fb448faed6dd241386719802296ec588a8b9051c1f5c481bc29"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:149f5008d286636e48cd0b1dd65018548944e495b0265b45e1bffecce1ef7f39"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e5364a4502efca094731680e80009632ad6624084aff9a23ce8c8c6820de3e51"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0a86e7eeca091c09e021db8eb72d54751e527fa47b8d5787caf96d9831bd02ad"}, + {file = "regex-2024.11.6-cp312-cp312-win32.whl", hash = "sha256:32f9a4c643baad4efa81d549c2aadefaeba12249b2adc5af541759237eee1c54"}, + {file = "regex-2024.11.6-cp312-cp312-win_amd64.whl", hash = "sha256:a93c194e2df18f7d264092dc8539b8ffb86b45b899ab976aa15d48214138e81b"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a6ba92c0bcdf96cbf43a12c717eae4bc98325ca3730f6b130ffa2e3c3c723d84"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:525eab0b789891ac3be914d36893bdf972d483fe66551f79d3e27146191a37d4"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:086a27a0b4ca227941700e0b31425e7a28ef1ae8e5e05a33826e17e47fbfdba0"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bde01f35767c4a7899b7eb6e823b125a64de314a8ee9791367c9a34d56af18d0"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b583904576650166b3d920d2bcce13971f6f9e9a396c673187f49811b2769dc7"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c4de13f06a0d54fa0d5ab1b7138bfa0d883220965a29616e3ea61b35d5f5fc7"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cde6e9f2580eb1665965ce9bf17ff4952f34f5b126beb509fee8f4e994f143c"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0d7f453dca13f40a02b79636a339c5b62b670141e63efd511d3f8f73fba162b3"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:59dfe1ed21aea057a65c6b586afd2a945de04fc7db3de0a6e3ed5397ad491b07"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b97c1e0bd37c5cd7902e65f410779d39eeda155800b65fc4d04cc432efa9bc6e"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f9d1e379028e0fc2ae3654bac3cbbef81bf3fd571272a42d56c24007979bafb6"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:13291b39131e2d002a7940fb176e120bec5145f3aeb7621be6534e46251912c4"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f51f88c126370dcec4908576c5a627220da6c09d0bff31cfa89f2523843316d"}, + {file = "regex-2024.11.6-cp313-cp313-win32.whl", hash = "sha256:63b13cfd72e9601125027202cad74995ab26921d8cd935c25f09c630436348ff"}, + {file = "regex-2024.11.6-cp313-cp313-win_amd64.whl", hash = "sha256:2b3361af3198667e99927da8b84c1b010752fa4b1115ee30beaa332cabc3ef1a"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3a51ccc315653ba012774efca4f23d1d2a8a8f278a6072e29c7147eee7da446b"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ad182d02e40de7459b73155deb8996bbd8e96852267879396fb274e8700190e3"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba9b72e5643641b7d41fa1f6d5abda2c9a263ae835b917348fc3c928182ad467"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40291b1b89ca6ad8d3f2b82782cc33807f1406cf68c8d440861da6304d8ffbbd"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cdf58d0e516ee426a48f7b2c03a332a4114420716d55769ff7108c37a09951bf"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a36fdf2af13c2b14738f6e973aba563623cb77d753bbbd8d414d18bfaa3105dd"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1cee317bfc014c2419a76bcc87f071405e3966da434e03e13beb45f8aced1a6"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50153825ee016b91549962f970d6a4442fa106832e14c918acd1c8e479916c4f"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea1bfda2f7162605f6e8178223576856b3d791109f15ea99a9f95c16a7636fb5"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:df951c5f4a1b1910f1a99ff42c473ff60f8225baa1cdd3539fe2819d9543e9df"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:072623554418a9911446278f16ecb398fb3b540147a7828c06e2011fa531e773"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f654882311409afb1d780b940234208a252322c24a93b442ca714d119e68086c"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:89d75e7293d2b3e674db7d4d9b1bee7f8f3d1609428e293771d1a962617150cc"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f65557897fc977a44ab205ea871b690adaef6b9da6afda4790a2484b04293a5f"}, + {file = "regex-2024.11.6-cp38-cp38-win32.whl", hash = "sha256:6f44ec28b1f858c98d3036ad5d7d0bfc568bdd7a74f9c24e25f41ef1ebfd81a4"}, + {file = "regex-2024.11.6-cp38-cp38-win_amd64.whl", hash = "sha256:bb8f74f2f10dbf13a0be8de623ba4f9491faf58c24064f32b65679b021ed0001"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5704e174f8ccab2026bd2f1ab6c510345ae8eac818b613d7d73e785f1310f839"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:220902c3c5cc6af55d4fe19ead504de80eb91f786dc102fbd74894b1551f095e"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e7e351589da0850c125f1600a4c4ba3c722efefe16b297de54300f08d734fbf"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5056b185ca113c88e18223183aa1a50e66507769c9640a6ff75859619d73957b"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e34b51b650b23ed3354b5a07aab37034d9f923db2a40519139af34f485f77d0"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5670bce7b200273eee1840ef307bfa07cda90b38ae56e9a6ebcc9f50da9c469b"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08986dce1339bc932923e7d1232ce9881499a0e02925f7402fb7c982515419ef"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:93c0b12d3d3bc25af4ebbf38f9ee780a487e8bf6954c115b9f015822d3bb8e48"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:764e71f22ab3b305e7f4c21f1a97e1526a25ebdd22513e251cf376760213da13"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f056bf21105c2515c32372bbc057f43eb02aae2fda61052e2f7622c801f0b4e2"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:69ab78f848845569401469da20df3e081e6b5a11cb086de3eed1d48f5ed57c95"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:86fddba590aad9208e2fa8b43b4c098bb0ec74f15718bb6a704e3c63e2cef3e9"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:684d7a212682996d21ca12ef3c17353c021fe9de6049e19ac8481ec35574a70f"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a03e02f48cd1abbd9f3b7e3586d97c8f7a9721c436f51a5245b3b9483044480b"}, + {file = "regex-2024.11.6-cp39-cp39-win32.whl", hash = "sha256:41758407fc32d5c3c5de163888068cfee69cb4c2be844e7ac517a52770f9af57"}, + {file = "regex-2024.11.6-cp39-cp39-win_amd64.whl", hash = "sha256:b2837718570f95dd41675328e111345f9b7095d821bac435aac173ac80b19983"}, + {file = "regex-2024.11.6.tar.gz", hash = "sha256:7ab159b063c52a0333c884e4679f8d7a85112ee3078fe3d9004b2dd875585519"}, ] [[package]] @@ -1051,145 +1033,125 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "rpds-py" -version = "0.20.0" +version = "0.22.3" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, - {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, - {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, - {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, - {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, - {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, - {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, - {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, - {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, - {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, - {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, - {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, - {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, - {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, - {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, + {file = "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"}, + {file = "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf"}, + {file = "rpds_py-0.22.3-cp310-cp310-win32.whl", hash = "sha256:9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652"}, + {file = "rpds_py-0.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a"}, + {file = "rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64"}, + {file = "rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7"}, + {file = "rpds_py-0.22.3-cp312-cp312-win32.whl", hash = "sha256:593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627"}, + {file = "rpds_py-0.22.3-cp312-cp312-win_amd64.whl", hash = "sha256:d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f"}, + {file = "rpds_py-0.22.3-cp313-cp313-win32.whl", hash = "sha256:fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de"}, + {file = "rpds_py-0.22.3-cp313-cp313-win_amd64.whl", hash = "sha256:c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win32.whl", hash = "sha256:69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:378753b4a4de2a7b34063d6f95ae81bfa7b15f2c1a04a9518e8644e81807ebea"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3445e07bf2e8ecfeef6ef67ac83de670358abf2996916039b16a218e3d95e97e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b2513ba235829860b13faa931f3b6846548021846ac808455301c23a101689d"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eaf16ae9ae519a0e237a0f528fd9f0197b9bb70f40263ee57ae53c2b8d48aeb3"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:583f6a1993ca3369e0f80ba99d796d8e6b1a3a2a442dd4e1a79e652116413091"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4617e1915a539a0d9a9567795023de41a87106522ff83fbfaf1f6baf8e85437e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c150c7a61ed4a4f4955a96626574e9baf1adf772c2fb61ef6a5027e52803543"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fa4331c200c2521512595253f5bb70858b90f750d39b8cbfd67465f8d1b596d"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:214b7a953d73b5e87f0ebece4a32a5bd83c60a3ecc9d4ec8f1dca968a2d91e99"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f47ad3d5f3258bd7058d2d506852217865afefe6153a36eb4b6928758041d831"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f276b245347e6e36526cbd4a266a417796fc531ddf391e43574cf6466c492520"}, + {file = "rpds_py-0.22.3-cp39-cp39-win32.whl", hash = "sha256:bbb232860e3d03d544bc03ac57855cd82ddf19c7a07651a7c0fdb95e9efea8b9"}, + {file = "rpds_py-0.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfbc454a2880389dbb9b5b398e50d439e2e58669160f27b60e5eca11f68ae17c"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb47271f60660803ad11f4c61b42242b8c1312a31c98c578f79ef9387bbde21c"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:70fb28128acbfd264eda9bf47015537ba3fe86e40d046eb2963d75024be4d055"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44d61b4b7d0c2c9ac019c314e52d7cbda0ae31078aabd0f22e583af3e0d79723"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f0e260eaf54380380ac3808aa4ebe2d8ca28b9087cf411649f96bad6900c728"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b25bc607423935079e05619d7de556c91fb6adeae9d5f80868dde3468657994b"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb6116dfb8d1925cbdb52595560584db42a7f664617a1f7d7f6e32f138cdf37d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a63cbdd98acef6570c62b92a1e43266f9e8b21e699c363c0fef13bd530799c11"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b8f60e1b739a74bab7e01fcbe3dddd4657ec685caa04681df9d562ef15b625f"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2e8b55d8517a2fda8d95cb45d62a5a8bbf9dd0ad39c5b25c8833efea07b880ca"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2de29005e11637e7a2361fa151f780ff8eb2543a0da1413bb951e9f14b699ef3"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:666ecce376999bf619756a24ce15bb14c5bfaf04bf00abc7e663ce17c3f34fe7"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5246b14ca64a8675e0a7161f7af68fe3e910e6b90542b4bfb5439ba752191df6"}, + {file = "rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d"}, ] -[[package]] -name = "setuptools" -version = "74.1.2" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-74.1.2-py3-none-any.whl", hash = "sha256:5f4c08aa4d3ebcb57a50c33b1b07e94315d7fc7230f7115e47fc99776c8ce308"}, - {file = "setuptools-74.1.2.tar.gz", hash = "sha256:95b40ed940a1c67eb70fc099094bd6e99c6ee7c23aa2306f4d2697ba7916f9c6"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] - [[package]] name = "six" -version = "1.16.0" +version = "1.17.0" description = "Python 2 and 3 compatibility utilities" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, ] [[package]] @@ -1213,15 +1175,26 @@ files = [ {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] +[[package]] +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] + [[package]] name = "urllib3" -version = "2.2.2" +version = "2.3.0" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, - {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, + {file = "urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df"}, + {file = "urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d"}, ] [package.extras] @@ -1232,46 +1205,41 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "watchdog" -version = "4.0.2" +version = "6.0.0" description = "Filesystem events monitoring" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ede7f010f2239b97cc79e6cb3c249e72962404ae3865860855d5cbe708b0fd22"}, - {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2cffa171445b0efa0726c561eca9a27d00a1f2b83846dbd5a4f639c4f8ca8e1"}, - {file = "watchdog-4.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c50f148b31b03fbadd6d0b5980e38b558046b127dc483e5e4505fcef250f9503"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c7d4bf585ad501c5f6c980e7be9c4f15604c7cc150e942d82083b31a7548930"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:914285126ad0b6eb2258bbbcb7b288d9dfd655ae88fa28945be05a7b475a800b"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:984306dc4720da5498b16fc037b36ac443816125a3705dfde4fd90652d8028ef"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1cdcfd8142f604630deef34722d695fb455d04ab7cfe9963055df1fc69e6727a"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7ab624ff2f663f98cd03c8b7eedc09375a911794dfea6bf2a359fcc266bff29"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:132937547a716027bd5714383dfc40dc66c26769f1ce8a72a859d6a48f371f3a"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd67c7df93eb58f360c43802acc945fa8da70c675b6fa37a241e17ca698ca49b"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcfd02377be80ef3b6bc4ce481ef3959640458d6feaae0bd43dd90a43da90a7d"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:980b71510f59c884d684b3663d46e7a14b457c9611c481e5cef08f4dd022eed7"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:aa160781cafff2719b663c8a506156e9289d111d80f3387cf3af49cedee1f040"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f6ee8dedd255087bc7fe82adf046f0b75479b989185fb0bdf9a98b612170eac7"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0b4359067d30d5b864e09c8597b112fe0a0a59321a0f331498b013fb097406b4"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:770eef5372f146997638d737c9a3c597a3b41037cfbc5c41538fc27c09c3a3f9"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eeea812f38536a0aa859972d50c76e37f4456474b02bd93674d1947cf1e39578"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b2c45f6e1e57ebb4687690c05bc3a2c1fb6ab260550c4290b8abb1335e0fd08b"}, - {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:10b6683df70d340ac3279eff0b2766813f00f35a1d37515d2c99959ada8f05fa"}, - {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7c739888c20f99824f7aa9d31ac8a97353e22d0c0e54703a547a218f6637eb3"}, - {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c100d09ac72a8a08ddbf0629ddfa0b8ee41740f9051429baa8e31bb903ad7508"}, - {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f5315a8c8dd6dd9425b974515081fc0aadca1d1d61e078d2246509fd756141ee"}, - {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:2d468028a77b42cc685ed694a7a550a8d1771bb05193ba7b24006b8241a571a1"}, - {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f15edcae3830ff20e55d1f4e743e92970c847bcddc8b7509bcd172aa04de506e"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:936acba76d636f70db8f3c66e76aa6cb5136a936fc2a5088b9ce1c7a3508fc83"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_armv7l.whl", hash = "sha256:e252f8ca942a870f38cf785aef420285431311652d871409a64e2a0a52a2174c"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_i686.whl", hash = "sha256:0e83619a2d5d436a7e58a1aea957a3c1ccbf9782c43c0b4fed80580e5e4acd1a"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64.whl", hash = "sha256:88456d65f207b39f1981bf772e473799fcdc10801062c36fd5ad9f9d1d463a73"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:32be97f3b75693a93c683787a87a0dc8db98bb84701539954eef991fb35f5fbc"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_s390x.whl", hash = "sha256:c82253cfc9be68e3e49282831afad2c1f6593af80c0daf1287f6a92657986757"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c0b14488bd336c5b1845cee83d3e631a1f8b4e9c5091ec539406e4a324f882d8"}, - {file = "watchdog-4.0.2-py3-none-win32.whl", hash = "sha256:0d8a7e523ef03757a5aa29f591437d64d0d894635f8a50f370fe37f913ce4e19"}, - {file = "watchdog-4.0.2-py3-none-win_amd64.whl", hash = "sha256:c344453ef3bf875a535b0488e3ad28e341adbd5a9ffb0f7d62cefacc8824ef2b"}, - {file = "watchdog-4.0.2-py3-none-win_ia64.whl", hash = "sha256:baececaa8edff42cd16558a639a9b0ddf425f93d892e8392a56bf904f5eff22c"}, - {file = "watchdog-4.0.2.tar.gz", hash = "sha256:b4dfbb6c49221be4535623ea4474a4d6ee0a9cef4a80b20c28db4d858b64e270"}, + {file = "watchdog-6.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1cdb490583ebd691c012b3d6dae011000fe42edb7a82ece80965b42abd61f26"}, + {file = "watchdog-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc64ab3bdb6a04d69d4023b29422170b74681784ffb9463ed4870cf2f3e66112"}, + {file = "watchdog-6.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c897ac1b55c5a1461e16dae288d22bb2e412ba9807df8397a635d88f671d36c3"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2"}, + {file = "watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860"}, + {file = "watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134"}, + {file = "watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e6f0e77c9417e7cd62af82529b10563db3423625c5fce018430b249bf977f9e8"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:90c8e78f3b94014f7aaae121e6b909674df5b46ec24d6bebc45c44c56729af2a"}, + {file = "watchdog-6.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e7631a77ffb1f7d2eefa4445ebbee491c720a5661ddf6df3498ebecae5ed375c"}, + {file = "watchdog-6.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c7ac31a19f4545dd92fc25d200694098f42c9a8e391bc00bdd362c5736dbf881"}, + {file = "watchdog-6.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9513f27a1a582d9808cf21a07dae516f0fab1cf2d7683a742c498b93eedabb11"}, + {file = "watchdog-6.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7a0e56874cfbc4b9b05c60c8a1926fedf56324bb08cfbc188969777940aef3aa"}, + {file = "watchdog-6.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e6439e374fc012255b4ec786ae3c4bc838cd7309a540e5fe0952d03687d8804e"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c"}, + {file = "watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2"}, + {file = "watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a"}, + {file = "watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680"}, + {file = "watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f"}, + {file = "watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282"}, ] [package.extras] @@ -1279,13 +1247,13 @@ watchmedo = ["PyYAML (>=3.10)"] [[package]] name = "zipp" -version = "3.20.1" +version = "3.21.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"}, - {file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"}, + {file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"}, + {file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"}, ] [package.extras] @@ -1298,5 +1266,5 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" -python-versions = "^3.8" -content-hash = "8858c2f3f9d76d2a33dac65afedebbab6fc0615023f2f16031afb11c7c47c613" +python-versions = "^3.10" +content-hash = "0038abac9acc9b126ae04e4e1cc539b8def33b578901283b95acb50080c32941" diff --git a/pyproject.toml b/pyproject.toml index d8fbb5d..c9d4b20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,9 @@ description = "" authors = ["Big Ladder Software"] [tool.poetry.dependencies] -python = "^3.9" -lattice = {path = "../lattice", develop = true} -#lattice = {git = "https://github.com/bigladder/lattice.git", branch = "cpp-cleanup"} +python = "^3.10" +#lattice = {path = "../../../lattice", develop = true} +lattice = {git = "https://github.com/bigladder/lattice.git", branch = "cpp-cleanup"} [tool.poetry.dev-dependencies] doit = "0.36.0" From f458973b986f2459e97931ec8d619e3200d8ed2d Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Mon, 20 Jan 2025 11:44:41 -0700 Subject: [PATCH 05/15] Defint RSAIRTOWATERHEATPUMP schema type. --- schema/ASHRAE205.schema.yaml | 2 ++ schema/RSAIRTOWATERHEATPUMP.schema.yaml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/schema/ASHRAE205.schema.yaml b/schema/ASHRAE205.schema.yaml index 6b1e5a4..33ab252 100644 --- a/schema/ASHRAE205.schema.yaml +++ b/schema/ASHRAE205.schema.yaml @@ -51,6 +51,8 @@ SchemaType: Description: "Resistance Water Heat Source" RSCONDENSERWATERHEATSOURCE: Description: "Condenser Water Heat Source" + RSAIRTOWATERHEATPUMP: + Description: "Air-to-Water Heat Pump" HPWHSIMINPUT: Description: "Input required to describe a heat pump water heating system in HPWHsim" diff --git a/schema/RSAIRTOWATERHEATPUMP.schema.yaml b/schema/RSAIRTOWATERHEATPUMP.schema.yaml index 0349826..36ec2a5 100644 --- a/schema/RSAIRTOWATERHEATPUMP.schema.yaml +++ b/schema/RSAIRTOWATERHEATPUMP.schema.yaml @@ -3,7 +3,7 @@ Schema: References: - "ASHRAE205" Title: "Condenser Water Heat Source" - Description: "Schema for ASHRAE 205 annex RSCONDENSERWATERHEATSOURCE: Condenser heat source" + Description: "Schema for ASHRAE 205 annex RSAIRTOWATERHEATPUMP: Air-to-Water Heat Pump" Version: "0.1.0" Root Data Group: RSAIRTOWATERHEATPUMP @@ -15,7 +15,7 @@ RSAIRTOWATERHEATPUMP: metadata: Description: "Metadata data group" Data Type: "{Metadata}" - Constraints: "schema=RSCONDENSERWATERHEATSOURCE" + Constraints: "schema=RSAIRTOWATERHEATPUMP" Required: True description: Description: "Data group describing product and rating information" From 69e4ada87761f4bf9829f6132fc13fd5e6a71576 Mon Sep 17 00:00:00 2001 From: Tanaya Mankad Date: Mon, 20 Jan 2025 14:53:58 -0700 Subject: [PATCH 06/15] Move submodule dependencies to config file. --- cpp/config.yaml | 5 +++++ dodo.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 cpp/config.yaml diff --git a/cpp/config.yaml b/cpp/config.yaml new file mode 100644 index 0000000..53f85b2 --- /dev/null +++ b/cpp/config.yaml @@ -0,0 +1,5 @@ +dependencies: + - name: "nlohmann_json" + - name: "btwxt" + - name: "courier" + - name: "fmt" diff --git a/dodo.py b/dodo.py index ab83f36..559111f 100644 --- a/dodo.py +++ b/dodo.py @@ -31,6 +31,7 @@ def task_validate_schemas(): def task_validate_example_files(): """Validates the example files against the JSON schema (and other validation steps)""" return { + "task_dep": [f"validate_schemas"], "file_dep": data_model.examples + [schema.file_path for schema in data_model.schemas], "actions": [(data_model.validate_example_files, [])], @@ -45,6 +46,6 @@ def task_generate_cpp_code(): + [schema.meta_schema_path for schema in data_model.schemas], "targets": [schema.cpp_header_file_path for schema in data_model.cpp_schemas] + [schema.cpp_source_file_path for schema in data_model.cpp_schemas], - "actions": [(data_model.generate_cpp_project, [[]])], + "actions": [(data_model.generate_cpp_project, [])], "clean": True, } From 1c429d7b962890c055ca7963f113a9cb751ad2b2 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Mon, 20 Jan 2025 15:16:16 -0700 Subject: [PATCH 07/15] Remove btwxt link. --- cpp/config.yaml | 1 - poetry.lock | 14 +++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/cpp/config.yaml b/cpp/config.yaml index 53f85b2..f86730d 100644 --- a/cpp/config.yaml +++ b/cpp/config.yaml @@ -1,5 +1,4 @@ dependencies: - name: "nlohmann_json" - - name: "btwxt" - name: "courier" - name: "fmt" diff --git a/poetry.lock b/poetry.lock index 3ea13fe..4644774 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "attrs" @@ -369,13 +369,13 @@ all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2 [[package]] name = "importlib-metadata" -version = "8.5.0" +version = "8.6.0" description = "Read metadata from Python packages" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, - {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, + {file = "importlib_metadata-8.6.0-py3-none-any.whl", hash = "sha256:bf530e3215e221140ce730fdb932e31cc0a8f8171946b7c9c2b3f9443849378b"}, + {file = "importlib_metadata-8.6.0.tar.gz", hash = "sha256:41de0ebd24696ce441af2951a79d09a0a235f9af08e30199a8bd6e8cd11aba4d"}, ] [package.dependencies] @@ -387,7 +387,7 @@ cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] perf = ["ipython"] -test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] +test = ["flufl.flake8", "importlib_resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] type = ["pytest-mypy"] [[package]] @@ -465,7 +465,7 @@ stringcase = ">=1.2.0" type = "git" url = "https://github.com/bigladder/lattice.git" reference = "cpp-cleanup" -resolved_reference = "556944e76d632b9e69c1194b5875312c501745d7" +resolved_reference = "fddff516b9d9f86b20f0da6a1901b92bf544dac9" [[package]] name = "markdown" From 6355d3b40273a9f341d62acd1beca2adaadf9657 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Tue, 21 Jan 2025 10:48:48 -0700 Subject: [PATCH 08/15] Restore airtowaterhp type. --- schema/HeatSourceConfiguration.schema.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/schema/HeatSourceConfiguration.schema.yaml b/schema/HeatSourceConfiguration.schema.yaml index baf79af..0f876da 100644 --- a/schema/HeatSourceConfiguration.schema.yaml +++ b/schema/HeatSourceConfiguration.schema.yaml @@ -24,7 +24,11 @@ HeatSourceType: Description: "Heat sources that operate by coolant condenser systems" Display Text: "Condenser" Notes: "" - + AIRTOWATERHEATPUMP: + Description: "Heat sources that operate by air-to-water heat pump systems" + Display Text: "AirToWaterHeatPump" + Notes: "" + HeatingLogicType: Object Type: "Enumeration" Enumerators: @@ -72,7 +76,7 @@ HeatSourceConfiguration: heat_source: Description: "A corresponding Standard 205 heat-source representation" Data Type: "({RSRESISTANCEWATERHEATSOURCE},{RSCONDENSERWATERHEATSOURCE},{RSAIRTOWATERHEATPUMP})" # TODO: Air-to-water heat pump eventually needs to be replaced by a more generic External heat source - Constraints: "heat_source_type(RESISTANCE, CONDENSER)" + Constraints: "heat_source_type(RESISTANCE, CONDENSER, AIRTOWATERHEATPUMP)" Required: True heat_distribution: Description: "Weighted distribution of heat from the heat source along the height of the tank" From 70af7f742412bdcb59f5758a8a3568c03a7569eb Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Tue, 21 Jan 2025 17:04:55 -0700 Subject: [PATCH 09/15] Make outletT optional; add examples. --- examples/AOSmithCAHP120.json | 736 ++ examples/AOSmithHPTS40.json | 195 + examples/AOSmithHPTS50.json | 195 + examples/AOSmithHPTS50.yaml | 127 - examples/AOSmithHPTS66.json | 195 + examples/AOSmithHPTS80.json | 195 + examples/AOSmithHPTU50.json | 212 + examples/AOSmithHPTU66.json | 212 + examples/AOSmithHPTU80.json | 212 + examples/AOSmithHPTU80_DR.json | 206 + examples/AOSmithPHPT60.json | 260 + examples/AOSmithPHPT80.json | 260 + examples/AWHSTier3Generic40.json | 241 + examples/AWHSTier3Generic50.json | 241 + examples/AWHSTier3Generic65.json | 241 + examples/AWHSTier3Generic80.json | 241 + examples/AWHSTier4Generic40.json | 228 + examples/AWHSTier4Generic50.json | 228 + examples/AWHSTier4Generic65.json | 228 + examples/AWHSTier4Generic80.json | 228 + examples/AquaThermAire.json | 124 + examples/BWC2020_65.json | 239 + examples/BradfordWhiteAeroThermRE2H50.json | 212 + examples/BradfordWhiteAeroThermRE2H65.json | 212 + examples/BradfordWhiteAeroThermRE2H80.json | 212 + examples/ColmacCxA_10_MP.json | 2174 ++++++ examples/ColmacCxA_10_SP.json | 4171 +++++++++++ examples/ColmacCxA_15_MP.json | 2174 ++++++ examples/ColmacCxA_15_SP.json | 4171 +++++++++++ examples/ColmacCxA_20_MP.json | 2174 ++++++ examples/ColmacCxA_20_MP.yaml | 2157 ------ examples/ColmacCxA_20_SP.json | 4171 +++++++++++ examples/ColmacCxA_20_SP.yaml | 4157 ----------- examples/ColmacCxA_25_MP.json | 2174 ++++++ examples/ColmacCxA_25_SP.json | 4171 +++++++++++ examples/ColmacCxA_30_MP.json | 2174 ++++++ examples/ColmacCxA_30_SP.json | 4171 +++++++++++ examples/ColmacCxV_5_MP.json | 2411 +++++++ examples/ColmacCxV_5_SP.json | 2409 +++++++ examples/GE.json | 225 + examples/GE2014STDMode.json | 210 + examples/GE2014STDMode_80.json | 210 + examples/GE502014.json | 241 + examples/GE802014.json | 208 + examples/Generic1.json | 244 + examples/Generic2.json | 244 + examples/Generic3.json | 225 + examples/GenericUEF217.json | 227 + examples/LG_APHWC50.json | 195 + examples/LG_APHWC80.json | 195 + examples/NyleC125A_C_MP.json | 170 + examples/NyleC125A_C_SP.json | 7285 ++++++++++++++++++++ examples/NyleC125A_MP.json | 170 + examples/NyleC125A_SP.json | 4171 +++++++++++ examples/NyleC185A_C_MP.json | 170 + examples/NyleC185A_C_SP.json | 7285 ++++++++++++++++++++ examples/NyleC185A_MP.json | 170 + examples/NyleC185A_SP.json | 4171 +++++++++++ examples/NyleC250A_C_MP.json | 170 + examples/NyleC250A_C_SP.json | 7285 ++++++++++++++++++++ examples/NyleC250A_MP.json | 170 + examples/NyleC250A_SP.json | 4171 +++++++++++ examples/NyleC25A_SP.json | 4171 +++++++++++ examples/NyleC60A_C_MP.json | 170 + examples/NyleC60A_C_SP.json | 7285 ++++++++++++++++++++ examples/NyleC60A_MP.json | 170 + examples/NyleC60A_SP.json | 4171 +++++++++++ examples/NyleC90A_C_MP.json | 170 + examples/NyleC90A_C_SP.json | 7285 ++++++++++++++++++++ examples/NyleC90A_MP.json | 170 + examples/NyleC90A_SP.json | 4171 +++++++++++ examples/QAHV_N136TAU_HPB_SP.json | 1176 ++++ examples/Rheem2020Build40.json | 252 + examples/Rheem2020Build50.json | 252 + examples/Rheem2020Build65.json | 252 + examples/Rheem2020Build80.json | 252 + examples/Rheem2020Prem40.json | 261 + examples/Rheem2020Prem50.json | 261 + examples/Rheem2020Prem50.yaml | 223 - examples/Rheem2020Prem65.json | 261 + examples/Rheem2020Prem80.json | 261 + examples/RheemHB50.json | 206 + examples/RheemHBDR2250.json | 212 + examples/RheemHBDR2265.json | 212 + examples/RheemHBDR2280.json | 212 + examples/RheemHBDR4550.json | 212 + examples/RheemHBDR4565.json | 212 + examples/RheemHBDR4580.json | 212 + examples/RheemHPHD135.json | 1724 +++++ examples/RheemHPHD60.json | 1724 +++++ examples/RheemPlugInDedicated40.json | 118 + examples/RheemPlugInDedicated50.json | 118 + examples/RheemPlugInShared40.json | 172 + examples/RheemPlugInShared50.json | 172 + examples/RheemPlugInShared65.json | 172 + examples/RheemPlugInShared80.json | 172 + examples/Sanden120.json | 160 + examples/Sanden40.json | 160 + examples/Sanden80.json | 160 + examples/Scalable_MP.json | 2244 ++++++ examples/Stiebel220e.json | 157 + examples/TamScalable_SP.json | 4241 ++++++++++++ examples/TamScalable_SP_2X.json | 4241 ++++++++++++ examples/TamScalable_SP_Half.json | 4241 ++++++++++++ examples/UEF2generic.json | 210 + examples/restankRealistic.json | 124 + schema/RSAIRTOWATERHEATPUMP.schema.yaml | 2 +- 107 files changed, 132890 insertions(+), 6665 deletions(-) create mode 100644 examples/AOSmithCAHP120.json create mode 100644 examples/AOSmithHPTS40.json create mode 100644 examples/AOSmithHPTS50.json delete mode 100644 examples/AOSmithHPTS50.yaml create mode 100644 examples/AOSmithHPTS66.json create mode 100644 examples/AOSmithHPTS80.json create mode 100644 examples/AOSmithHPTU50.json create mode 100644 examples/AOSmithHPTU66.json create mode 100644 examples/AOSmithHPTU80.json create mode 100644 examples/AOSmithHPTU80_DR.json create mode 100644 examples/AOSmithPHPT60.json create mode 100644 examples/AOSmithPHPT80.json create mode 100644 examples/AWHSTier3Generic40.json create mode 100644 examples/AWHSTier3Generic50.json create mode 100644 examples/AWHSTier3Generic65.json create mode 100644 examples/AWHSTier3Generic80.json create mode 100644 examples/AWHSTier4Generic40.json create mode 100644 examples/AWHSTier4Generic50.json create mode 100644 examples/AWHSTier4Generic65.json create mode 100644 examples/AWHSTier4Generic80.json create mode 100644 examples/AquaThermAire.json create mode 100644 examples/BWC2020_65.json create mode 100644 examples/BradfordWhiteAeroThermRE2H50.json create mode 100644 examples/BradfordWhiteAeroThermRE2H65.json create mode 100644 examples/BradfordWhiteAeroThermRE2H80.json create mode 100644 examples/ColmacCxA_10_MP.json create mode 100644 examples/ColmacCxA_10_SP.json create mode 100644 examples/ColmacCxA_15_MP.json create mode 100644 examples/ColmacCxA_15_SP.json create mode 100644 examples/ColmacCxA_20_MP.json delete mode 100644 examples/ColmacCxA_20_MP.yaml create mode 100644 examples/ColmacCxA_20_SP.json delete mode 100644 examples/ColmacCxA_20_SP.yaml create mode 100644 examples/ColmacCxA_25_MP.json create mode 100644 examples/ColmacCxA_25_SP.json create mode 100644 examples/ColmacCxA_30_MP.json create mode 100644 examples/ColmacCxA_30_SP.json create mode 100644 examples/ColmacCxV_5_MP.json create mode 100644 examples/ColmacCxV_5_SP.json create mode 100644 examples/GE.json create mode 100644 examples/GE2014STDMode.json create mode 100644 examples/GE2014STDMode_80.json create mode 100644 examples/GE502014.json create mode 100644 examples/GE802014.json create mode 100644 examples/Generic1.json create mode 100644 examples/Generic2.json create mode 100644 examples/Generic3.json create mode 100644 examples/GenericUEF217.json create mode 100644 examples/LG_APHWC50.json create mode 100644 examples/LG_APHWC80.json create mode 100644 examples/NyleC125A_C_MP.json create mode 100644 examples/NyleC125A_C_SP.json create mode 100644 examples/NyleC125A_MP.json create mode 100644 examples/NyleC125A_SP.json create mode 100644 examples/NyleC185A_C_MP.json create mode 100644 examples/NyleC185A_C_SP.json create mode 100644 examples/NyleC185A_MP.json create mode 100644 examples/NyleC185A_SP.json create mode 100644 examples/NyleC250A_C_MP.json create mode 100644 examples/NyleC250A_C_SP.json create mode 100644 examples/NyleC250A_MP.json create mode 100644 examples/NyleC250A_SP.json create mode 100644 examples/NyleC25A_SP.json create mode 100644 examples/NyleC60A_C_MP.json create mode 100644 examples/NyleC60A_C_SP.json create mode 100644 examples/NyleC60A_MP.json create mode 100644 examples/NyleC60A_SP.json create mode 100644 examples/NyleC90A_C_MP.json create mode 100644 examples/NyleC90A_C_SP.json create mode 100644 examples/NyleC90A_MP.json create mode 100644 examples/NyleC90A_SP.json create mode 100644 examples/QAHV_N136TAU_HPB_SP.json create mode 100644 examples/Rheem2020Build40.json create mode 100644 examples/Rheem2020Build50.json create mode 100644 examples/Rheem2020Build65.json create mode 100644 examples/Rheem2020Build80.json create mode 100644 examples/Rheem2020Prem40.json create mode 100644 examples/Rheem2020Prem50.json delete mode 100644 examples/Rheem2020Prem50.yaml create mode 100644 examples/Rheem2020Prem65.json create mode 100644 examples/Rheem2020Prem80.json create mode 100644 examples/RheemHB50.json create mode 100644 examples/RheemHBDR2250.json create mode 100644 examples/RheemHBDR2265.json create mode 100644 examples/RheemHBDR2280.json create mode 100644 examples/RheemHBDR4550.json create mode 100644 examples/RheemHBDR4565.json create mode 100644 examples/RheemHBDR4580.json create mode 100644 examples/RheemHPHD135.json create mode 100644 examples/RheemHPHD60.json create mode 100644 examples/RheemPlugInDedicated40.json create mode 100644 examples/RheemPlugInDedicated50.json create mode 100644 examples/RheemPlugInShared40.json create mode 100644 examples/RheemPlugInShared50.json create mode 100644 examples/RheemPlugInShared65.json create mode 100644 examples/RheemPlugInShared80.json create mode 100644 examples/Sanden120.json create mode 100644 examples/Sanden40.json create mode 100644 examples/Sanden80.json create mode 100644 examples/Scalable_MP.json create mode 100644 examples/Stiebel220e.json create mode 100644 examples/TamScalable_SP.json create mode 100644 examples/TamScalable_SP_2X.json create mode 100644 examples/TamScalable_SP_Half.json create mode 100644 examples/UEF2generic.json create mode 100644 examples/restankRealistic.json diff --git a/examples/AOSmithCAHP120.json b/examples/AOSmithCAHP120.json new file mode 100644 index 0000000..e2132dc --- /dev/null +++ b/examples/AOSmithCAHP120.json @@ -0,0 +1,736 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "resistiveElementBottom", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5833333333333333, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 6000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.3722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 12.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 1.0 + ], + "weight": [ + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 6000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 315.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.16666666666666666, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 12.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.16666666666666666, + 0.25, + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.6666666666666667, + 0.33333333333333337, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 281.4833333333333, + 283.15, + 292.8722222222222, + 308.15, + 316.4833333333333 + ], + "heat_source_temperature": [ + 273.15, + 274.7661616161616, + 276.3823232323232, + 277.9984848484848, + 279.6146464646464, + 281.230808080808, + 282.8469696969696, + 284.4631313131312, + 286.0792929292928, + 287.6954545454544, + 289.31161616161603, + 290.92777777777764, + 292.54393939393924, + 294.16010101010085, + 295.77626262626245, + 297.39242424242406, + 299.00858585858566, + 300.62474747474727, + 302.2409090909089, + 303.8570707070705, + 305.4732323232321, + 307.0893939393937, + 308.7055555555553, + 310.3217171717169, + 311.9378787878785, + 313.5540404040401, + 315.1702020202017, + 316.7863636363633, + 318.4025252525249, + 320.01868686868653, + 321.63484848484813, + 323.25101010100974, + 324.86717171717135, + 326.48333333333295, + 328.09949494949456, + 329.71565656565616, + 331.33181818181777, + 332.94797979797937, + 334.564141414141, + 336.1803030303026, + 337.7964646464642, + 339.4126262626258, + 341.0287878787874, + 342.644949494949, + 344.2611111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 9497.73270841608, + 9380.12732576573, + 9268.317710514977, + 9162.00430016601, + 9060.887532221011, + 8964.667844182182, + 8873.04567355171, + 8785.721457831782, + 8702.395634524592, + 8622.76864113233, + 8546.540915157193, + 8473.412894101366, + 8403.085015467035, + 8335.257716756403, + 8269.631435471654, + 8205.906609114982, + 8143.783675188574, + 8082.963071194624, + 8023.1452346353235, + 7964.03060301286, + 7905.31961382943, + 7846.7127045872185, + 7787.910312788419, + 7728.612875935222, + 7668.520831529823, + 7607.334617074409, + 7544.754670071168, + 7480.481428022296, + 7414.215328429983, + 7345.656808796418, + 7274.506306623794, + 7200.464259414301, + 7123.23110467013, + 7042.507279893473, + 6957.9932225865205, + 6869.389370251463, + 6776.396160390492, + 6678.714030505799, + 6576.043418099571, + 6468.084760674007, + 6354.53849573129, + 6235.105060773617, + 6109.484893303175, + 5977.378430822155, + 5838.486110832751, + 9950.523198888643, + 9822.165227667772, + 9700.242334185892, + 9584.4227807594, + 9474.374829704697, + 9369.76674333819, + 9270.266783976276, + 9175.543213935365, + 9085.264295531855, + 8999.098291082148, + 8916.713462902653, + 8837.778073309768, + 8761.960384619892, + 8688.928659149436, + 8618.351159214799, + 8549.896147132382, + 8483.231885218593, + 8418.026635789829, + 8353.948661162496, + 8290.666223653, + 8227.847585577736, + 8165.161009253112, + 8102.274756995529, + 8038.857091121391, + 7974.576273947103, + 7909.100567789064, + 7842.098234963677, + 7773.237537787346, + 7702.186738576475, + 7628.614099647465, + 7552.18788331672, + 7472.576351900643, + 7389.447767715634, + 7302.4703930781, + 7211.31249030444, + 7115.642321711061, + 7015.128149614363, + 6909.438236330749, + 6798.24084417662, + 6681.204235468384, + 6557.996672522439, + 6428.286417655191, + 6291.74173318304, + 6148.030881422389, + 5996.822124689645, + 12718.217679390724, + 12520.42315941536, + 12333.470953023543, + 12156.808954701253, + 11989.885058934487, + 11832.14716020923, + 11683.043153011475, + 11542.020931827212, + 11408.528391142434, + 11282.013425443132, + 11161.923929215292, + 11047.707796944907, + 10938.812923117968, + 10834.687202220468, + 10734.778528738392, + 10638.534797157736, + 10545.403901964486, + 10454.833737644638, + 10366.272198684177, + 10279.1671795691, + 10192.966574785387, + 10107.11827881904, + 10021.070186156046, + 9934.270191282394, + 9846.166188684076, + 9756.206072847082, + 9663.837738257402, + 9568.509079401027, + 9469.667990763948, + 9366.762366832152, + 9259.240102091639, + 9146.549091028393, + 9028.137228128402, + 8903.452407877663, + 8771.942524762162, + 8633.055473267892, + 8486.239147880844, + 8330.941443087006, + 8166.610253372364, + 7992.693473222922, + 7808.638997124664, + 7613.894719563578, + 7407.908535025656, + 7190.12833799689, + 6960.002022963271, + 16232.325430825595, + 15986.247345367887, + 15754.191937412248, + 15535.414232990577, + 15329.169258134763, + 15134.712038876709, + 14951.297601248305, + 14778.180971281452, + 14614.617175008038, + 14459.861238459958, + 14313.168187669113, + 14173.793048667394, + 14040.990847486702, + 13914.016610158928, + 13792.125362715964, + 13674.572131189716, + 13560.611941612064, + 13449.499820014917, + 13340.490792430162, + 13232.8398848897, + 13125.802123425421, + 13018.632534069227, + 12910.586142853, + 12800.917975808654, + 12688.88305896807, + 12573.736418363145, + 12454.733080025786, + 12331.128069987873, + 12202.17641428131, + 12067.13313893799, + 11925.253269989806, + 11775.791833468656, + 11618.00385540644, + 11451.14436183504, + 11274.468378786365, + 11087.230932292307, + 10888.687048384756, + 10678.091753095607, + 10454.700072456762, + 10217.767032500113, + 9966.547659257556, + 9700.296978760985, + 9418.270017042292, + 9119.721800133379, + 8803.90735406614, + 18270.41965202639, + 17997.518333127027, + 17740.50194003153, + 17498.51002157827, + 17270.682126605603, + 17056.157803951937, + 16854.076602455618, + 16663.578070955024, + 16483.801758288526, + 16313.887213294493, + 16152.973984811302, + 16000.20162167732, + 15854.70967273093, + 15715.637686810489, + 15582.125212754374, + 15453.31179940096, + 15328.33699558862, + 15206.340350155719, + 15086.461411940629, + 14967.83972978173, + 14849.61485251739, + 14730.92632898598, + 14610.913708025868, + 14488.71653847543, + 14363.474369173038, + 14234.326748957057, + 14100.413226665878, + 13960.873351137852, + 13814.846671211357, + 13661.472735724772, + 13499.891093516459, + 13329.241293424793, + 13148.662884288151, + 12957.295414944894, + 12754.278434233403, + 12538.751490992052, + 12309.854134059207, + 12066.725912273232, + 11808.506374472518, + 11534.335069495422, + 11243.35154618032, + 10934.695353365587, + 10607.506039889584, + 10260.923154590693, + 9894.08624630729 + ], + "input_power": [ + 1946.4468799771428, + 1951.377987995466, + 1957.6845288483582, + 1965.3665025358202, + 1974.4239090578506, + 1984.8567484144503, + 1996.665020605619, + 2009.8487256313572, + 2024.4078634916636, + 2040.342434186539, + 2057.6524377159844, + 2076.3378740799985, + 2096.398743278581, + 2117.8350453117328, + 2140.6467801794543, + 2164.8339478817443, + 2190.3965484186037, + 2217.3345817900317, + 2245.648047996029, + 2275.3369470365956, + 2306.401278911731, + 2338.8410436214353, + 2372.6562411657087, + 2407.846871544551, + 2444.412934757963, + 2482.354430805944, + 2521.6713596884933, + 2562.363721405612, + 2604.4315159573, + 2647.874743343556, + 2692.6934035643826, + 2738.8874966197773, + 2786.457022509741, + 2835.4019812342744, + 2885.7223727933765, + 2937.418197187047, + 2990.489454415287, + 3044.9361444780966, + 3100.758267375475, + 3157.955823107422, + 3216.5288116739375, + 3276.4772330750234, + 3337.801087310678, + 3400.500374380902, + 3464.575094285695, + 1963.2350200000003, + 1967.6104143801651, + 1973.4311720661156, + 1980.697293057851, + 1989.4087773553715, + 1999.5656249586773, + 2011.1678358677677, + 2024.2154100826442, + 2038.708347603305, + 2054.6466484297507, + 2072.030312561982, + 2090.8593399999986, + 2111.1337307438, + 2132.853484793386, + 2156.018602148758, + 2180.6290828099145, + 2206.6849267768566, + 2234.1861340495834, + 2263.1327046280953, + 2293.524638512393, + 2325.361935702475, + 2358.6445961983422, + 2393.3726199999946, + 2429.546007107432, + 2467.164757520655, + 2506.228871239663, + 2546.7383482644555, + 2588.6931885950335, + 2632.0933922313966, + 2676.9389591735444, + 2723.229889421478, + 2770.9661829751967, + 2820.1478398347, + 2870.7748599999886, + 2922.847243471062, + 2976.364990247921, + 3031.3281003305647, + 3087.736573718994, + 3145.5904104132087, + 3204.8896104132073, + 3265.6341737189914, + 3327.8241003305607, + 3391.4593902479155, + 3456.5400434710555, + 3523.06605999998, + 2061.1658368000003, + 2062.299568290909, + 2065.2865908363638, + 2070.1269044363635, + 2076.820509090909, + 2085.3674048, + 2095.767591563636, + 2108.0210693818176, + 2122.1278382545447, + 2138.0878981818173, + 2155.9012491636354, + 2175.567891199999, + 2197.0878242909075, + 2220.4610484363616, + 2245.687563636361, + 2272.7673698909066, + 2301.700467199997, + 2332.486855563633, + 2365.126534981814, + 2399.6195054545415, + 2435.9657669818134, + 2474.165319563631, + 2514.2181631999943, + 2556.1242978909027, + 2599.8837236363565, + 2645.4964404363564, + 2692.962448290901, + 2742.281747199991, + 2793.4543371636273, + 2846.4802181818072, + 2901.3593902545344, + 2958.0918533818067, + 3016.677607563624, + 3077.1166527999867, + 3139.4089890908954, + 3203.5546164363486, + 3269.553534836348, + 3337.4057442908925, + 3407.1112447999826, + 3478.670036363618, + 3552.0821189817984, + 3627.347492654524, + 3704.466157381796, + 3783.4381131636137, + 3864.263359999976, + 2171.4399080000003, + 2174.1061712727274, + 2178.8020025454543, + 2185.5274018181817, + 2194.2823690909086, + 2205.066904363636, + 2217.881007636363, + 2232.7246789090905, + 2249.5979181818175, + 2268.5007254545444, + 2289.4331007272713, + 2312.395043999998, + 2337.386555272725, + 2364.4076345454523, + 2393.458281818179, + 2424.5384970909063, + 2457.6482803636327, + 2492.7876316363595, + 2529.956550909086, + 2569.1550381818133, + 2610.38309345454, + 2653.640716727267, + 2698.927907999993, + 2746.24466727272, + 2795.5909945454464, + 2846.9668898181726, + 2900.3723530908997, + 2955.807384363626, + 3013.271983636353, + 3072.7661509090794, + 3134.2898861818057, + 3197.843189454532, + 3263.426060727259, + 3331.038499999985, + 3400.680507272711, + 3472.3520825454375, + 3546.053225818164, + 3621.78393709089, + 3699.544216363617, + 3779.3340636363428, + 3861.153478909069, + 3945.0024621817943, + 4030.881013454521, + 4118.789132727247, + 4208.7268199999735, + 2231.5894013818183, + 2235.0915910809917, + 2240.719499841322, + 2248.47312766281, + 2258.3524745454533, + 2270.3575404892554, + 2284.4883254942138, + 2300.74482956033, + 2319.1270526876024, + 2339.6349948760317, + 2362.268656125618, + 2387.028036436361, + 2413.913135808262, + 2442.9239542413197, + 2474.060491735534, + 2507.322748290905, + 2542.710723907434, + 2580.224418585119, + 2619.8638323239616, + 2661.6289651239613, + 2705.519816985118, + 2751.536387907431, + 2799.678677890902, + 2849.946686935529, + 2902.3404150413135, + 2956.859862208254, + 3013.5050284363533, + 3072.275913725609, + 3133.1725180760213, + 3196.194841487591, + 3261.3428839603175, + 3328.6166454942, + 3398.0161260892414, + 3469.5413257454384, + 3543.192244462792, + 3618.968882241303, + 3696.8712390809724, + 3776.8993149817975, + 3859.0531099437812, + 3943.3326239669195, + 4029.7378570512155, + 4118.268809196668, + 4208.92548040328, + 4301.707870671047, + 4396.615979999971 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.9166666666666665, + "temperature_weight_distribution": { + "normalized_height": [ + 0.16666666666666666, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.0784975733277062, + "volume": 0.42305742160000004 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 338.7055555555555, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTS40.json b/examples/AOSmithHPTS40.json new file mode 100644 index 0000000..4bc3f7b --- /dev/null +++ b/examples/AOSmithHPTS40.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.594444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 799.4886411755099, + 655.9118269387769, + 1061.3632, + 774.1260800000014, + 1460.4995680000004, + 933.6636000000017, + 1868.607808, + 2020.603200000001, + 2274.8743891570252, + 3153.5009851239693 + ], + "input_power": [ + 135.53542857142855, + 464.7148571428571, + 146.5, + 465.2199999999999, + 161.26, + 465.8999999999999, + 172.84, + 508.1999999999999, + 183.36727272727273, + 546.6545454545454 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.638888888888889, + "volume": 0.136653301 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTS50.json b/examples/AOSmithHPTS50.json new file mode 100644 index 0000000..29f794c --- /dev/null +++ b/examples/AOSmithHPTS50.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.594444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 799.4886411755099, + 655.9118269387769, + 1061.3632, + 774.1260800000014, + 1460.4995680000004, + 933.6636000000017, + 1868.607808, + 2020.603200000001, + 2274.8743891570252, + 3153.5009851239693 + ], + "input_power": [ + 135.53542857142855, + 464.7148571428571, + 146.5, + 465.2199999999999, + 161.26, + 465.8999999999999, + 172.84, + 508.1999999999999, + 183.36727272727273, + 546.6545454545454 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.7786111111111111, + "volume": 0.172614696 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTS50.yaml b/examples/AOSmithHPTS50.yaml deleted file mode 100644 index c1e4c5b..0000000 --- a/examples/AOSmithHPTS50.yaml +++ /dev/null @@ -1,127 +0,0 @@ ---- -metadata: - schema_author: Big Ladder Software - schema_name: RSINTEGRATEDWATERHEATER - schema_version: 1.0.0 - author: None - id: 6998e64f-7824-414c-9d48-57e43ee47071 - description: AOSmith 50-gallon integrated heat-pump water heater - time_of_creation: 2022-11-23T11:45Z - -description: - product_information: - manufacturer: Rheem - model_number: Rheem2020Prem50 - -performance: - tank: - metadata: - schema_author: Big Ladder Software - schema_name: RS_TANK - schema_version: 1.0.0 - author: None - description: Generic tank - id: 12345678-1234-0000-1234-987654321000 - time_of_creation: 2020-05-07T00:00Z - disclaimer: Example data not to be used for simulation - notes: An example representation of a tank - description: - product_information: - manufacturer: Generic - model_number: XXXXXX - performance: - volume: 0.1726 - ua: 0.001778611 # kW/K - bottom_fraction_of_tank_mixing_on_draw: 0.333 - - heat_source_configurations: - - heat_source: - metadata: - data_model: ASHRAE205 - schema: RSRESISTANCEWATERHEATSOURCE - schema_version: 1.0.0 - description: Thermistor - id: XXXX-XXXX-XXXXX - data_timestamp: 2020-05-07T00:00Z - data_version: 1 - disclaimer: Example data not to be used for simulation - notes: An example representation of a resistive heat source - description: - product_information: - manufacturer: Generic - model_number: XXXXXX - performance: - input_power: 4500 - id: XXXX-XXXX-XXXXX - heat_distribution: [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0] - turn_on_logic: - differential_temperature: 0 - logic_distribution: [0, 0, 0, 0, 0, 1] - evaluation_criterion: MAXIMUM - comparison_type: LESS_THAN - hysteresis_temperature: 0 - - - heat_source: - metadata: - data_model: ASHRAE205 - schema: RSCONDENSERWATERHEATSOURCE - schema_version: 1.0.0 - description: Condenser coil - id: XXXX-XXXX-XXXXX - data_timestamp: 2020-05-07T00:00Z - data_version: 1 - disclaimer: Example data not to be used for simulation - notes: An example representation of a condenser heat source - description: - product_information: - manufacturer: Generic - model_number: XXXXXX - performance: - performance_map: # test values - grid_variables: - evaporator_environment_temperature: [293.15, 313.25] - heat_source_temperature: [293.15, 313.25] - lookup_variables: - input_power: [200, 300, 300, 400] - cop: [0.3, 0.4, 0.4, 0.5] - standby_power: 50 - coil_configuration: WRAPPED - id: XXXX-XXXX-XXXXX - heat_distribution: [0.2, 0.2, 0.2, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0] - turn_on_logic: - differential_temperature: 6.594 # K - logic_distribution: [1, 0, 0] - evaluation_criterion: WEIGHTED_AVERAGE - comparison_type: LESS_THAN - temperature_hysteresis: 0.556 - standby_logic: - differential_temperature: 5 - evaluation_criterion: WEIGHTED_AVERAGE - comparison_type: LESS_THAN - hysteresis_temperature: 0.556 - - - heat_source: - metadata: - data_model: ASHRAE205 - schema: RSRESISTANCEWATERHEATSOURCE - schema_version: 1.0.0 - description: Thermistor - id: XXXX-XXXX-XXXXX - data_timestamp: 2020-05-07T00:00Z - data_version: 1 - disclaimer: Example data not to be used for simulation - notes: An example representation of a resistive heat source - description: - product_information: - manufacturer: Generic - model_number: XXXXXX - performance: - input_power: 4500 - id: XXXX-XXXX-XXXXX - heat_distribution: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - shut_off_logic: - differential_temperature: 55.56 - logic_distribution: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - evaluation_criterion: MAXIMUM - comparison_type: LESS_THAN - hysteresis_temperature: 2.22 diff --git a/examples/AOSmithHPTS66.json b/examples/AOSmithHPTS66.json new file mode 100644 index 0000000..a35c47e --- /dev/null +++ b/examples/AOSmithHPTS66.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.594444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 799.4886411755099, + 655.9118269387769, + 1061.3632, + 774.1260800000014, + 1460.4995680000004, + 933.6636000000017, + 1868.607808, + 2020.603200000001, + 2274.8743891570252, + 3153.5009851239693 + ], + "input_power": [ + 135.53542857142855, + 464.7148571428571, + 146.5, + 465.2199999999999, + 161.26, + 465.8999999999999, + 172.84, + 508.1999999999999, + 183.36727272727273, + 546.6545454545454 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.29992816091954, + "volume": 0.2560072783 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTS80.json b/examples/AOSmithHPTS80.json new file mode 100644 index 0000000..7ad5b56 --- /dev/null +++ b/examples/AOSmithHPTS80.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.594444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 799.4886411755099, + 655.9118269387769, + 1061.3632, + 774.1260800000014, + 1460.4995680000004, + 933.6636000000017, + 1868.607808, + 2020.603200000001, + 2274.8743891570252, + 3153.5009851239693 + ], + "input_power": [ + 135.53542857142855, + 464.7148571428571, + 146.5, + 465.2199999999999, + 161.26, + 465.8999999999999, + 172.84, + 508.1999999999999, + 183.36727272727273, + 546.6545454545454 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.6525838122605356, + "volume": 0.31017649540000003 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTU50.json b/examples/AOSmithHPTU50.json new file mode 100644 index 0000000..cc5e7e9 --- /dev/null +++ b/examples/AOSmithHPTU50.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.6666666666666667, + "volume": 0.171 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTU66.json b/examples/AOSmithHPTU66.json new file mode 100644 index 0000000..e501d9e --- /dev/null +++ b/examples/AOSmithHPTU66.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.2222222222222223, + "volume": 0.24459999999999998 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTU80.json b/examples/AOSmithHPTU80.json new file mode 100644 index 0000000..735bc52 --- /dev/null +++ b/examples/AOSmithHPTU80.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.2995 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithHPTU80_DR.json b/examples/AOSmithHPTU80_DR.json new file mode 100644 index 0000000..093def2 --- /dev/null +++ b/examples/AOSmithHPTU80_DR.json @@ -0,0 +1,206 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 303.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.87666666666667, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 281.4833333333333, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1178.5586681475, + 360.2792443875008, + 1218.670838352, + 417.80560136000065, + 1364.9039136000001, + 666.3527200000013, + 1642.4212071065394, + 1467.7043874195015 + ], + "input_power": [ + 214.191, + 478.0949999999998, + 211.46400000000003, + 486.9199999999998, + 200.55599999999995, + 522.2199999999998, + 171.6497999999999, + 615.7649999999998 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.97977777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 3.973777777777778, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.2839 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithPHPT60.json b/examples/AOSmithPHPT60.json new file mode 100644 index 0000000..1974241 --- /dev/null +++ b/examples/AOSmithPHPT60.json @@ -0,0 +1,260 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.88888888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 2.2222222222222223, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 281.4833333333333, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 2249.74353847419, + 2255.447130270185, + 2217.2932690576804, + 2128.2122885627327, + 1980.8854344430697, + 1767.744864288078, + 1480.9736476188132, + 1112.5057658879944, + 2335.8110446079986, + 2329.5932458108305, + 2282.229174977092, + 2186.1963994162943, + 2033.7792934067315, + 1817.0690381954687, + 1527.9636219983488, + 1158.1678399999935, + 3252.9046588723213, + 3107.020114678781, + 2958.632118411995, + 2790.87254273366, + 2588.7953163072198, + 2339.376423797871, + 2031.5139058725626, + 1656.0278591999954, + 6179.301330471629, + 5483.454374866174, + 4988.901709713406, + 4611.643298821289, + 4288.891389034051, + 3979.0705102322, + 3661.817475332499, + 3337.9813802879985 + ], + "input_power": [ + 560.1158399999999, + 623.2176457142858, + 690.4388571428576, + 761.7794742857147, + 837.2394971428579, + 916.8189257142865, + 1000.5177600000011, + 1088.3360000000011, + 564.2927999999998, + 626.5091591836734, + 693.5404081632656, + 765.3865469387758, + 842.0475755102046, + 923.5234938775518, + 1009.8143020408172, + 1100.920000000001, + 606.0624, + 659.4242938775512, + 724.5559183673472, + 801.4572734693883, + 890.1283591836743, + 990.5691755102054, + 1102.7797224489814, + 1226.760000000002, + 716.7518399999999, + 746.6494008163268, + 806.7470204081635, + 897.044698775511, + 1017.5424359183685, + 1168.2402318367367, + 1349.138086530615, + 1560.2360000000035 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 24.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.222222222222221, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 24.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.0305555555555554, + "volume": 0.21580000000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AOSmithPHPT80.json b/examples/AOSmithPHPT80.json new file mode 100644 index 0000000..cfb6396 --- /dev/null +++ b/examples/AOSmithPHPT80.json @@ -0,0 +1,260 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.88888888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 2.2222222222222223, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 281.4833333333333, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 2249.74353847419, + 2255.447130270185, + 2217.2932690576804, + 2128.2122885627327, + 1980.8854344430697, + 1767.744864288078, + 1480.9736476188132, + 1112.5057658879944, + 2335.8110446079986, + 2329.5932458108305, + 2282.229174977092, + 2186.1963994162943, + 2033.7792934067315, + 1817.0690381954687, + 1527.9636219983488, + 1158.1678399999935, + 3252.9046588723213, + 3107.020114678781, + 2958.632118411995, + 2790.87254273366, + 2588.7953163072198, + 2339.376423797871, + 2031.5139058725626, + 1656.0278591999954, + 6179.301330471629, + 5483.454374866174, + 4988.901709713406, + 4611.643298821289, + 4288.891389034051, + 3979.0705102322, + 3661.817475332499, + 3337.9813802879985 + ], + "input_power": [ + 560.1158399999999, + 623.2176457142858, + 690.4388571428576, + 761.7794742857147, + 837.2394971428579, + 916.8189257142865, + 1000.5177600000011, + 1088.3360000000011, + 564.2927999999998, + 626.5091591836734, + 693.5404081632656, + 765.3865469387758, + 842.0475755102046, + 923.5234938775518, + 1009.8143020408172, + 1100.920000000001, + 606.0624, + 659.4242938775512, + 724.5559183673472, + 801.4572734693883, + 890.1283591836743, + 990.5691755102054, + 1102.7797224489814, + 1226.760000000002, + 716.7518399999999, + 746.6494008163268, + 806.7470204081635, + 897.044698775511, + 1017.5424359183685, + 1168.2402318367367, + 1349.138086530615, + 1560.2360000000035 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 24.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.222222222222221, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 24.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.4444444444444446, + "volume": 0.2839 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier3Generic40.json b/examples/AWHSTier3Generic40.json new file mode 100644 index 0000000..cc5423a --- /dev/null +++ b/examples/AWHSTier3Generic40.json @@ -0,0 +1,241 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1005.4044363423512, + 604.3279329695392, + 1107.4751024599966, + 663.9413521894795, + 1326.5813405050385, + 825.2248257097946, + 1648.9067653109505, + 1304.9955437009912 + ], + "input_power": [ + 256.89159440000003, + 473.76575759999986, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.3888888888888888, + "volume": 0.136653301 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier3Generic50.json b/examples/AWHSTier3Generic50.json new file mode 100644 index 0000000..f9b1305 --- /dev/null +++ b/examples/AWHSTier3Generic50.json @@ -0,0 +1,241 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1005.4044363423512, + 604.3279329695392, + 1107.4751024599966, + 663.9413521894795, + 1326.5813405050385, + 825.2248257097946, + 1648.9067653109505, + 1304.9955437009912 + ], + "input_power": [ + 256.89159440000003, + 473.76575759999986, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8055555555555556, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier3Generic65.json b/examples/AWHSTier3Generic65.json new file mode 100644 index 0000000..05a5e65 --- /dev/null +++ b/examples/AWHSTier3Generic65.json @@ -0,0 +1,241 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1005.4044363423512, + 604.3279329695392, + 1107.4751024599966, + 663.9413521894795, + 1326.5813405050385, + 825.2248257097946, + 1648.9067653109505, + 1304.9955437009912 + ], + "input_power": [ + 256.89159440000003, + 473.76575759999986, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.111111111111111, + "volume": 0.24226624000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier3Generic80.json b/examples/AWHSTier3Generic80.json new file mode 100644 index 0000000..eece2ce --- /dev/null +++ b/examples/AWHSTier3Generic80.json @@ -0,0 +1,241 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1005.4044363423512, + 604.3279329695392, + 1107.4751024599966, + 663.9413521894795, + 1326.5813405050385, + 825.2248257097946, + 1648.9067653109505, + 1304.9955437009912 + ], + "input_power": [ + 256.89159440000003, + 473.76575759999986, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.7777777777777777, + "volume": 0.285419914 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier4Generic40.json b/examples/AWHSTier4Generic40.json new file mode 100644 index 0000000..e8ff8ca --- /dev/null +++ b/examples/AWHSTier4Generic40.json @@ -0,0 +1,228 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.666666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 932.9766981507915, + 604.7068300310204, + 1155.944988, + 721.4687000000005, + 1449.9744035200001, + 891.4352880000008, + 2289.9235307199997, + 1489.3777080000023 + ], + "input_power": [ + 199.44102857142857, + 458.9994285714284, + 197.78, + 481.29999999999984, + 195.54399999999998, + 511.31999999999977, + 188.83599999999993, + 601.3799999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.3888888888888888, + "volume": 0.13627476000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier4Generic50.json b/examples/AWHSTier4Generic50.json new file mode 100644 index 0000000..036cae0 --- /dev/null +++ b/examples/AWHSTier4Generic50.json @@ -0,0 +1,228 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.666666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 932.9766981507915, + 604.7068300310204, + 1155.944988, + 721.4687000000005, + 1449.9744035200001, + 891.4352880000008, + 2289.9235307199997, + 1489.3777080000023 + ], + "input_power": [ + 199.44102857142857, + 458.9994285714284, + 197.78, + 481.29999999999984, + 195.54399999999998, + 511.31999999999977, + 188.83599999999993, + 601.3799999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8055555555555556, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier4Generic65.json b/examples/AWHSTier4Generic65.json new file mode 100644 index 0000000..bdbfff1 --- /dev/null +++ b/examples/AWHSTier4Generic65.json @@ -0,0 +1,228 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.666666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 932.9766981507915, + 604.7068300310204, + 1155.944988, + 721.4687000000005, + 1449.9744035200001, + 891.4352880000008, + 2289.9235307199997, + 1489.3777080000023 + ], + "input_power": [ + 199.44102857142857, + 458.9994285714284, + 197.78, + 481.29999999999984, + 195.54399999999998, + 511.31999999999977, + 188.83599999999993, + 601.3799999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.111111111111111, + "volume": 0.24226624000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AWHSTier4Generic80.json b/examples/AWHSTier4Generic80.json new file mode 100644 index 0000000..1c52ab0 --- /dev/null +++ b/examples/AWHSTier4Generic80.json @@ -0,0 +1,228 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.666666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.8722222222222, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 932.9766981507915, + 604.7068300310204, + 1155.944988, + 721.4687000000005, + 1449.9744035200001, + 891.4352880000008, + 2289.9235307199997, + 1489.3777080000023 + ], + "input_power": [ + 199.44102857142857, + 458.9994285714284, + 197.78, + 481.29999999999984, + 195.54399999999998, + 511.31999999999977, + 188.83599999999993, + 601.3799999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.7777777777777777, + "volume": 0.285419914 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/AquaThermAire.json b/examples/AquaThermAire.json new file mode 100644 index 0000000..2aea42e --- /dev/null +++ b/examples/AquaThermAire.json @@ -0,0 +1,124 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 1.0 + ], + "weight": [ + 1.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "SUBMERGED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 373.15, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 241.48333333333332, + 258.15, + 274.26111111111106, + 292.59444444444443, + 308.15, + 324.81666666666666 + ], + "heat_source_temperature": [ + 273.15, + 373.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + -82.60247810511325, + 4603.719267350296, + -155.4571584000002, + 8724.219609599997, + -237.2566287999998, + 13386.743067199995, + -377.1630080000003, + 21384.30995200001, + -681.9267055999998, + 38648.9082064, + -1052.1880885142853, + 59613.35647095516 + ], + "input_power": [ + -74.74482758620714, + 6381.668965517238, + -82.4000000000001, + 7081.599999999998, + -89.79999999999994, + 7758.2, + -98.24000000000002, + 8529.16, + -105.79999999999995, + 9182.2, + -113.8999999999999, + 9881.885714285718 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 317.0388888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 1.0 + ], + "weight": [ + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 7.777777777777778, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "heat_exchanger_effectiveness": 0.93, + "ua": 2.875, + "volume": 0.205926304 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 323.15, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/BWC2020_65.json b/examples/BWC2020_65.json new file mode 100644 index 0000000..bc66b02 --- /dev/null +++ b/examples/BWC2020_65.json @@ -0,0 +1,239 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 994.8304754323835, + 669.1590092466967, + 1175.9598211818447, + 800.6775706256853, + 1409.3742389324075, + 1025.7927775601206, + 1752.9687687620053, + 1709.3783029367285 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.111111111111111, + "volume": 0.24226624000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/BradfordWhiteAeroThermRE2H50.json b/examples/BradfordWhiteAeroThermRE2H50.json new file mode 100644 index 0000000..2fad606 --- /dev/null +++ b/examples/BradfordWhiteAeroThermRE2H50.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.5, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 981.937, + 598.5450000000005, + 1059.456, + 768.0000000000007, + 1182.0159999999998, + 1032.0000000000002, + 1505.9160000000002, + 1709.5000000000011 + ], + "input_power": [ + 195.8, + 509.39999999999986, + 198.4, + 511.9999999999999, + 202.4, + 515.9999999999999, + 212.4, + 525.9999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.88888888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 1.89925, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/BradfordWhiteAeroThermRE2H65.json b/examples/BradfordWhiteAeroThermRE2H65.json new file mode 100644 index 0000000..397af12 --- /dev/null +++ b/examples/BradfordWhiteAeroThermRE2H65.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.5, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 981.937, + 598.5450000000005, + 1059.456, + 768.0000000000007, + 1182.0159999999998, + 1032.0000000000002, + 1505.9160000000002, + 1709.5000000000011 + ], + "input_power": [ + 195.8, + 509.39999999999986, + 198.4, + 511.9999999999999, + 202.4, + 515.9999999999999, + 212.4, + 525.9999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.88888888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 1.8692222222222221, + "volume": 0.24226624000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/BradfordWhiteAeroThermRE2H80.json b/examples/BradfordWhiteAeroThermRE2H80.json new file mode 100644 index 0000000..cd51cae --- /dev/null +++ b/examples/BradfordWhiteAeroThermRE2H80.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.5, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 981.937, + 598.5450000000005, + 1059.456, + 768.0000000000007, + 1182.0159999999998, + 1032.0000000000002, + 1505.9160000000002, + 1709.5000000000011 + ], + "input_power": [ + 195.8, + 509.39999999999986, + 198.4, + 511.9999999999999, + 202.4, + 515.9999999999999, + 212.4, + 525.9999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 13.88888888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.0060277777777777, + "volume": 0.28390575 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/ColmacCxA_10_MP.json b/examples/ColmacCxA_10_MP.json new file mode 100644 index 0000000..5e4b59f --- /dev/null +++ b/examples/ColmacCxA_10_MP.json @@ -0,0 +1,2174 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.001135623, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 23112.316854103563, + 22975.25003665264, + 22848.5951660739, + 22733.17405093361, + 22629.526323582617, + 22537.909440156396, + 22458.298680575026, + 22390.38714854321, + 22333.585771550213, + 22287.02330086997, + 22249.546311560975, + 22219.719202466356, + 22195.824196213856, + 22175.861339215793, + 22157.54850166914, + 22138.32137755544, + 22115.33348464086, + 22085.456164476178, + 22045.278582396786, + 21991.107727522663, + 21918.968412758437, + 21824.60327479328, + 21703.472774101047, + 21550.75519494015, + 21361.346645353624, + 21129.86105716912, + 20850.630185998914, + 20517.70361123983, + 20124.848736073363, + 19665.550787465592, + 19133.01281616721, + 18520.1556967135, + 17819.618127424415, + 17023.756630404405, + 16124.645551542657, + 15114.077060512864, + 13983.561150773407, + 23152.527010290763, + 23014.449899984353, + 22886.852652746926, + 22770.553788091147, + 22666.089649314275, + 22573.714403498194, + 22493.400041509383, + 22424.83637799896, + 22367.431051402604, + 22320.30952394063, + 22282.315081617966, + 22252.008834224158, + 22227.66971533332, + 22207.294482304198, + 22188.597716280176, + 22169.01182218922, + 22145.687028743854, + 22115.491388441325, + 22075.01077756338, + 22020.548896176446, + 21948.127268131517, + 21853.48524106424, + 21732.079986394787, + 21579.086499328067, + 21389.397598853455, + 21157.62392774506, + 20878.0939525615, + 20544.853963646096, + 20151.668075126676, + 19692.018224915766, + 19159.10417471044, + 18545.84350999243, + 17844.87164002803, + 17048.541797868173, + 16148.9250403484, + 15137.810248088852, + 14006.704125494289, + 23515.672506838924, + 23368.482963383638, + 23232.386144090488, + 23108.170966989834, + 22996.34417389659, + 22897.130330410317, + 22810.471825915163, + 22736.02887357991, + 22673.179510357902, + 22621.01959698715, + 22578.36281799023, + 22543.740681674357, + 22515.402520131312, + 22491.315489237542, + 22469.164568654054, + 22446.352561826505, + 22420.00009598511, + 22386.94562214474, + 22343.74541510487, + 22286.673573449545, + 22211.72201954745, + 22114.600499551885, + 21990.73658340074, + 21835.27566481653, + 21643.08096130635, + 21408.733514161944, + 21126.53218845962, + 20790.49367306037, + 20394.35248060967, + 19931.560947537742, + 19395.289234059317, + 18778.425324173793, + 18073.575025665137, + 17273.06197010196, + 16368.927612837466, + 15352.931233009462, + 14216.549933540377, + 23881.076412106788, + 23724.738821944633, + 23580.109724617447, + 23447.948436673243, + 23328.7320984446, + 23222.655674048772, + 23129.631951387557, + 23049.29154214741, + 22980.982881799355, + 22923.772229599053, + 22876.443668586755, + 22837.49910558737, + 22805.15827121032, + 22777.358719849733, + 22751.755829684287, + 22725.722802677297, + 22696.350664576665, + 22660.44826491493, + 22614.542277009223, + 22554.877197961272, + 22477.415348657418, + 22377.836873768643, + 22251.539741750494, + 22093.63974484318, + 21898.97049907144, + 21662.0834442447, + 21377.24784395694, + 21038.450785586792, + 20639.397180297452, + 20173.50976303678, + 19633.929092537186, + 19013.51355131573, + 18304.839345674056, + 17500.200505698434, + 16591.60888525975, + 15570.794162013477, + 14429.20383739972, + 24248.740181402994, + 24083.218962027695, + 23930.02491173984, + 23789.8877456051, + 23663.255002473754, + 23550.292044980677, + 23450.882059545376, + 23364.626056371962, + 23290.842869449134, + 23228.569156550213, + 23176.55939923314, + 23133.285902840456, + 23096.938796499308, + 23065.426033121435, + 23036.37338940323, + 23007.124465825644, + 22974.740686654277, + 22936.00129993932, + 22887.403377515573, + 22825.161815002433, + 22745.20933180394, + 22643.1964711087, + 22514.49159988997, + 22354.180908905593, + 22157.068412698005, + 21917.675949594286, + 21630.243181706104, + 21288.72759492975, + 20886.80449894608, + 20417.867027220636, + 19875.026137003493, + 19251.110609329375, + 18538.66704901762, + 17729.95988467214, + 16816.971368681498, + 15791.401577218845, + 14644.66841024194, + 24618.66523155883, + 24443.924831515804, + 24282.133184392333, + 24133.99040377178, + 23999.91442702208, + 23880.041015295785, + 23774.223753530077, + 23682.034050446713, + 23602.761138552094, + 23535.412074137188, + 23478.71173727761, + 23431.102831833574, + 23390.74588544988, + 23355.519249555968, + 23323.01909936588, + 23290.55943387825, + 23255.172075876326, + 23213.606671927984, + 23162.3306923857, + 23097.52943138653, + 23015.106006852177, + 22910.681360488947, + 22779.59425778772, + 22616.901288024044, + 22417.376864258025, + 22175.513223334387, + 21885.52042588249, + 21541.32635631628, + 21136.576722834296, + 20664.635057419742, + 20118.582715840374, + 19491.218877648564, + 18775.060546181336, + 17962.34254856027, + 17045.0175356916, + 16014.755982266137, + 14862.946186759318, + 24990.852940928275, + 24806.857839814616, + 24636.435983032294, + 24480.25788268234, + 24338.71187465034, + 24211.904118606548, + 24099.658598005786, + 24001.517120087505, + 23916.73931587574, + 23844.30264017917, + 23782.902371591055, + 23730.95161248929, + 23686.581289036345, + 23647.640151179323, + 23611.694772649924, + 23576.029550964482, + 23537.646707423894, + 23493.266287113704, + 23439.326158904056, + 23371.982015449692, + 23287.10737318999, + 23180.293572348884, + 23046.849776934978, + 22881.802974741444, + 22679.897977346074, + 22435.597420111273, + 22143.081762184076, + 21796.24928649605, + 21388.716099763475, + 20913.816132487165, + 20364.601138952574, + 19733.84069722974, + 19014.022209173367, + 18197.350900422673, + 17275.749820401597, + 16240.859842318589, + 15084.039663166777, + 25157.05456664964, + 24968.93342673598, + 24794.664113759703, + 24634.903979002796, + 24490.02819753181, + 24360.129768197927, + 24245.019513636955, + 24144.226080269287, + 24056.995938299922, + 23982.29338171849, + 23918.800528299198, + 23864.917319600907, + 23818.761520967044, + 23778.168721525664, + 23740.692334189436, + 23703.603595655626, + 23663.891566406095, + 23618.263130707357, + 23563.142996610495, + 23494.673695951227, + 23408.715584349855, + 23300.84684121131, + 23166.363469725107, + 23000.279296865418, + 22797.32597339095, + 22551.952973845106, + 22258.327596555828, + 21910.334963635705, + 21501.5780209819, + 21025.377538276225, + 20474.77210898507, + 19842.51815035946, + 19121.089903435026, + 18302.67943303195, + 17379.196627755133, + 16342.269199993973, + 15183.242685922562, + 25365.3046493879, + 25172.019357852416, + 24992.934709639696, + 24828.691615368432, + 24679.648809441907, + 24545.882850048012, + 24427.188119159247, + 24323.076822532756, + 24232.778989710223, + 24155.242474018003, + 24089.132952567023, + 24032.833926252843, + 23984.446719755608, + 23941.790481540094, + 23902.402183855676, + 23863.536622736337, + 23822.16641800066, + 23774.98201325185, + 23718.391675877734, + 23648.52149705071, + 23561.215391727834, + 23452.035098650696, + 23316.26018034559, + 23148.88802312335, + 22944.63383707943, + 22697.930656093908, + 22402.929337831494, + 22053.49856374143, + 21643.22483905765, + 21165.412492798634, + 20613.083677767532, + 19978.978370552035, + 19255.554371524515, + 18434.98730484186, + 17509.17061844568, + 16469.715584062098, + 15307.951297201915, + 25742.021658336966, + 25539.410718080144, + 25351.630727717165, + 25179.292996384396, + 25022.726657002786, + 24881.978666277893, + 24756.81380469989, + 24646.714676543586, + 24550.881709868347, + 24468.23315651818, + 24397.40509212169, + 24336.751416092113, + 24284.343851627254, + 24237.97194570956, + 24195.143069106092, + 24153.082416368477, + 24108.73300583297, + 24058.75567962048, + 23999.52910363646, + 23927.149767571012, + 23837.431984898827, + 23725.907892879215, + 23587.827452556074, + 23418.15844875797, + 23211.586490097983, + 22962.51500897389, + 22665.065261568045, + 22313.076327847382, + 21900.105111563487, + 21419.42634025253, + 20864.032565235295, + 20226.63416161719, + 19499.659328288217, + 18675.25408792296, + 17745.282286980688, + 16701.325595705195, + 15534.683508124945, + 26121.005230697385, + 25909.033214471412, + 25712.525362290016, + 25532.063381807227, + 25367.94680446167, + 25220.19298547657, + 25088.537103859784, + 24972.432162403762, + 24871.04898768556, + 24783.276230066855, + 24707.720363693912, + 24642.70568649764, + 24586.27432019352, + 24536.186210281656, + 24489.91912604679, + 24444.668660558214, + 24397.348230669864, + 24344.589077020297, + 24282.740264032647, + 24207.868679914693, + 24115.759036658786, + 24001.913870041903, + 23861.553539625627, + 23689.616228756167, + 23480.7579445643, + 23229.35251796547, + 22929.491603659677, + 22574.984680131554, + 22159.359049650335, + 21675.85983826987, + 21117.449995828614, + 20476.81029594964, + 19746.339336040615, + 18918.153537293798, + 17984.087144686135, + 16935.692226979078, + 15764.23867671877, + 26502.256590913694, + 26280.88810252246, + 26075.619899906178, + 25887.004089236554, + 25715.310600469893, + 25560.52718734708, + 25422.35942739364, + 25300.230721919695, + 25193.28229601997, + 25100.37319857382, + 25020.08030224517, + 24950.698303482608, + 24890.239722519273, + 24836.43490337295, + 24786.732013846035, + 24738.297045525513, + 24688.013813782967, + 24632.48395777464, + 24568.026940441327, + 24490.68004850847, + 24396.19839248611, + 24280.05490666888, + 24137.44034913603, + 23963.26330175145, + 23752.150170163575, + 23498.44518380552, + 23196.210395894974, + 22839.225683434215, + 22420.988747210155, + 21934.71511179431, + 21373.33812554282, + 20729.508960596413, + 19995.596612880432, + 19163.687902104804, + 18225.58747176414, + 17172.81778913757, + 15996.619145288902, + 26885.7769249531, + 26654.97659925217, + 26440.915588636224, + 26244.116397794653, + 26064.819355201405, + 25902.982613115066, + 25758.2821475788, + 25630.11175842043, + 25517.58306925232, + 25419.52552747151, + 25334.4864042596, + 25260.73079458284, + 25196.241617192038, + 25138.719614622652, + 25085.58335319474, + 25033.969223012962, + 24980.731437966577, + 24922.4420357295, + 24855.390877760194, + 24775.585649301756, + 24678.751859381886, + 24560.33284081292, + 24415.489750191766, + 24239.10156789999, + 24025.765098103686, + 23769.794968753635, + 23465.223631585184, + 23105.80136211832, + 22684.996259657593, + 22195.99424729222, + 21631.699071895975, + 20984.732304127258, + 20247.433338429102, + 19411.8593930291, + 18469.785509939516, + 17412.70455495718, + 16231.827217663547, + 27271.56738030546, + 27031.299883202104, + 26808.413638073427, + 26603.401548126472, + 26416.474340352877, + 26247.56056552887, + 26096.306598215324, + 25962.076636757694, + 25843.95270328604, + 25740.734643715063, + 25650.94012774402, + 25572.80464885685, + 25504.28152432202, + 25443.041895192666, + 25386.474726306507, + 25331.686806285874, + 25275.502747537703, + 25214.464986253555, + 25144.833782409594, + 25062.58721976657, + 24963.421205869865, + 24842.74947204947, + 24695.70357341997, + 24517.132888880602, + 24301.60462111512, + 24043.40379659199, + 23736.53326556422, + 23374.713702069468, + 22951.38360392995, + 22459.69929275255, + 21892.534913928717, + 21242.48243663454, + 20501.851653830676, + 19662.670182262435, + 18716.683462459725, + 17655.354758737052, + 16469.865159193534, + 27659.629065983274, + 27409.85909443645, + 27178.115219333642, + 26964.860742399578, + 26770.276789143543, + 26594.262308859452, + 26436.43407462584, + 26296.126683305833, + 26172.392555547147, + 26064.00193578218, + 25969.442892227835, + 25886.921316885735, + 25814.360925542016, + 25749.403257767473, + 25689.407676917497, + 25631.451370132105, + 25572.329348335887, + 25508.55444623807, + 25436.357322332507, + 25351.686458897595, + 25250.208161996394, + 25127.306561476584, + 24978.083610970385, + 24797.35908789473, + 24579.670593451036, + 24319.273552625422, + 24010.141214188592, + 23645.964650695863, + 23220.15275848711, + 22725.832257686914, + 22155.847692204366, + 21502.76142973323, + 20758.853661751848, + 19916.122403523186, + 18966.283494094823, + 17900.77059629894, + 16710.735196752317, + 28049.9630525217, + 27790.655334542065, + 27550.021465055444, + 27328.495144304234, + 27126.227896315373, + 26943.089068900448, + 26778.66583365569, + 26632.263185961863, + 26502.90394498438, + 26389.328753673282, + 26289.99607876318, + 26203.08221077332, + 26126.481264007536, + 26057.80517655428, + 25994.38371028664, + 25933.264450862254, + 25871.21280772341, + 25804.71201409704, + 25729.963126994597, + 25642.885027212178, + 25539.114419330544, + 25414.00583171498, + 25262.631616515457, + 25079.7819496665, + 24859.96483088725, + 24597.40608368146, + 24286.049355337538, + 23919.556116928416, + 23491.305663311698, + 22994.39511312961, + 22421.63940880892, + 21765.571316561036, + 21018.441426382007, + 20172.218152052443, + 19218.5877311376, + 18148.954224987323, + 16954.43951873607, + 28442.570371978545, + 28173.689666628456, + 27924.133469400018, + 27694.305879053303, + 27484.328818132915, + 27294.042032968136, + 27123.003093672836, + 26970.487394145464, + 26835.48815206909, + 26716.716408911438, + 26612.601029924776, + 26521.288704146024, + 26440.6439443967, + 26368.249087282915, + 26301.40429319541, + 26237.127546309526, + 26172.154654585203, + 26102.93924976703, + 26025.652787384144, + 25936.184546750337, + 25830.141630963986, + 25702.848966908085, + 25549.349305250253, + 25364.40322044269, + 25142.489110722217, + 24877.803198110254, + 24564.259528412877, + 24195.48997122069, + 23764.844219908955, + 23265.389791637564, + 22689.912027350983, + 22030.914091778268, + 21280.616973433152, + 20430.959484613893, + 19473.59826140343, + 18399.907763669282, + 17200.98027506357, + 28837.452017934243, + 28558.96311532775, + 28300.452288051194, + 28062.29403338232, + 27844.58067238343, + 27647.12234990143, + 27469.44703456789, + 27310.800518798922, + 27170.146418795262, + 27046.166174542315, + 26937.25904981001, + 26841.542132152932, + 26756.850332910282, + 26680.736387205834, + 26610.47085394799, + 26543.04211582978, + 26475.156379328797, + 26403.237674707285, + 26323.42785601209, + 26231.586601074654, + 26123.291411511032, + 25993.83761272187, + 25838.23835389247, + 25651.224607992688, + 25427.24517177703, + 25160.46666578459, + 24844.773534339103, + 24473.768045548837, + 24040.770291306733, + 23538.81818729035, + 22960.667472961817, + 22298.791711567872, + 21545.38229013992, + 20692.348419493872, + 19731.317134230365, + 18653.633292734536, + 17450.359577176227, + 29234.60894549194, + 28946.476666794755, + 28678.97893821548, + 28432.460655549497, + 28206.98453837677, + 28002.331130061917, + 27817.99879775412, + 27653.20373238721, + 27506.879948679583, + 27377.679285134298, + 27263.971404038944, + 27163.843791465802, + 27075.101757271736, + 26995.268435098173, + 26921.58478237122, + 26851.009580301536, + 26780.219433884402, + 26705.60877189975, + 26623.289846912056, + 26529.092735270468, + 26418.56533710868, + 26286.97337634505, + 26129.300400682496, + 25940.247781608592, + 25714.234714395476, + 25445.398218099945, + 25127.593135563355, + 24754.39213341172, + 24319.08570205559, + 23814.682155690214, + 23233.907632295362, + 22569.206093635494, + 21812.739325259645, + 20956.386936501396, + 19991.746360479086, + 18910.1328540955, + 17702.579498038147, + 29634.042071277367, + 29336.23126870695, + 29059.714398622018, + 28804.80675533566, + 28571.541456945513, + 28359.669445333817, + 28168.659486167486, + 27997.69816889797, + 27845.68990676135, + 27711.256936778365, + 27592.73931975427, + 27488.194940279023, + 27395.399506727124, + 27311.84655125773, + 27234.74742981455, + 27161.031322125957, + 27087.345231704898, + 27010.053985848946, + 26925.240235640296, + 26828.7044559457, + 26715.964945416585, + 26582.25782648894, + 26422.53704538336, + 26231.474372105105, + 26003.45940044397, + 25732.59954797441, + 25412.72005605549, + 25037.363989830825, + 24599.79223822871, + 24092.983513962005, + 23509.634353528207, + 22842.15911720939, + 22082.689989072296, + 21223.076976968165, + 20254.887912532988, + 19169.40845118724, + 17957.642072136096, + 30035.752273438913, + 29728.227830264383, + 29442.659609522587, + 29179.33330404428, + 28938.25243044478, + 28719.13832912399, + 28521.430164266494, + 28344.284923841413, + 28186.577419602494, + 28046.900287088156, + 27923.563985621324, + 27814.596798309612, + 27717.74483204519, + 27630.472017504882, + 27549.960109150088, + 27473.10868522685, + 27396.535147765753, + 27316.574722582078, + 27229.280459275655, + 27130.423231230947, + 27015.49173561699, + 26879.692493387505, + 26717.949849280718, + 26524.905971819586, + 26294.920853311545, + 26022.072309848743, + 25700.15598130788, + 25322.685331350305, + 24882.891647421908, + 24373.724040753277, + 23787.849446359545, + 23117.65262304048, + 22355.236153380447, + 21492.420443748422, + 20520.74372429801, + 19431.4620489674, + 18215.54929547941, + 30439.74039164768, + 30122.46722218984, + 29827.815472691647, + 29556.04123450153, + 29307.118422752446, + 29080.738776361988, + 28876.31185803241, + 28692.965054250497, + 28529.543575287673, + 28384.61045520001, + 28256.446551828107, + 28143.050546797273, + 28042.13894551733, + 27951.146077182766, + 27867.224094772646, + 27787.242975050693, + 27707.790518565173, + 27625.172349649016, + 27535.411916419725, + 27434.250490779443, + 27317.14716841488, + 27179.278868797384, + 27015.540335182915, + 26820.544134612064, + 26588.620657909927, + 26313.818119686344, + 25989.902558335667, + 25610.357836036936, + 25168.385638753694, + 24656.905476234217, + 24068.554682011272, + 23395.688413402328, + 22630.379651509407, + 21764.41920121916, + 20789.315691202857, + 19696.295573916363, + 18476.30312560016, + 30846.00722709734, + 30518.95027672872, + 30215.182851426307, + 29934.931441056175, + 29678.14035926897, + 29444.471743499984, + 29233.30555496909, + 29043.739578680772, + 28874.589423424113, + 28724.38852177286, + 28591.388130085285, + 28473.557328504354, + 28368.58302095756, + 28273.86993515707, + 28186.540622599634, + 28103.435458566604, + 28021.112642123942, + 27935.848196122246, + 27843.6359671967, + 27740.187625767077, + 27620.932666037803, + 27481.01840599787, + 27315.30998742092, + 27118.390375865187, + 26884.560360673484, + 26607.838554973274, + 26281.96139567661, + 25900.383143480172, + 25456.275882865204, + 24942.529522097637, + 24351.751793227904, + 23676.26825209115, + 22908.12227830707, + 22039.075075279972, + 21060.605670198816, + 19963.910914037122, + 18739.90548155303, + 31254.553542504273, + 30917.677787649074, + 30604.762570546296, + 30316.00477957967, + 30051.319126917526, + 29810.3381485128, + 29592.412204103068, + 29396.609477210455, + 29221.715975141742, + 29066.235528988313, + 28928.38979362613, + 28806.11824771583, + 28697.078193702582, + 28598.644757816204, + 28507.910890071114, + 28421.68736426635, + 28336.50277798554, + 28248.60355259695, + 28153.953933253426, + 28048.23598889242, + 27926.849612236012, + 27784.912519790898, + 27617.260251848358, + 27418.446172484295, + 27182.741469559212, + 26904.135154718242, + 26576.33406339109, + 26192.762854792112, + 25746.564011920225, + 25230.59784155901, + 24637.442474276628, + 23959.393864425823, + 23188.465790144004, + 22316.38985335314, + 21334.615479759832, + 20234.309918855302, + 19006.358243915358, + 31665.380062107484, + 31318.65051024161, + 30996.555416394018, + 30699.262067466098, + 30426.655574143864, + 30178.338870897926, + 29953.63271598351, + 29751.57569144042, + 29570.924203093102, + 29410.152480550623, + 29267.452577206623, + 29140.734370239366, + 29027.625560611716, + 28925.47167307117, + 28831.336056149827, + 28741.99988216435, + 28653.962147216076, + 28563.439671190914, + 28466.36709775939, + 28358.396894376652, + 28234.899352282406, + 28090.96258650104, + 27921.392535841496, + 27720.712962897367, + 27483.165454046804, + 27202.70941945261, + 26873.02209306217, + 26487.498532607497, + 26039.251619605195, + 25521.112059356525, + 24925.628380947277, + 24245.066937247877, + 23471.411904913424, + 22596.36528438354, + 21611.346899882512, + 20507.49439941922, + 19275.66325478714, + 31711.168273321637, + 31363.341695559946, + 31040.224635386345, + 30741.981090646037, + 30468.49288296879, + 30219.359657768993, + 29993.898884245646, + 29791.14585538235, + 29609.85368794731, + 29448.493322493363, + 29305.25352335793, + 29178.04087866306, + 29064.479800315417, + 28961.912524006213, + 28867.39910921135, + 28777.7174391913, + 28689.363220991145, + 28598.54998544058, + 28501.209087153908, + 28392.989704530024, + 28269.258839752467, + 28125.101318789348, + 27955.319791393424, + 27754.434731102036, + 27516.684435237134, + 27236.025024905273, + 26906.130444997652, + 26520.392464190034, + 26071.92067494279, + 25553.54249350096, + 24957.803159894138, + 24276.965737936524, + 23503.011115226964, + 22627.638003148873, + 21642.262936870316, + 20538.020275343944, + 19305.762201307014, + 55177.16816114453, + 54292.53259985358, + 53470.02588666013, + 52708.33194529548, + 52005.852523275535, + 51360.707191900765, + 50770.733346256326, + 50233.48620521191, + 49746.23881142184, + 49305.98203132508, + 48909.42455514518, + 48552.992896890275, + 48232.83139435313, + 47944.802209111134, + 47684.48532652628, + 47447.178555745144, + 47227.89752969888, + 47021.3757051034, + 46822.06436245906, + 46624.13260605088, + 46421.467363948526, + 46207.673388006195, + 45976.0732538628, + 45719.70736094178, + 45431.3339324512, + 45103.42901538372, + 44728.18648051667, + 44297.51802241194, + 43803.053159416006, + 43236.13923366003, + 42587.84141105971, + 41848.94268131534, + 41009.94385791194, + 40061.063578118985, + 38992.238302990736, + 37793.122317365865, + 36453.08772986776 + ], + "input_power": [ + 7961.358657300001, + 7890.171701685187, + 7832.38862541852, + 7788.009428500001, + 7757.0341109296305, + 7739.462672707408, + 7735.295113833334, + 7744.531434307408, + 7767.171634129631, + 7803.215713300001, + 7852.663671818521, + 7915.515509685186, + 7991.771226900002, + 8081.4308234629625, + 8184.494299374077, + 8300.961654633335, + 8430.832889240744, + 8574.1080031963, + 8730.7869965, + 8900.869869151857, + 9084.356621151854, + 9281.2472525, + 9491.5417631963, + 9715.240153240742, + 9952.34242263333, + 10202.84857137408, + 10466.758599462963, + 10744.0725069, + 11034.790293685192, + 11338.91195981852, + 11656.437505299997, + 11987.366930129632, + 12331.700234307407, + 12689.437417833342, + 13060.578480707412, + 13445.12342292963, + 13843.072244499994, + 7962.478449237002, + 7891.282604733298, + 7833.490639577742, + 7789.102553770335, + 7758.118347311076, + 7740.538020199964, + 7736.361572437, + 7745.589004022187, + 7768.22031495552, + 7804.255505237, + 7853.694574866631, + 7916.537523844409, + 7992.784352170335, + 8082.435059844407, + 8185.48964686663, + 8301.948113237, + 8431.810458955522, + 8575.076684022188, + 8731.746788437, + 8901.820772199966, + 9085.298635311075, + 9282.180377770334, + 9492.465999577744, + 9716.155500733299, + 9953.248881236997, + 10203.746141088857, + 10467.647280288851, + 10744.952298837, + 11035.6611967333, + 11339.773973977744, + 11657.290630570329, + 11988.211166511079, + 12332.53558179996, + 12690.263876437008, + 13061.39605042219, + 13445.93210375552, + 13843.872036436995, + 7972.537826700001, + 7901.261982196298, + 7843.3900170407405, + 7798.921931233335, + 7767.857724774074, + 7750.197397662964, + 7745.940949899999, + 7755.088381485185, + 7777.639692418518, + 7813.594882699999, + 7862.953952329631, + 7925.716901307409, + 8001.883729633333, + 8091.454437307407, + 8194.42902432963, + 8310.807490700001, + 8440.589836418521, + 8583.776061485185, + 8740.366165899999, + 8910.360149662965, + 9093.758012774075, + 9290.559755233331, + 9500.765377040743, + 9724.374878196297, + 9961.388258699997, + 10211.805518551855, + 10475.626657751849, + 10752.8516763, + 11043.4805741963, + 11347.513351440743, + 11664.950008033327, + 11995.790543974075, + 12340.034959262959, + 12697.683253900006, + 13068.73542788519, + 13453.19148121852, + 13851.051413899993, + 7982.563454217001, + 7911.207609713298, + 7853.255644557741, + 7808.707558750336, + 7777.563352291073, + 7759.823025179964, + 7755.486577417001, + 7764.554009002186, + 7787.025319935519, + 7822.900510217001, + 7872.17957984663, + 7934.862528824408, + 8010.949357150333, + 8100.440064824406, + 8203.33465184663, + 8319.633118217, + 8449.33546393552, + 8592.441689002186, + 8748.951793417, + 8918.865777179966, + 9102.183640291076, + 9298.905382750332, + 9509.031004557744, + 9732.560505713298, + 9969.493886217, + 10219.831146068858, + 10483.572285268854, + 10760.717303816999, + 11051.2662017133, + 11355.218978957742, + 11672.57563555033, + 12003.336171491077, + 12347.500586779963, + 12705.068881417008, + 13076.041055402191, + 13460.417108735517, + 13858.197041416994, + 7992.555331788002, + 7921.119487284299, + 7863.087522128743, + 7818.459436321336, + 7787.235229862077, + 7769.414902750965, + 7764.998454988001, + 7773.985886573187, + 7796.37719750652, + 7832.172387788001, + 7881.371457417631, + 7943.9744063954095, + 8019.981234721336, + 8109.3919423954085, + 8212.206529417632, + 8328.424995788002, + 8458.047341506523, + 8601.073566573188, + 8757.503670988, + 8927.337654750967, + 9110.575517862077, + 9307.217260321333, + 9517.262882128744, + 9740.712383284299, + 9977.565763787998, + 10227.823023639858, + 10491.48416283985, + 10768.549181388002, + 11059.018079284302, + 11362.890856528744, + 11680.167513121329, + 12010.848049062079, + 12354.93246435096, + 12712.420758988008, + 13083.312932973191, + 13467.60898630652, + 13865.308918987994, + 8002.513459412999, + 7930.997614909297, + 7872.88564975374, + 7828.177563946333, + 7796.873357487074, + 7778.973030375962, + 7774.476582613, + 7783.384014198183, + 7805.695325131518, + 7841.410515413, + 7890.52958504263, + 7953.0525340204085, + 8028.979362346332, + 8118.310070020405, + 8221.044657042628, + 8337.183123413, + 8466.72546913152, + 8609.671694198183, + 8766.021798613, + 8935.775782375966, + 9118.933645487074, + 9315.495387946334, + 9525.461009753742, + 9748.830510909296, + 9985.603891412999, + 10235.781151264857, + 10499.36229046485, + 10776.347309013, + 11066.736206909301, + 11370.528984153741, + 11687.72564074633, + 12018.326176687078, + 12362.33059197596, + 12719.738886613008, + 13090.55106059819, + 13474.76711393152, + 13872.387046612994, + 8012.437837092001, + 7940.841992588297, + 7882.650027432741, + 7837.861941625336, + 7806.477735166075, + 7788.497408054964, + 7783.920960292001, + 7792.748391877185, + 7814.9797028105195, + 7850.614893092, + 7899.653962721631, + 7962.096911699409, + 8037.943740025334, + 8127.194447699408, + 8229.84903472163, + 8345.907501092, + 8475.369846810521, + 8618.236071877187, + 8774.506176292, + 8944.180160054966, + 9127.258023166074, + 9323.739765625334, + 9533.625387432745, + 9756.914888588299, + 9993.608269091997, + 10243.705528943856, + 10507.206668143852, + 10784.111686691998, + 11074.4205845883, + 11378.133361832743, + 11695.25001842533, + 12025.770554366078, + 12369.69496965496, + 12727.023264292007, + 13097.75543827719, + 13481.891491610522, + 13879.431424291994, + 8016.839377133351, + 7945.207964629649, + 7886.980431474091, + 7842.156777666686, + 7810.737003207426, + 7792.721108096314, + 7788.109092333351, + 7796.900955918537, + 7819.096698851869, + 7854.696321133351, + 7903.699822762981, + 7966.107203740759, + 8041.9184640666845, + 8131.133603740757, + 8233.752622762982, + 8349.775521133352, + 8479.202298851873, + 8622.032955918537, + 8778.26749233335, + 8947.905908096316, + 9130.948203207427, + 9327.394377666684, + 9537.244431474095, + 9760.49836462965, + 9997.156177133349, + 10247.217868985206, + 10510.683440185201, + 10787.552890733352, + 11077.826220629651, + 11381.503429874094, + 11698.58451846668, + 12029.069486407427, + 12372.958333696313, + 12730.251060333358, + 13100.947666318541, + 13485.04815165187, + 13882.552516333344, + 8022.328464825, + 7950.652620321298, + 7892.380655165743, + 7847.512569358335, + 7816.048362899076, + 7797.988035787965, + 7793.331588024999, + 7802.079019610185, + 7824.23033054352, + 7859.785520825001, + 7908.744590454632, + 7971.107539432411, + 8046.874367758333, + 8136.0450754324065, + 8238.619662454632, + 8354.598128825002, + 8483.980474543521, + 8626.766699610187, + 8782.956804025, + 8952.550787787966, + 9135.548650899076, + 9331.950393358331, + 9541.756015165744, + 9764.9655163213, + 10001.578896824998, + 10251.596156676856, + 10515.017295876853, + 10791.842314425, + 11082.071212321303, + 11385.703989565742, + 11702.74064615833, + 12033.18118209908, + 12377.025597387963, + 12734.273892025009, + 13104.926066010192, + 13488.982119343522, + 13886.442052024995, + 8032.185342612, + 7960.4294981082985, + 7902.0775329527405, + 7857.129447145334, + 7825.585240686075, + 7807.444913574964, + 7802.708465811999, + 7811.375897397185, + 7833.447208330519, + 7868.9223986120005, + 7917.8014682416315, + 7980.084417219409, + 8055.771245545332, + 8144.861953219406, + 8247.356540241632, + 8363.255006612, + 8492.55735233052, + 8635.263577397185, + 8791.373681812, + 8960.887665574965, + 9143.805528686074, + 9340.127271145331, + 9549.852892952742, + 9772.9823941083, + 10009.515774611998, + 10259.453034463855, + 10522.794173663853, + 10799.539192211998, + 11089.6880901083, + 11393.24086735274, + 11710.197523945328, + 12040.558059886076, + 12384.322475174962, + 12741.490769812008, + 13112.062943797191, + 13496.038997130521, + 13893.418929811995, + 8042.008470453, + 7970.172625949298, + 7911.740660793741, + 7866.7125749863335, + 7835.088368527075, + 7816.868041415963, + 7812.051593653, + 7820.639025238184, + 7842.630336171519, + 7878.025526453001, + 7926.824596082631, + 7989.0275450604095, + 8064.634373386333, + 8153.645081060406, + 8256.059668082631, + 8371.878134453, + 8501.10048017152, + 8643.726705238185, + 8799.756809653, + 8969.190793415966, + 9152.028656527076, + 9348.270398986333, + 9557.916020793744, + 9780.965521949298, + 10017.418902452999, + 10267.276162304857, + 10530.537301504852, + 10807.202320053, + 11097.271217949303, + 11400.743995193743, + 11717.62065178633, + 12047.901187727079, + 12391.585603015963, + 12748.673897653009, + 13119.16607163819, + 13503.06212497152, + 13900.362057652994, + 8051.797848348, + 7979.8820038443, + 7921.370038688742, + 7876.261952881335, + 7844.557746422076, + 7826.257419310965, + 7821.3609715480015, + 7829.868403133187, + 7851.77971406652, + 7887.094904348002, + 7935.8139739776325, + 7997.936922955411, + 8073.463751281334, + 8162.394458955408, + 8264.729045977632, + 8380.467512348001, + 8509.609858066522, + 8652.156083133188, + 8808.106187548, + 8977.460171310966, + 9160.218034422076, + 9356.379776881333, + 9565.945398688746, + 9788.914899844298, + 10025.288280347999, + 10275.065540199856, + 10538.246679399852, + 10814.831697948, + 11104.820595844301, + 11408.21337308874, + 11725.01002968133, + 12055.210565622077, + 12398.814980910962, + 12755.82327554801, + 13126.235449533191, + 13510.051502866521, + 13907.271435547993, + 8061.553476297, + 7989.557631793299, + 7930.965666637741, + 7885.777580830334, + 7853.993374371074, + 7835.613047259964, + 7830.636599497, + 7839.0640310821855, + 7860.8953420155185, + 7896.130532296999, + 7944.7696019266305, + 8006.812550904408, + 8082.259379230333, + 8171.110086904406, + 8273.36467392663, + 8389.023140296998, + 8518.085486015518, + 8660.551711082186, + 8816.421815497, + 8985.695799259967, + 9168.373662371076, + 9364.455404830333, + 9573.941026637744, + 9796.830527793298, + 10033.123908296999, + 10282.821168148856, + 10545.922307348852, + 10822.427325896997, + 11112.336223793302, + 11415.649001037742, + 11732.365657630333, + 12062.486193571076, + 12406.010608859964, + 12762.938903497006, + 13133.27107748219, + 13517.00713081552, + 13914.147063496992, + 8071.275354300001, + 7999.199509796299, + 7940.527544640741, + 7895.259458833334, + 7863.395252374075, + 7844.9349252629645, + 7839.878477500001, + 7848.225909085186, + 7869.97722001852, + 7905.1324103000015, + 7953.691479929632, + 8015.654428907411, + 8091.021257233333, + 8179.791964907407, + 8281.966551929632, + 8397.545018300001, + 8526.527364018522, + 8668.913589085187, + 8824.7036935, + 8993.897677262967, + 9176.495540374075, + 9372.497282833332, + 9581.902904640743, + 9804.7124057963, + 10040.925786299998, + 10290.543046151855, + 10553.564185351852, + 10829.989203899999, + 11119.818101796302, + 11423.050879040742, + 11739.68753563333, + 12069.72807157408, + 12413.172486862963, + 12770.020781500009, + 13140.27295548519, + 13523.92900881852, + 13920.988941499994, + 8080.9634823569995, + 8008.807637853298, + 7950.05567269774, + 7904.707586890334, + 7872.763380431074, + 7854.223053319963, + 7849.0866055569995, + 7857.354037142185, + 7879.025348075518, + 7914.100538357, + 7962.579607986629, + 8024.462556964409, + 8099.749385290333, + 8188.440092964406, + 8290.53467998663, + 8406.033146356998, + 8534.935492075521, + 8677.241717142186, + 8832.951821557, + 9002.065805319966, + 9184.583668431074, + 9380.505410890333, + 9589.831032697743, + 9812.560533853297, + 10048.693914356998, + 10298.231174208855, + 10561.172313408852, + 10837.517331956999, + 11127.2662298533, + 11430.419007097742, + 11746.97566369033, + 12076.936199631076, + 12420.30061491996, + 12777.068909557005, + 13147.241083542189, + 13530.81713687552, + 13927.797069556993, + 8090.617860468001, + 8018.382015964299, + 7959.550050808741, + 7914.121965001335, + 7882.097758542075, + 7863.477431430963, + 7858.260983668, + 7866.448415253186, + 7888.039726186518, + 7923.034916467999, + 7971.433986097631, + 8033.23693507541, + 8108.443763401335, + 8197.054471075407, + 8299.069058097632, + 8414.487524468, + 8543.309870186518, + 8685.536095253188, + 8841.166199668001, + 9010.200183430965, + 9192.638046542075, + 9388.479789001332, + 9597.725410808742, + 9820.374911964298, + 10056.428292468, + 10305.885552319856, + 10568.746691519853, + 10845.011710067998, + 11134.6806079643, + 11437.753385208742, + 11754.23004180133, + 12084.110577742078, + 12427.39499303096, + 12784.083287668007, + 13154.17546165319, + 13537.671514986521, + 13934.571447667993, + 8100.238488633, + 8027.922644129299, + 7969.01067897374, + 7923.502593166335, + 7891.398386707075, + 7872.698059595963, + 7867.401611832999, + 7875.509043418187, + 7897.020354351519, + 7931.935544633001, + 7980.254614262631, + 8041.977563240408, + 8117.104391566334, + 8205.635099240408, + 8307.56968626263, + 8422.908152633001, + 8551.65049835152, + 8693.796723418187, + 8849.346827832998, + 9018.300811595967, + 9200.658674707076, + 9396.420417166333, + 9605.586038973746, + 9828.155540129299, + 10064.128920633, + 10313.506180484856, + 10576.287319684856, + 10852.472338233, + 11142.0612361293, + 11445.054013373741, + 11761.45066996633, + 12091.251205907078, + 12434.455621195964, + 12791.06391583301, + 13161.07608981819, + 13544.492143151521, + 13941.312075832995, + 8109.825366851998, + 8037.429522348298, + 7978.43755719274, + 7932.849471385333, + 7900.665264926074, + 7881.8849378149625, + 7876.508490052, + 7884.535921637184, + 7905.967232570518, + 7940.802422851999, + 7989.0414924816305, + 8050.684441459408, + 8125.731269785332, + 8214.181977459406, + 8316.03656448163, + 8431.295030852001, + 8559.957376570519, + 8702.023601637185, + 8857.493706051997, + 9026.367689814966, + 9208.645552926075, + 9404.327295385332, + 9613.412917192743, + 9835.902418348298, + 10071.795798851997, + 10321.093058703855, + 10583.794197903853, + 10859.899216452, + 11149.4081143483, + 11452.320891592743, + 11768.637548185328, + 12098.358084126075, + 12441.48249941496, + 12798.010794052008, + 13167.942968037192, + 13551.279021370521, + 13948.018954051993, + 8119.378495125, + 8046.902650621299, + 7987.830685465741, + 7942.162599658335, + 7909.898393199075, + 7891.038066087964, + 7885.581618325, + 7893.529049910186, + 7914.880360843519, + 7949.635551125001, + 7997.794620754632, + 8059.357569732408, + 8134.324398058334, + 8222.695105732408, + 8324.469692754632, + 8439.648159125001, + 8568.230504843521, + 8710.216729910187, + 8865.606834324999, + 9034.400818087966, + 9216.598681199075, + 9412.200423658334, + 9621.206045465746, + 9843.615546621297, + 10079.428927124998, + 10328.646186976855, + 10591.267326176849, + 10867.292344725, + 11156.721242621301, + 11459.554019865745, + 11775.79067645833, + 12105.431212399077, + 12448.475627687963, + 12804.923922325006, + 13174.776096310192, + 13558.03214964352, + 13954.692082324995, + 8128.897873452001, + 8056.3420289483, + 7997.190063792741, + 7951.441977985336, + 7919.097771526077, + 7900.157444414965, + 7894.620996652002, + 7902.488428237187, + 7923.75973917052, + 7958.434929452002, + 8006.5139990816315, + 8067.99694805941, + 8142.883776385334, + 8231.17448405941, + 8332.869071081632, + 8447.967537452001, + 8576.469883170521, + 8718.376108237188, + 8873.686212652, + 9042.400196414967, + 9224.518059526075, + 9420.039801985335, + 9628.965423792743, + 9851.294924948299, + 10087.028305451999, + 10336.165565303856, + 10598.706704503853, + 10874.651723052, + 11164.000620948302, + 11466.753398192743, + 11782.910054785329, + 12112.470590726078, + 12455.435006014963, + 12811.803300652009, + 13181.575474637193, + 13564.75152797052, + 13961.331460651994, + 8138.383501832999, + 8065.747657329299, + 8006.515692173741, + 7960.687606366334, + 7928.263399907076, + 7909.243072795964, + 7903.626625033001, + 7911.414056618185, + 7932.605367551517, + 7967.200557832999, + 8015.199627462632, + 8076.602576440409, + 8151.409404766334, + 8239.620112440405, + 8341.23469946263, + 8456.253165833, + 8584.67551155152, + 8726.501736618186, + 8881.731841032999, + 9050.365824795967, + 9232.403687907075, + 9427.845430366333, + 9636.691052173743, + 9858.940553329297, + 10094.593933832999, + 10343.651193684856, + 10606.112332884852, + 10881.977351432997, + 11171.2462493293, + 11473.91902657374, + 11789.995683166328, + 12119.476219107077, + 12462.360634395962, + 12818.648929033006, + 13188.341103018189, + 13571.43715635152, + 13967.937089032994, + 8147.835380268001, + 8075.119535764299, + 8015.807570608739, + 7969.899484801335, + 7937.395278342076, + 7918.294951230963, + 7912.598503468002, + 7920.305935053186, + 7941.417245986519, + 7975.932436268001, + 8023.85150589763, + 8085.174454875409, + 8159.901283201334, + 8248.031990875408, + 8349.566577897629, + 8464.505044268, + 8592.847389986522, + 8734.593615053187, + 8889.743719467999, + 9058.297703230966, + 9240.255566342077, + 9435.617308801333, + 9644.382930608745, + 9866.5524317643, + 10102.125812268, + 10351.103072119857, + 10613.48421131985, + 10889.269229868, + 11178.458127764301, + 11481.050905008744, + 11797.04756160133, + 12126.448097542077, + 12469.252512830963, + 12825.460807468009, + 13195.07298145319, + 13578.08903478652, + 13974.508967467993, + 8157.253508756999, + 8084.457664253297, + 8025.0656990977395, + 7979.077613290334, + 7946.493406831073, + 7927.313079719963, + 7921.536631956999, + 7929.1640635421845, + 7950.195374475518, + 7984.630564757, + 8032.469634386631, + 8093.7125833644095, + 8168.359411690332, + 8256.410119364406, + 8357.86470638663, + 8472.723172757, + 8600.98551847552, + 8742.651743542185, + 8897.721847956998, + 9066.195831719964, + 9248.073694831075, + 9443.35543729033, + 9652.041059097743, + 9874.130560253296, + 10109.623940757, + 10358.521200608855, + 10620.822339808852, + 10896.527358356998, + 11185.6362562533, + 11488.14903349774, + 11804.065690090329, + 12133.386226031076, + 12476.110641319961, + 12832.238935957004, + 13201.77110994219, + 13584.707163275521, + 13981.047095956992, + 8166.6378873, + 8093.762042796298, + 8034.2900776407405, + 7988.221991833335, + 7955.557785374075, + 7936.297458262965, + 7930.441010500001, + 7937.988442085186, + 7958.93975301852, + 7993.2949433, + 8041.05401292963, + 8102.216961907409, + 8176.783790233333, + 8264.754497907408, + 8366.129084929631, + 8480.907551299999, + 8609.08989701852, + 8750.676122085186, + 8905.6662265, + 9074.060210262967, + 9255.858073374075, + 9451.059815833332, + 9659.665437640744, + 9881.674938796297, + 10117.088319299995, + 10365.905579151859, + 10628.12671835185, + 10903.751736899998, + 11192.780634796301, + 11495.213412040743, + 11811.05006863333, + 12140.290604574078, + 12482.93501986296, + 12838.983314500008, + 13208.435488485191, + 13591.29154181852, + 13987.551474499993, + 8175.988515897, + 8103.032671393297, + 8043.480706237741, + 7997.332620430334, + 7964.588413971074, + 7945.248086859964, + 7939.311639097, + 7946.779070682185, + 7967.650381615518, + 8001.925571896999, + 8049.604641526631, + 8110.68759050441, + 8185.174418830332, + 8273.065126504405, + 8374.359713526632, + 8489.058179897, + 8617.160525615522, + 8758.666750682187, + 8913.576855096999, + 9081.890838859968, + 9263.608701971074, + 9458.730444430334, + 9667.256066237744, + 9889.185567393299, + 10124.518947896999, + 10373.25620774886, + 10635.397346948852, + 10910.942365497, + 11199.891263393301, + 11502.244040637745, + 11818.00069723033, + 12147.161233171078, + 12489.725648459964, + 12845.693943097009, + 13215.066117082191, + 13597.842170415523, + 13994.022103096995, + 8177.025392129334, + 8104.060658729633, + 8044.499804678074, + 7998.342829974668, + 7965.589734619409, + 7946.240518612299, + 7940.295181953333, + 7947.75372464252, + 7968.616146679853, + 8002.882448065334, + 8050.552628798964, + 8111.626688880742, + 8186.104628310668, + 8273.98644708874, + 8375.272145214964, + 8489.961722689333, + 8618.055179511855, + 8759.55251568252, + 8914.453731201334, + 9082.7588260683, + 9264.467800283412, + 9459.580653846666, + 9668.097386758078, + 9890.017999017631, + 10125.342490625333, + 10374.070861581191, + 10636.203111885186, + 10911.739241537332, + 11200.679250537636, + 11503.023138886078, + 11818.770906582664, + 12147.922553627412, + 12490.478080020295, + 12846.437485761342, + 13215.800770850525, + 13598.567935287856, + 13994.738979073329, + 8601.338140299998, + 8524.373406907407, + 8460.812552862963, + 8410.655578166667, + 8373.90248281852, + 8350.553266818519, + 8340.607930166665, + 8344.066472862964, + 8360.928894907407, + 8391.1951963, + 8434.865377040742, + 8491.939437129631, + 8562.417376566666, + 8646.299195351849, + 8743.584893485187, + 8854.274470966668, + 8978.367927796296, + 9115.865263974074, + 9266.766479499998, + 9431.071574374077, + 9608.780548596298, + 9799.893402166665, + 10004.410135085187, + 10222.33074735185, + 10453.655238966667, + 10698.383609929631, + 10956.515860240741, + 11228.051989899997, + 11512.991998907411, + 11811.335887262961, + 12123.083654966664, + 12448.23530201852, + 12786.790828418514, + 13138.750234166673, + 13504.113519262968, + 13882.88068370741, + 14275.051727499993 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.426538638300477, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_10_SP.json b/examples/ColmacCxA_10_SP.json new file mode 100644 index 0000000..fbd1213 --- /dev/null +++ b/examples/ColmacCxA_10_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 21332.286672878072, + 21338.776193973645, + 21343.935509443203, + 21347.674869652026, + 21349.888121350235, + 21350.452707672746, + 21349.229668139324, + 21346.06363865455, + 21340.78285150784, + 21333.19913537344, + 21323.10791531041, + 21310.288212762636, + 21294.50264555884, + 21275.497427912556, + 21253.002370422164, + 21226.73088007086, + 21196.37996022665, + 21161.630210642397, + 21122.14582745578, + 21077.57460318928, + 21027.547926750245, + 20971.68078343081, + 20909.571754907964, + 20840.80301924351, + 20764.940350884084, + 20681.53312066114, + 20590.114295790954, + 20490.200439874654, + 20381.291712898168, + 20262.871871232262, + 20134.408267632512, + 19995.35185123935, + 19845.13716757801, + 19683.182358558555, + 19508.889162475898, + 19321.64291400974, + 19120.81254422464, + 21087.13075885867, + 21115.04248658405, + 21140.600353248206, + 21163.737069024413, + 21184.3689404708, + 21202.395870530265, + 21217.701358530576, + 21230.15250018432, + 21239.599987588892, + 21245.87810922655, + 21248.80474996433, + 21248.181391054135, + 21243.793110132676, + 21235.408581221476, + 21222.780074726914, + 21205.643457440197, + 21183.71819253731, + 21156.707339579127, + 21124.297554511304, + 21086.159089664332, + 21041.945793753544, + 20991.295111879095, + 20933.82808552594, + 20869.149352563898, + 20796.847147247598, + 20716.49330021649, + 20627.643238494842, + 20529.835985491787, + 20422.594161001234, + 20305.42398120195, + 20177.81525865753, + 20039.24140231637, + 19889.159417511717, + 19727.00990596163, + 19552.217065769008, + 19364.18869142156, + 19162.316173791838, + 21362.348396859248, + 21368.722024615603, + 21373.772599712025, + 21377.410331007908, + 21379.529023747407, + 21380.006079559556, + 21378.70249645819, + 21375.462868841973, + 21370.11538749439, + 21362.471839583777, + 21352.327608663283, + 21339.46167467085, + 21323.63661392931, + 21304.598599146262, + 21282.077399414182, + 21255.786380210335, + 21225.42250339681, + 21190.666327220562, + 21151.18200631333, + 21106.6172916917, + 21056.603530757075, + 21000.755667295703, + 20938.672241478635, + 20869.935389861756, + 20794.11084538578, + 20710.747937376254, + 20619.379591543533, + 20519.522329982814, + 20410.676271174118, + 20292.325129982302, + 20163.936217657, + 20024.960441832736, + 19874.832306528835, + 19712.969912149438, + 19538.774955483506, + 19351.632729704885, + 19150.912124372153, + 21115.684758317144, + 21143.467934694494, + 21168.903088066847, + 21191.92284533421, + 21212.443429781426, + 21230.364661078154, + 21245.56995527886, + 21257.926324822867, + 21267.284378534303, + 21273.47832162216, + 21276.325955680193, + 21275.628678687044, + 21271.17148500614, + 21262.722965385747, + 21250.035306958984, + 21232.844293243747, + 21210.869304142783, + 21183.813315943702, + 21151.362901318855, + 21113.18822932549, + 21068.943065405652, + 21018.264771386243, + 20960.774305478935, + 20896.076222280284, + 20823.758672771633, + 20743.393404319166, + 20654.53576067391, + 20556.72468197168, + 20449.482704733146, + 20332.3159618638, + 20204.71418265395, + 20066.150692778738, + 19916.082414298136, + 19753.949865656938, + 19579.177161684744, + 19391.172013596035, + 19189.325728990054, + 21633.998079096746, + 21639.32261401445, + 21643.38879988387, + 21646.106472011106, + 21647.36906208709, + 21647.053598187555, + 21645.020704773076, + 21641.114602689056, + 21635.16310916571, + 21626.977637818112, + 21616.35319864613, + 21603.06839803447, + 21586.885438752644, + 21567.550119955038, + 21544.79183718082, + 21518.323582354005, + 21487.841943783413, + 21453.02710616274, + 21413.542850570444, + 21369.036554469854, + 21319.139191709095, + 21263.46533252116, + 21201.61314352381, + 21133.16438771969, + 21057.684424496252, + 20974.722209625746, + 20883.810295265266, + 20784.464829956767, + 20676.185558626967, + 20558.455822587464, + 20430.742559534658, + 20292.496303549768, + 20143.151185098857, + 19982.124931032802, + 19808.818864587334, + 19622.617905382962, + 19422.890569425064, + 21373.79429479536, + 21400.416294381223, + 21424.743132991887, + 21446.706688067894, + 21466.222433434665, + 21483.189439302412, + 21497.490372266173, + 21508.991495305836, + 21517.54266778608, + 21522.977345456464, + 21525.112580451318, + 21523.749021289823, + 21518.670912875994, + 21509.64609649865, + 21496.426009831455, + 21478.745686932896, + 21456.323758246264, + 21428.86245059972, + 21396.04758720622, + 21357.548587663554, + 21313.018467954324, + 21262.093840445974, + 21204.394913890777, + 21139.52549342584, + 21067.072980573073, + 20986.60837323921, + 20897.686265715827, + 20799.844848679346, + 20692.605909190966, + 20575.47483069674, + 20447.940593027564, + 20309.475772399124, + 20159.53654141195, + 19997.562669051407, + 19822.977520687688, + 19635.18805807578, + 19433.584839355528, + 21907.618624531053, + 21911.88311842921, + 21914.95455534103, + 21916.74239701935, + 21917.139701601816, + 21916.02312361091, + 21913.252913953933, + 21908.67291992303, + 21902.110585195136, + 21893.376949832058, + 21882.266650280402, + 21868.557919371597, + 21852.01258632192, + 21832.37607673244, + 21809.377412589096, + 21782.729212262617, + 21752.127690508583, + 21717.252658467372, + 21677.767523664217, + 21633.319290009164, + 21583.538557797085, + 21528.03952370767, + 21466.419980805455, + 21398.26131853981, + 21323.12852274488, + 21240.570175639685, + 21150.118455828062, + 21051.289138298653, + 20943.581594424955, + 20826.47879196527, + 20699.44729506274, + 20561.937264245316, + 20413.382456425796, + 20253.2002249018, + 20080.791519355753, + 19895.540885854945, + 19696.816466851436, + 21633.92811142807, + 21659.381317447635, + 21682.59279966452, + 21703.493686059872, + 21721.99870099962, + 21738.00616523455, + 21751.397995900294, + 21762.039706517276, + 21769.780406990758, + 21774.452803610835, + 21775.873199052417, + 21773.841492375235, + 21768.141179023874, + 21758.53935082773, + 21744.78669600101, + 21726.61749914277, + 21703.749641236875, + 21675.884599652036, + 21642.70744814176, + 21603.886856844438, + 21559.075092283187, + 21507.90801736606, + 21450.00509138585, + 21384.969370020262, + 21312.387505331735, + 21231.8297457676, + 21142.849936159993, + 21044.98551772586, + 20937.757528067003, + 20820.670601170023, + 20693.212967406376, + 20554.856453532313, + 20405.056482688942, + 20243.25207440217, + 20068.865844582753, + 19881.30400552626, + 19679.956365913076, + 22183.211932671424, + 22186.40536181669, + 22188.471614487855, + 22189.319778884474, + 22188.842539590965, + 22186.916177576513, + 22183.400570195186, + 22178.139191185808, + 22170.959110672095, + 22161.670995162574, + 22150.069107550575, + 22135.93130711427, + 22119.01904951665, + 22099.07738680554, + 22075.83496741359, + 22049.00403615829, + 22018.2804342419, + 21983.34359925161, + 21943.85656515932, + 21899.46596232183, + 21849.80201748073, + 21794.47855376248, + 21733.092990678324, + 21665.226344124345, + 21590.443226381463, + 21508.291846115404, + 21418.304008376737, + 21319.99511460085, + 21212.864162607962, + 21096.39374660312, + 20970.050057176173, + 20833.282881301842, + 20685.525602339625, + 20526.19520003388, + 20354.692250513785, + 20170.400926293336, + 19972.688996271365, + 21896.088878015624, + 21920.365630510852, + 21942.454671518666, + 21962.286379560766, + 21979.77472954369, + 21994.817292758755, + 22007.295236882164, + 22017.07332597488, + 22023.999920482765, + 22027.90697723646, + 22028.610049451436, + 22025.908286727998, + 22019.58443505128, + 22009.404836791255, + 21995.119430702664, + 21976.461751925162, + 21953.148931983156, + 21924.881698785917, + 21891.34437662754, + 21852.204886186926, + 21807.114744527822, + 21755.709065098796, + 21697.606557733245, + 21632.409528649372, + 21559.70388045025, + 21479.059112123727, + 21390.028319042496, + 21292.148192964112, + 21184.939022030907, + 21067.904690770043, + 20940.532680093555, + 20802.29406729826, + 20652.643526065793, + 20491.019326462654, + 20316.843334940157, + 20129.521014334437, + 19928.441423866436, + 22460.779853745757, + 22462.891118852258, + 22463.94167644722, + 22463.840241176917, + 22462.479124072484, + 22459.734232549854, + 22455.4650704098, + 22449.514737837933, + 22441.709931404657, + 22431.860944065236, + 22419.761665159745, + 22405.189580413087, + 22387.90577193498, + 22367.654918219978, + 22344.165294147482, + 22317.148770981694, + 22286.30081637163, + 22251.30049435117, + 22211.81046533899, + 22167.476986138612, + 22117.929909938353, + 22062.782686311402, + 22001.632361215732, + 21934.05957699418, + 21859.628572374382, + 21777.8871824688, + 21688.36683877473, + 21590.582569174305, + 21484.03299793447, + 21368.200345706995, + 21242.550429528485, + 21106.53266282036, + 20959.580055388888, + 20801.10921342513, + 20630.520339505023, + 20447.19723258927, + 20250.507288023447, + 22160.279215077022, + 22183.371810906596, + 22204.331282706793, + 22223.087259539854, + 22239.552966852887, + 22253.62522647778, + 22265.18445663129, + 22274.09467191495, + 22280.203483315174, + 22283.342098203168, + 22283.325320334974, + 22279.95154985146, + 22273.002783278316, + 22262.24461352606, + 22247.426229890032, + 22228.280418050428, + 22204.52356007223, + 22175.85563440527, + 22141.96021588418, + 22102.504475728474, + 22057.139181542407, + 22005.49869731514, + 21947.200983420626, + 21881.847596617637, + 21809.023690049802, + 21728.298013245538, + 21639.2229121181, + 21541.3343289656, + 21434.151802470922, + 21317.17846770183, + 21189.901056110873, + 21051.78989553545, + 20902.298910197784, + 20740.86562070491, + 20566.91114404871, + 20379.840193605873, + 20179.041079137918, + 22740.32418870053, + 22741.34211492997, + 22741.3663910607, + 22740.305358185746, + 22738.050953782968, + 22734.47871171504, + 22729.447762229454, + 22722.800831958557, + 22714.364243919474, + 22703.947917514244, + 22691.345368529623, + 22676.33370913728, + 22658.67364789366, + 22638.10948974005, + 22614.369136002566, + 22587.164084392156, + 22556.189429004582, + 22521.12386032043, + 22481.629665205135, + 22437.352726908928, + 22387.922525066864, + 22332.95213569889, + 22272.038231209674, + 22204.761080388813, + 22130.684548410652, + 22049.356096834406, + 21960.306783604105, + 21863.0512630486, + 21757.08778588157, + 21641.89819920153, + 21516.947946491804, + 21381.686067620558, + 21235.54519884078, + 21077.941572790274, + 20908.2750184917, + 20725.9289613525, + 20530.270423164973, + 22426.501693849852, + 22448.40238668924, + 22468.22511810003, + 22485.898767685012, + 22501.335811431873, + 22514.432321713037, + 22525.06796728584, + 22533.1060132924, + 22538.39332125965, + 22540.760349099393, + 22540.02115110822, + 22535.973377967555, + 22528.398276743665, + 22517.060690887625, + 22501.709060235356, + 22482.07542100758, + 22457.875405809868, + 22428.80824363259, + 22394.556759850988, + 22354.787376225075, + 22309.15011089972, + 22257.27857840464, + 22198.78998965432, + 22133.285151948137, + 22060.348468970235, + 21979.547940789646, + 21890.435163860155, + 21792.545331020425, + 21685.397231493935, + 21568.493250888998, + 21441.31937119873, + 21303.34517080108, + 21154.023824458844, + 20992.792103319618, + 20819.070374915842, + 20632.262603164778, + 20431.756348368497, + 22865.24475503245, + 22865.772974399428, + 22865.337546365183, + 22863.846645940943, + 22861.192044522817, + 22857.249109891673, + 22851.87680621325, + 22844.917694038068, + 22836.197930301514, + 22825.527268323804, + 22812.699057809947, + 22797.490244849803, + 22779.661371918046, + 22758.95657787418, + 22735.10359796254, + 22707.81376381229, + 22676.78200343739, + 22641.68684123669, + 22602.19039799379, + 22557.938390877167, + 22508.5601334401, + 22453.66853562072, + 22392.860103741958, + 22325.714940511585, + 22251.796745022188, + 22170.652812751192, + 22081.81403556085, + 21984.794901698217, + 21879.0934957952, + 21764.191498868553, + 21639.55418831977, + 21504.630437935266, + 21358.85271788623, + 21201.637094728718, + 21032.38323140355, + 20850.474387236438, + 20655.277417937876, + 22545.51746062808, + 22566.88573448509, + 22586.200756904025, + 22603.39107427801, + 22618.368829385065, + 22631.029761387977, + 22641.253205834382, + 22648.902094656725, + 22653.82295617231, + 22655.845915083242, + 22654.784692476467, + 22650.43660582374, + 22642.58256898166, + 22630.98709219163, + 22615.398282079892, + 22595.547841657546, + 22571.151070320437, + 22541.906863849348, + 22507.497714409772, + 22467.589710552114, + 22421.832537211565, + 22369.859475708152, + 22311.287403746726, + 22245.716795416967, + 22172.731721193388, + 22091.899847935307, + 22002.77243888689, + 21904.884353677124, + 21797.75404831981, + 21680.8835752136, + 21553.75858314193, + 21415.84831727312, + 21266.605619160266, + 21105.466926741316, + 20931.852274339035, + 20745.165292661026, + 20544.793208799696, + 23021.846689200902, + 23021.760026162458, + 23020.747358888464, + 23018.71665491866, + 23015.559478177634, + 23011.150988974783, + 23005.34994400437, + 22997.99869634544, + 22988.92319546187, + 22977.932987202406, + 22964.82121380057, + 22949.36461387473, + 22931.323522428087, + 22910.441870848652, + 22886.44718690928, + 22859.050594767654, + 22827.946814966243, + 22792.814164432395, + 22753.314556478257, + 22709.093500800816, + 22659.780103481848, + 22604.987066988022, + 22544.31069017075, + 22477.330868266356, + 22403.61109289592, + 22322.69845206539, + 22234.12363016554, + 22137.400907971933, + 22032.028162644998, + 21917.486867729953, + 21793.242093156903, + 21658.742505240712, + 21513.42036668111, + 21356.69153656263, + 21187.955470354667, + 21006.5952199114, + 20811.977433471853, + 22694.758836290337, + 22715.45983663176, + 22734.138613288105, + 22750.723296402735, + 22765.125612503867, + 22777.240884504536, + 22786.948031702606, + 22794.109569780758, + 22798.571610806488, + 22800.163863232192, + 22798.699631894986, + 22793.975818016883, + 22785.77291920469, + 22773.85502945008, + 22757.969839129488, + 22737.848635004233, + 22713.206300220427, + 22683.74131430903, + 22649.13575318583, + 22609.055289151423, + 22563.149190891203, + 22511.05032347548, + 22452.37514835929, + 22386.72372338257, + 22313.67970277004, + 22232.810337131265, + 22143.666473460624, + 22045.782555137343, + 21938.676621925446, + 21821.850309973815, + 21694.788851816127, + 21556.96107637091, + 21407.819408941497, + 21246.79987121607, + 21073.32208126761, + 20886.789253553965, + 20686.588198917758, + 23305.349057630596, + 23304.146479381023, + 23302.086131209315, + 23299.075607101975, + 23295.006097430327, + 23289.75238895049, + 23283.172864803448, + 23275.109504515007, + 23265.387883995754, + 23253.817175541182, + 23240.19014783153, + 23224.283165931916, + 23205.85619129226, + 23184.652781747314, + 23160.400091516673, + 23132.808871204717, + 23101.5734678007, + 23066.37182467867, + 23026.865481597506, + 22982.699574700928, + 22933.50283651746, + 22878.887595960485, + 22818.44977832816, + 22751.76890530355, + 22678.40809495445, + 22597.914061733554, + 22509.81711647833, + 22413.631166411134, + 22308.853715139096, + 22194.96586265417, + 22071.432305333183, + 21937.701335937745, + 21793.204843614312, + 21637.358313894158, + 21469.560828693404, + 21289.195066312957, + 21095.627301438588, + 22965.05311507332, + 22984.54659022577, + 23002.074154579394, + 23017.563188818145, + 23030.924670010798, + 23042.053171610925, + 23050.82686345698, + 23057.107511772192, + 23060.740479164644, + 23061.554724627254, + 23059.36280353773, + 23053.960867658643, + 23045.128665137367, + 23032.629540506106, + 23016.210434681907, + 22995.60188496662, + 22970.518025046935, + 22940.65658499437, + 22905.698891265267, + 22865.309866700776, + 22819.138030526894, + 22766.81549835444, + 22707.957982179054, + 22642.164790381234, + 22569.01882772625, + 22488.086595364224, + 22398.918190830107, + 22301.047308043697, + 22193.991237309565, + 22077.250865317157, + 21950.31067514073, + 21812.638746239336, + 21663.686754456914, + 21502.889972022178, + 21329.667267548703, + 21143.42110603486, + 20943.537548863875, + 23590.83294709204, + 23588.50305213556, + 23585.38421002069, + 23581.383641180662, + 23576.39216243351, + 23570.284186982142, + 23562.917724414227, + 23554.134380702297, + 23543.75935820371, + 23531.601455660657, + 23517.453068200135, + 23501.090187333986, + 23482.272400958856, + 23460.742893356244, + 23436.228445192446, + 23408.43943351862, + 23377.06983177071, + 23341.797209769513, + 23302.28273372067, + 23258.17116621459, + 23209.090866226557, + 23154.653789116663, + 23094.455486629813, + 23028.075106895798, + 22955.07539442916, + 22875.00269012932, + 22787.38693128047, + 22691.741651551703, + 22587.56398099686, + 22474.33464605469, + 22351.51796954869, + 22218.561870687216, + 22074.897865063485, + 21919.94106465548, + 21753.090177826052, + 21573.72750932285, + 21381.218960278384, + 23237.386953592308, + 23255.665027681523, + 23272.03407900094, + 23286.420738775043, + 23298.735234613192, + 23308.87139050952, + 23316.70662684303, + 23322.10196037754, + 23324.902004261672, + 23324.934968028923, + 23322.01265759755, + 23315.930475270703, + 23306.4674197363, + 23293.386086067127, + 23276.43266572076, + 23255.33694653966, + 23229.812312751048, + 23199.555744967016, + 23164.24782018446, + 23123.552711785087, + 23077.118189535486, + 23024.575619587013, + 22965.539964475884, + 22899.609783123135, + 22826.36723083464, + 22745.37805930106, + 22656.191616597902, + 22558.34084718553, + 22451.34229190909, + 22334.696087998575, + 22207.885969068808, + 22070.379265119434, + 21921.626902534917, + 21761.063404084543, + 21588.10688892246, + 21402.15907258759, + 21202.60526700373, + 23878.299961406225, + 23874.831272694602, + 23870.64304803863, + 23865.642134318274, + 23859.71897479831, + 23852.747609128346, + 23844.58567334281, + 23835.074399860958, + 23824.038617486898, + 23811.286751409523, + 23796.610823202594, + 23779.78645082466, + 23760.572848619115, + 23738.71282731418, + 23713.932794022883, + 23685.94275224314, + 23654.436301857586, + 23619.09063913381, + 23579.566556724105, + 23535.508443665676, + 23486.544285380518, + 23432.285663675462, + 23372.327756742157, + 23306.249339157082, + 23233.612781881562, + 23153.964052261705, + 23066.832714028485, + 22971.731927297682, + 22868.158448569906, + 22755.59263073061, + 22633.498423050034, + 22501.32337118329, + 22358.4986171703, + 22204.438899435772, + 22038.542552789313, + 21860.191508425298, + 21668.751293922956, + 23511.76272595939, + 23528.817479927882, + 23544.020674298314, + 23557.298190835772, + 23568.55950769016, + 23577.697699396183, + 23584.589436873408, + 23589.094987426193, + 23591.058214743745, + 23590.306578900112, + 23586.65113635413, + 23579.88653994949, + 23569.79103891469, + 23556.126478863065, + 23538.638301792773, + 23517.055546086827, + 23491.090846512994, + 23460.440434223954, + 23424.78413675716, + 23383.785378034878, + 23337.091178364255, + 23284.332154437223, + 23225.122519330554, + 23159.06008250584, + 23085.726249809515, + 23004.68602347281, + 22915.48800211181, + 22817.664380727412, + 22710.73095070535, + 22594.187099816183, + 22467.51581221526, + 22330.183668442827, + 22181.640845423888, + 22021.32111646831, + 21848.641851270782, + 21663.004015910825, + 21463.79217285275, + 24167.751655112785, + 24163.132620045308, + 24157.864048697833, + 24151.852414397024, + 24144.98778685442, + 24137.143832166348, + 24128.17781281398, + 24117.930587663304, + 24106.22661196512, + 24092.873937355133, + 24077.66421185376, + 24060.372679866312, + 24040.758182182934, + 24018.563155978547, + 23993.513634812945, + 23965.31924863074, + 23933.673223761347, + 23898.252382919018, + 23858.717145202867, + 23814.71152609676, + 23765.86313746945, + 23711.7831875745, + 23652.066481050275, + 23586.29141892004, + 23514.019998591793, + 23434.797813858404, + 23348.154054897564, + 23253.601508271804, + 23150.636556928468, + 23038.73918019971, + 22917.37295380254, + 22785.98504983878, + 22644.00623679507, + 22490.850879542897, + 22325.916939338564, + 22148.5859738232, + 21958.223137022746, + 23788.1827570053, + 23804.00622861231, + 23818.03617893579, + 23830.197740281365, + 23840.39964133949, + 23848.534207185465, + 23854.477359279394, + 23858.088615466215, + 23859.211089975684, + 23857.67149342241, + 23853.280132805812, + 23845.830911510107, + 23835.10132930441, + 23820.85248234257, + 23802.829063163335, + 23780.759360690256, + 23754.355260231703, + 23723.312243480876, + 23687.309388515805, + 23646.00936979934, + 23599.05845817916, + 23546.086520887777, + 23486.707021542512, + 23420.517020145548, + 23347.097173083846, + 23266.011733129235, + 23176.808549438334, + 23079.01906755263, + 22972.158329398397, + 22855.724973286746, + 22729.20123391363, + 22592.05294235982, + 22443.7295260909, + 22283.664008957305, + 22111.273011194266, + 21925.95674942189, + 21727.09903664503, + 24459.189533469988, + 24453.408523893468, + 24447.048566151585, + 24440.01576001773, + 24432.199801650197, + 24423.473983592034, + 24413.69519477112, + 24402.703920500222, + 24390.324242476847, + 24376.363838783418, + 24360.613983887106, + 24342.84954863996, + 24322.82900027883, + 24300.294402425403, + 24274.971415086202, + 24246.569294652534, + 24214.78089390057, + 24179.28266199133, + 24139.734644470587, + 24095.780483269005, + 24047.04741670203, + 23993.14627946997, + 23933.671502657944, + 23868.20111373592, + 23796.296736558637, + 23717.5035913657, + 23631.350494781538, + 23537.34985981541, + 23434.997695861377, + 23323.773608698357, + 23203.140800490073, + 23072.54606978508, + 22931.419811516767, + 22779.17601700331, + 22615.2122739478, + 22438.90976643805, + 22249.633274946777, + 24066.6493222794, + 24081.23350610096, + 24094.082782096255, + 24105.12153311145, + 24114.257738377608, + 24121.38297351053, + 24126.372410510918, + 24129.08481776427, + 24129.36256004092, + 24127.031598496014, + 24121.901490669534, + 24113.765390486296, + 24102.40004825591, + 24087.56581067287, + 24069.00662081643, + 24046.450018150714, + 24019.607138524658, + 23988.17271417203, + 23951.82507371143, + 23910.226142146243, + 23863.02144086474, + 23809.84008763998, + 23750.294796629856, + 23683.9818783771, + 23610.48123980925, + 23529.356384238683, + 23440.154411362608, + 23342.40601726304, + 23235.62549440684, + 23119.310731645666, + 22992.943214216062, + 22855.98802373932, + 22707.89383822163, + 22548.09293205394, + 22376.00117601211, + 22191.018037256734, + 21992.526579333295, + 24752.61505245473, + 24745.66036466351, + 24738.19790527183, + 24730.133400499886, + 24721.35617295264, + 24711.73914161989, + 24701.138821876284, + 24689.395325481255, + 24676.332360579116, + 24661.757231698968, + 24645.460839754745, + 24627.217682045215, + 24606.78585225398, + 24583.907040449416, + 24558.306533084808, + 24529.693212998227, + 24497.759559412512, + 24462.181647935446, + 24422.61915055954, + 24378.715335662197, + 24330.097068005587, + 24276.374808736742, + 24217.14261538753, + 24151.97814187462, + 24080.44263849952, + 24002.080951948552, + 23916.42152529288, + 23822.976397988477, + 23721.24120587617, + 23610.695181181596, + 23490.801152515196, + 23361.00554487227, + 23220.738379632938, + 23069.413274562143, + 22906.427443809633, + 22731.16169791003, + 22542.980443782722, + 24347.16464804967, + 24360.50149547858, + 24372.162623681215, + 24382.071666044318, + 24390.135852339496, + 24396.246008723167, + 24400.27655773654, + 24402.085518305692, + 24401.514505741536, + 24398.38873173976, + 24392.517004380923, + 24383.691728130376, + 24371.68890383834, + 24356.26812873983, + 24337.17259645468, + 24314.129096987584, + 24286.848016728025, + 24255.023338450337, + 24218.33264131368, + 24176.437100862036, + 24128.981489024183, + 24075.594174113783, + 24015.88712082928, + 23949.455890253965, + 23875.879639855946, + 23794.721123488158, + 23705.526691388375, + 23607.826290179164, + 23501.13346286796, + 23384.94534884699, + 23258.742683893346, + 23121.9898001689, + 22974.134626220373, + 22814.608686979325, + 22642.827103762113, + 22458.188594269974, + 22260.07547258889, + 25048.02961876253, + 25039.88947349844, + 25031.31332164914, + 25022.206515881513, + 25012.458005247307, + 25001.940335183037, + 24990.50964751007, + 24978.005680434577, + 24964.2517685476, + 24949.054842824997, + 24932.205430627415, + 24913.47765570034, + 24892.629238174115, + 24869.401494563877, + 24843.519337769616, + 24814.691277076137, + 24782.609418153017, + 24746.949463054778, + 24707.37071022066, + 24663.516054474774, + 24615.01198702606, + 24561.468595468275, + 24502.479563779987, + 24437.622172324627, + 24366.457297850437, + 24288.529413490473, + 24203.366588762623, + 24110.48048956959, + 24009.366378198934, + 23899.50311332303, + 23780.353149999042, + 23651.36253966903, + 23511.960930159807, + 23361.561565683067, + 23199.56128683531, + 23025.340530597863, + 22838.263330336864, + 24629.730911302737, + 24641.81233054853, + 24652.27779431079, + 24661.050186516837, + 24668.03598747885, + 24673.125273893762, + 24676.19171884342, + 24677.0925917944, + 24675.66875859819, + 24671.744681491076, + 24665.12841909414, + 24655.611626413327, + 24642.9695548394, + 24626.961052147926, + 24607.328562499337, + 24583.79812643886, + 24556.079380896557, + 24523.86555918733, + 24486.833491010868, + 24444.643602451742, + 24396.939915979303, + 24343.350050447752, + 24283.48522109611, + 24216.94023954823, + 24143.29351381278, + 24062.10704828325, + 23972.926443737982, + 23875.280897340115, + 23768.683202637625, + 23652.629749563348, + 23526.600524434878, + 23390.059109954687, + 23242.452685210046, + 23083.212025673096, + 22911.751503200747, + 22727.46908603477, + 22529.746338801753, + 25345.43458980754, + 25336.097132259943, + 25326.396021592693, + 25316.23623691937, + 25305.50635373848, + 25294.078543933254, + 25281.808575771774, + 25268.535813907012, + 25254.083219376662, + 25238.25734960336, + 25220.84835839447, + 25201.629995942218, + 25180.359608823685, + 25156.778140000715, + 25130.61012882006, + 25101.56371101323, + 25069.330618696582, + 25033.586180371316, + 24993.989320923432, + 24950.182561623784, + 24901.792020128007, + 24848.42741047663, + 24789.68204309493, + 24725.1328247931, + 24654.34025876608, + 24576.848444593666, + 24492.185078240473, + 24399.86145205597, + 24299.372454774424, + 24190.19657151493, + 24071.795883781422, + 23943.616069462656, + 23805.0864028322, + 23655.61975454847, + 23494.612591654703, + 23321.444977578958, + 23135.480572134104, + 24914.350239743846, + 24925.168095832796, + 24934.43033532375, + 24942.059092684525, + 24947.96009876791, + 24952.022680811388, + 24954.119762437334, + 24954.107863652956, + 24951.827100850238, + 24947.101186806063, + 24939.737430682064, + 24929.526738024757, + 24916.243610765458, + 24899.646147220315, + 24879.476042090304, + 24855.458586461216, + 24827.302667803673, + 24794.700769973155, + 24757.32897320991, + 24714.846954139066, + 24666.897985770534, + 24613.108937499106, + 24553.09027510432, + 24486.43606075061, + 24412.72395298722, + 24331.51520674819, + 24242.354673352434, + 24144.770800503655, + 24038.275632290388, + 23922.364809186005, + 23796.5175680487, + 23660.196742121498, + 23512.84876103224, + 23353.90365079359, + 23182.775033803067, + 22998.86012884299, + 22801.539751080505, + 25644.831273722524, + 25634.284573528337, + 25623.44716213031, + 25612.22364508879, + 25600.502224348995, + 25588.154698240887, + 25575.036461479318, + 25560.986505163935, + 25545.827416779215, + 25529.365380194493, + 25511.390175663873, + 25491.675179826347, + 25469.977365705683, + 25446.03730271047, + 25419.579156634205, + 25390.31068965513, + 25357.92326033631, + 25322.091823625706, + 25282.47493085605, + 25238.714729744905, + 25190.436964394656, + 25137.250975292565, + 25078.74969931064, + 25014.509669705792, + 24944.091016119706, + 24867.037464578923, + 24782.87633749479, + 24691.11855366347, + 24591.258628266, + 24482.7746728682, + 24365.12839542073, + 24237.76510025908, + 24100.11368810356, + 23951.58665605931, + 23791.58009761631, + 23619.473702649324, + 23434.63075741799, + 25201.02471179684, + 25210.570826572042, + 25218.622238777472, + 25225.100333421564, + 25229.910091897607, + 25232.94009198369, + 25234.06250784275, + 25233.13311002254, + 25229.991265455606, + 25224.459937459415, + 25216.345685736153, + 25205.43866637288, + 25191.5126318415, + 25174.3249309987, + 25153.616509086034, + 25129.11190772987, + 25100.519264941388, + 25067.530315116594, + 25029.820389036347, + 24987.04841386631, + 24938.856913156946, + 24884.872006843634, + 24824.703411246464, + 24757.94443907046, + 24684.171999405375, + 24602.946597725866, + 24513.81233589137, + 24416.296912146172, + 24309.911621119365, + 24194.15135382488, + 24068.49459766149, + 23932.40343641276, + 23785.32355024711, + 23626.68421571777, + 23455.898305762796, + 23272.3622897051, + 23075.45623325237, + 25946.220929358897, + 25934.452980602506, + 25922.467851008412, + 25910.169772583715, + 25897.44657372034, + 25884.16967919496, + 25870.1941101692, + 25855.358484189423, + 25839.48501518683, + 25822.3795134775, + 25803.83138576228, + 25783.613635126858, + 25761.48286104176, + 25737.179259362336, + 25710.426622328763, + 25680.932338566032, + 25648.387393083958, + 25612.46636727723, + 25572.82743892528, + 25529.112382192445, + 25480.94656762783, + 25427.93896216541, + 25369.68212912395, + 25305.7522282071, + 25235.709015503242, + 25159.095843485677, + 25075.439661012482, + 24984.251013326553, + 24885.024042055655, + 24777.236485212343, + 24660.349677194015, + 24533.80854878288, + 24397.041627145987, + 24249.461035835215, + 24090.46249478725, + 23919.425320323633, + 23735.712425150694, + 25489.756356604237, + 25498.022508725495, + 25504.855447447968, + 25510.175808320684, + 25513.887823277466, + 25515.879320636977, + 25516.02172510271, + 25514.170057762964, + 25510.162936090874, + 25503.822573944457, + 25494.954781566477, + 25483.348965584548, + 25468.778129011138, + 25450.998871243486, + 25429.75138806372, + 25404.759471638754, + 25375.73051052034, + 25342.355489645077, + 25304.308990334357, + 25261.249190294388, + 25212.817863616234, + 25158.64038077581, + 25098.32570863379, + 25031.466410435736, + 24957.638645811985, + 24876.402170777754, + 24787.30033773303, + 24689.860095462656, + 24583.591989136323, + 24467.990160308498, + 24342.53234691852, + 24206.679883290508, + 24059.877700133464, + 23901.554324541183, + 23731.12187999225, + 23547.97608635018, + 23351.496259863183, + 26249.604766286648, + 26236.603487500004, + 26223.459146692097, + 26210.07560231674, + 26196.340309212595, + 26182.124318603106, + 26167.282278096576, + 26151.652431686136, + 26135.05661974971, + 26117.300279050094, + 26098.17244273489, + 26077.445740336505, + 26054.87639777222, + 26030.204237344093, + 26003.15267773903, + 25973.428734028777, + 25940.723017669872, + 25904.709736503715, + 25865.046694756522, + 25821.37529303931, + 25773.320528347947, + 25720.49099406314, + 25662.478879950377, + 25598.859972160026, + 25529.19365322723, + 25453.022902072003, + 25369.874293999164, + 25279.258000698344, + 25180.667790244028, + 25073.58102709552, + 24957.45867209693, + 24831.745282477215, + 24695.86901185017, + 24549.24161021438, + 24391.258423953266, + 24221.298395835125, + 24038.724065012997, + 25780.54715402711, + 25787.525078971034, + 25793.131854829902, + 25797.287367693305, + 25799.895100035654, + 25800.842130716155, + 25799.999134978854, + 25797.22038445266, + 25792.34374715124, + 25785.190687473172, + 25775.56626620176, + 25763.25914050523, + 25748.041563936586, + 25729.669386433634, + 25707.88205431906, + 25682.40261030035, + 25652.937693469823, + 25619.17753930461, + 25580.795979666702, + 25537.450442802845, + 25488.781953344693, + 25434.41513230869, + 25373.958197096097, + 25307.002961493028, + 25233.124835670398, + 25151.882826183955, + 25062.81953597428, + 24965.46116436677, + 24859.317507071664, + 24743.881956184014, + 24618.6315001837, + 24483.02672393543, + 24336.511808688745, + 24178.514532078, + 24008.44626812239, + 23825.701987225915, + 23629.66025617742, + 26554.98394479445, + 26540.737178957013, + 26526.422058365042, + 26511.94206791909, + 26497.184288904547, + 26482.01939899158, + 26466.301672235244, + 26449.868979075374, + 26432.54278633666, + 26414.12815722863, + 26394.413751345593, + 26373.171824666697, + 26350.15822955597, + 26325.112414762163, + 26297.757425418968, + 26267.79990304484, + 26234.93008554305, + 26198.821807201737, + 26159.13249869383, + 26115.503187077087, + 26067.55849579411, + 26014.90664467235, + 25957.139449924012, + 25893.832324146202, + 25824.544276320812, + 25748.81791181457, + 25666.179432379027, + 25576.138636150547, + 25478.18891765036, + 25371.80726778448, + 25256.454273843774, + 25131.57411950392, + 24996.59458482544, + 24850.927046253666, + 24693.966476618745, + 24525.091445135706, + 24343.66411740432, + 26073.399034645274, + 26079.080424705167, + 26083.453305136514, + 26086.436812569442, + 26087.933680018945, + 26087.830236884754, + 26085.996408951538, + 26082.285718388706, + 26076.535283750523, + 26068.565819976127, + 26058.18163838938, + 26045.170646699058, + 26029.304348998747, + 26010.337845766804, + 25988.00983386649, + 25962.042606545845, + 25932.142053437747, + 25897.997660559893, + 25859.282510314828, + 25815.653281489907, + 25766.750249257275, + 25712.197285174, + 25651.601857181875, + 25584.555029607574, + 25510.631463162586, + 25429.389414943227, + 25340.370738430625, + 25243.100883490755, + 25137.088896374415, + 25021.8274197172, + 24896.792692539584, + 24761.44455024681, + 24615.226424629014, + 24457.56534386108, + 24287.871932502778, + 24105.540411498692, + 23909.948598178198, + 26862.3595758896, + 26846.855090428344, + 26831.35754592959, + 26815.77005374061, + 26799.979321593546, + 26783.855653605264, + 26767.252950277598, + 26750.008708497087, + 26731.944021535168, + 26712.863579048084, + 26692.555667076882, + 26670.792168047443, + 26647.32856077053, + 26621.90392044165, + 26594.240918641186, + 26564.04582333434, + 26531.00849887113, + 26494.802405986407, + 26455.084601799845, + 26411.495739815953, + 26363.660069924044, + 26311.185438398283, + 26253.663287897627, + 26190.668657465936, + 26121.76018253181, + 26046.480094908704, + 25964.35422279491, + 25874.891990773536, + 25777.58641981253, + 25671.91412726465, + 25557.335326867487, + 25433.293828743444, + 25299.217039399795, + 25154.51596172858, + 24998.58519500672, + 24830.802934895913, + 24650.53097344273, + 26368.31387975706, + 26372.690384043042, + 26375.821593299715, + 26377.625894697776, + 26378.00527179276, + 26376.845304524984, + 26374.015169219667, + 26369.367638586802, + 26362.739081721193, + 26353.949464102534, + 26342.802347595283, + 26329.084890448754, + 26312.567847297087, + 26293.00556915924, + 26270.136003438995, + 26243.68069392499, + 26213.344780790638, + 26178.81700059421, + 26139.769686278814, + 26095.85876717236, + 26046.72376898759, + 25991.987813822085, + 25931.257620158212, + 25864.12350286323, + 25790.159373189188, + 25708.922738772955, + 25619.954703636216, + 25522.779968185518, + 25416.906829212225, + 25301.827179892498, + 25177.016509787354, + 25041.933904842626, + 24896.02204738897, + 24738.707216141866, + 24569.399286201657, + 24387.49172905346, + 24192.36161256723, + 27171.732721297965, + 27154.9582080874, + 27138.266520006644, + 27121.560394849745, + 27104.726166795535, + 27087.633766407667, + 27070.13672063466, + 27052.072152809807, + 27033.260782651272, + 27013.506926262016, + 26992.598496129835, + 26970.307001127363, + 26946.387546512065, + 26920.57883392617, + 26892.603161396837, + 26862.166423335984, + 26828.958110540323, + 26792.651310191497, + 26752.90270585587, + 26709.3525774847, + 26661.624801414026, + 26609.32685036476, + 26552.0497934426, + 26489.36829613809, + 26420.84062032661, + 26346.00862426831, + 26264.397762608256, + 26175.517086376258, + 26078.859242987015, + 25973.90047624001, + 25860.100626319556, + 25736.903129794817, + 25603.735019619777, + 25460.0069251332, + 25305.113072058764, + 25138.431282504884, + 24959.322974964874, + 26665.29352137946, + 26668.356745818404, + 26670.238464970007, + 26670.856316545553, + 26670.111534641117, + 26667.888949737622, + 26664.056988700806, + 26658.467674781234, + 26650.956627614305, + 26641.343063220225, + 26629.42979400405, + 26615.003228755646, + 26597.833372649726, + 26577.673827245806, + 26554.261790488203, + 26527.318056706154, + 26496.547016613626, + 26461.636657309446, + 26422.2585622773, + 26378.067911385624, + 26328.703480887754, + 26273.787643421834, + 26212.926368010805, + 26145.709220062443, + 26071.70936136941, + 25990.483550109097, + 25901.572140843782, + 25804.499084520565, + 25698.771928471353, + 25583.881816412893, + 25459.30348844677, + 25324.495281059357, + 25178.899127121895, + 25021.940555890422, + 24853.028693005825, + 24671.556260493802, + 24476.89957676489, + 27483.10439346413, + 27465.04746882626, + 27447.14984193584, + 27429.313877033634, + 27411.425534745216, + 27393.354372080965, + 27374.95354243612, + 27356.059795590743, + 27336.49347770969, + 27316.058531342704, + 27294.54249542427, + 27271.71650527377, + 27247.33529259538, + 27221.137185478114, + 27192.844108395806, + 27162.161582207136, + 27128.778724155567, + 27092.36824786942, + 27052.58646336184, + 27009.073277030802, + 26961.45219165908, + 26909.330306414307, + 26852.29831684892, + 26789.93051490022, + 26721.78478889027, + 26647.40262352601, + 26566.309099899194, + 26478.01289548638, + 26382.006284148996, + 26277.765136133257, + 26164.748918070218, + 26042.400692975778, + 25910.14712025061, + 25767.3984556803, + 25613.54855143517, + 25447.974856070432, + 25270.03841452607, + 26964.33974224814, + 26966.08124958364, + 26966.70561651655, + 26966.12973129869, + 26964.254078566726, + 26960.96273934211, + 26956.123391031142, + 26949.587307424987, + 26941.189358699565, + 26930.7480114157, + 26918.06532851895, + 26902.926969339765, + 26885.10218959343, + 26864.34384138, + 26840.38837318442, + 26812.955829876402, + 26781.74985271053, + 26746.457679326195, + 26706.750143747595, + 26662.281676383813, + 26612.690304028667, + 26557.597649860905, + 26496.608933444015, + 26429.31297072637, + 26355.282174041127, + 26274.072552106314, + 26185.22371002473, + 26088.258849284037, + 25982.68476775673, + 25867.991859700083, + 25743.654115756286, + 25609.129122952243, + 25463.85806469978, + 25307.265720795465, + 25138.760467420776, + 24957.73427714198, + 24763.56271891013, + 27796.475555551177, + 27777.123760255552, + 27758.008323775306, + 27739.03123679794, + 27720.07808639574, + 27701.018056025845, + 27681.703925530222, + 27661.972071135646, + 27641.642465453737, + 27620.518677480926, + 27598.387872598472, + 27575.020812572468, + 27550.171855553843, + 27523.578956078323, + 27494.9636650665, + 27464.031129823747, + 27430.470094040265, + 27393.952897791165, + 27354.135477536256, + 27310.657366120275, + 27263.141692772733, + 27211.195183107986, + 27154.408159125196, + 27092.354539208416, + 27024.591838126442, + 26950.661167032926, + 26870.08723346636, + 26782.37834135006, + 26687.02639099216, + 26583.50687908562, + 26471.278898708213, + 26349.78513932259, + 26218.451886776165, + 26076.689023301195, + 25923.890027514808, + 25759.431974418898, + 25582.67553540023, + 27265.454275817297, + 27265.865585609758, + 27265.224695027093, + 27263.447742861714, + 27260.434464290815, + 27256.068190876456, + 27250.215850565477, + 27242.727967689585, + 27233.438662965313, + 27222.165653493976, + 27208.71025276176, + 27192.85737063967, + 27174.37551338353, + 27153.016783633968, + 27128.516880416468, + 27100.595099141352, + 27068.954331603727, + 27033.28106598357, + 26993.245386845643, + 26948.500975139545, + 26898.685108199737, + 26843.41865974546, + 26782.306099880803, + 26714.935495094676, + 26640.878508260837, + 26559.690398637817, + 26470.91002186903, + 26374.059829982703, + 26268.64587139184, + 26154.15779089436, + 26030.06882967293, + 25895.835825295067, + 25750.899211713142, + 25594.683019264292, + 25426.594874670565, + 25246.026001038772, + 25052.351217860552, + 27831.41806700186, + 27811.92162470274, + 27792.670139890848, + 27773.565561747742, + 27754.493435839766, + 27735.322904118082, + 27715.906704918736, + 27696.081172962517, + 27675.666239355112, + 27654.465431586996, + 27632.26587353348, + 27608.838285454705, + 27583.936983995653, + 27557.29988218608, + 27528.648489440628, + 27497.68791155875, + 27464.106850724675, + 27427.577605507533, + 27387.75607086123, + 27344.281738124537, + 27296.777695020977, + 27244.850625659008, + 27188.09081053183, + 27126.072126517498, + 27058.352046878892, + 26984.471641263714, + 26903.955575704505, + 26816.31211261861, + 26721.03311080823, + 26617.594025460367, + 26505.453908146847, + 26384.055406824347, + 26252.824765834353, + 26111.171825903173, + 25958.490024141967, + 25794.156394046695, + 25617.53156549815, + 27299.039220349187, + 27299.302204936193, + 27298.520240215137, + 27296.60938170507, + 27293.469281309866, + 27288.98318731823, + 27283.01794440369, + 27275.42399362459, + 27266.035372424147, + 27254.66971463032, + 27241.12825045598, + 27225.19580649876, + 27206.640805741168, + 27185.215267550502, + 27160.65480767892, + 27132.67863826337, + 27100.98956782563, + 27065.274001272355, + 27025.201939894945, + 26980.42698136971, + 26930.586319757713, + 26875.300745504916, + 26814.17464544203, + 26746.79600278464, + 26672.73639713316, + 26591.5510044728, + 26502.778597173627, + 26405.941543990513, + 26300.545810063155, + 26186.08095691613, + 26062.020142458725, + 25927.820120985183, + 25782.921243174485, + 25626.7474560905, + 25458.706303181847, + 25278.18892428207, + 25084.57005560942, + 108532.38857038022, + 108053.36404109154, + 107596.05227964713, + 107160.29214623247, + 106745.90609741762, + 106352.70018615744, + 105980.46406179186, + 105628.97097004534, + 105297.97775302737, + 104987.22484923223, + 104696.43629353897, + 104425.31971721142, + 104173.5663478984, + 103940.85100963351, + 103726.83212283504, + 103531.1517043062, + 103353.43536723504, + 103193.29232119455, + 103050.31537214221, + 102924.08092242068, + 102814.14897075723, + 102720.06311226405, + 102641.35053843814, + 102577.52203716131, + 102528.07199270026, + 102492.47838570637, + 102470.20279321597, + 102460.69038865021, + 102463.369941815, + 102477.65381890122, + 102502.9379824843, + 102538.60199152483, + 102584.00900136799, + 102638.50576374384, + 102701.4226267674, + 102772.07353493824, + 102849.75602914106, + 107549.35449934905, + 107167.78225629649, + 106804.39460308208, + 106458.9810198533, + 106131.31458314261, + 105821.151965867, + 105528.23343732861, + 105252.2828632141, + 104993.0077055951, + 104750.09902292815, + 104523.23147005452, + 104312.06329820027, + 104116.23635497627, + 103935.37608437854, + 103769.09152678738, + 103616.97531896843, + 103478.60369407177, + 103353.53648163252, + 103241.31710757056, + 103141.47259419064, + 103053.51356018225, + 102976.93422061983, + 102911.21238696254, + 102855.80946705438, + 102810.17046512423, + 102773.72398178575, + 102745.88221403747, + 102726.04095526268, + 102713.57959522957, + 102707.86112009111, + 102708.23211238511, + 102714.0227510342, + 102724.54681134579, + 102739.10166501225, + 102756.96828011067, + 102777.4112211029, + 102799.6786488358 + ], + "input_power": [ + 9078.617779100001, + 9094.393011139508, + 9113.178398635802, + 9134.973941588889, + 9159.779639998766, + 9187.595493865434, + 9218.42150318889, + 9252.257667969134, + 9289.103988206172, + 9328.9604639, + 9371.82709505062, + 9417.703881658024, + 9466.590823722223, + 9518.487921243208, + 9573.395174220988, + 9631.312582655555, + 9692.240146546916, + 9756.177865895062, + 9823.125740700001, + 9893.08377096173, + 9966.05195668025, + 10042.030297855556, + 10121.01879448766, + 10203.017446576545, + 10288.026254122224, + 10376.045217124694, + 10467.074335583951, + 10561.1136095, + 10658.16303887284, + 10758.222623702472, + 10861.292363988889, + 10967.372259732101, + 11076.462310932098, + 11188.562517588893, + 11303.67287970247, + 11421.79339727284, + 11542.9240703, + 9717.077108300002, + 9733.282360606174, + 9752.497768369138, + 9774.72333158889, + 9799.959050265434, + 9828.204924398768, + 9859.46095398889, + 9893.727139035802, + 9931.003479539502, + 9971.2899755, + 10014.586626917282, + 10060.893433791354, + 10110.210396122224, + 10162.537513909874, + 10217.874787154318, + 10276.222215855552, + 10337.579800013578, + 10401.947539628394, + 10469.325434699998, + 10539.713485228396, + 10613.11169121358, + 10689.520052655553, + 10768.938569554322, + 10851.367241909877, + 10936.80606972222, + 11025.255052991359, + 11116.714191717283, + 11211.1834859, + 11308.662935539509, + 11409.152540635803, + 11512.65230118889, + 11619.162217198767, + 11728.682288665432, + 11841.212515588892, + 11956.752897969138, + 12075.303435806174, + 12196.864129099999, + 9080.145490488001, + 9095.898157407504, + 9114.6609797838, + 9136.433957616886, + 9161.217090906763, + 9189.01037965343, + 9219.813823856886, + 9253.627423517133, + 9290.45117863417, + 9330.285089207999, + 9373.129155238617, + 9418.983376726022, + 9467.847753670221, + 9519.722286071206, + 9574.606973928985, + 9632.501817243554, + 9693.406816014913, + 9757.32197024306, + 9824.247279928, + 9894.18274506973, + 9967.128365668246, + 10043.084141723553, + 10122.050073235658, + 10204.026160204543, + 10289.012402630222, + 10377.008800512693, + 10468.015353851948, + 10562.032062647997, + 10659.058926900836, + 10759.095946610469, + 10862.143121776884, + 10968.200452400097, + 11077.267938480098, + 11189.34558001689, + 11304.433377010468, + 11422.531329460839, + 11543.639437367996, + 9718.673648868, + 9734.863355218618, + 9754.063217026025, + 9776.27323429022, + 9801.493407011209, + 9829.723735188989, + 9860.964218823556, + 9895.214857914912, + 9932.47565246306, + 9972.746602468, + 10016.027707929727, + 10062.318968848245, + 10111.620385223552, + 10163.93195705565, + 10219.25368434454, + 10277.58556709022, + 10338.927605292687, + 10403.27979895195, + 10470.642148067998, + 10541.014652640837, + 10614.397312670468, + 10690.790128156887, + 10770.193099100097, + 10852.606225500096, + 10938.029507356887, + 11026.462944670468, + 11117.906537440836, + 11212.360285667997, + 11309.824189351952, + 11410.29824849269, + 11513.78246309022, + 11620.276833144544, + 11729.781358655653, + 11842.296039623558, + 11957.820876048245, + 12076.355867929726, + 12197.901015267993, + 9093.864758099999, + 9109.414338939505, + 9127.974075235801, + 9149.543966988887, + 9174.124014198766, + 9201.714216865432, + 9232.314574988888, + 9265.925088569134, + 9302.545757606173, + 9342.1765821, + 9384.817562050619, + 9430.468697458025, + 9479.129988322222, + 9530.801434643208, + 9585.483036420987, + 9643.174793655553, + 9703.876706346911, + 9767.588774495061, + 9834.310998099998, + 9904.04337716173, + 9976.785911680245, + 10052.538601655553, + 10131.301447087653, + 10213.074447976542, + 10297.857604322222, + 10385.650916124692, + 10476.454383383949, + 10570.2680061, + 10667.091784272841, + 10766.925717902468, + 10869.769806988888, + 10975.6240515321, + 11084.488451532095, + 11196.363006988888, + 11311.24771790247, + 11429.14258427284, + 11550.047606099999, + 9733.0123791, + 9749.062171850615, + 9768.122120058026, + 9790.192223722222, + 9815.27248284321, + 9843.362897420988, + 9874.463467455556, + 9908.574192946913, + 9945.69507389506, + 9985.826110300002, + 10028.967302161731, + 10075.118649480246, + 10124.280152255558, + 10176.451810487655, + 10231.633624176544, + 10289.825593322223, + 10351.027717924693, + 10415.23999798395, + 10482.462433499997, + 10552.695024472843, + 10625.93777090247, + 10702.190672788885, + 10781.453730132098, + 10863.726942932099, + 10949.01031118889, + 11037.303834902468, + 11128.607514072837, + 11222.921348699998, + 11320.245338783952, + 11420.579484324691, + 11523.923785322222, + 11630.278241776547, + 11739.642853687652, + 11852.017621055553, + 11967.402543880247, + 12085.79762216173, + 12207.2028559, + 9107.529782927999, + 9122.876277687505, + 9141.2329279038, + 9162.599733576886, + 9186.976694706766, + 9214.363811293431, + 9244.761083336887, + 9278.168510837135, + 9314.586093794172, + 9354.013832208, + 9396.451726078618, + 9441.899775406024, + 9490.357980190223, + 9541.826340431207, + 9596.304856128985, + 9653.793527283555, + 9714.292353894914, + 9777.80133596306, + 9844.320473487998, + 9913.849766469728, + 9986.389214908248, + 10061.938818803552, + 10140.498578155652, + 10222.068492964543, + 10306.64856323022, + 10394.23878895269, + 10484.839170131947, + 10578.449706767999, + 10675.07039886084, + 10774.701246410468, + 10877.342249416888, + 10982.9934078801, + 11091.654721800096, + 11203.32619117689, + 11318.007816010471, + 11435.699596300841, + 11556.401532047996, + 9747.296866548004, + 9763.206745698615, + 9782.126780306022, + 9804.056970370224, + 9828.99731589121, + 9856.947816868986, + 9887.908473303554, + 9921.879285194913, + 9958.86025254306, + 9998.851375348, + 10041.85265360973, + 10087.864087328246, + 10136.885676503553, + 10188.917421135655, + 10243.959321224542, + 10302.011376770222, + 10363.073587772693, + 10427.145954231952, + 10494.228476147999, + 10564.321153520843, + 10637.423986350472, + 10713.536974636889, + 10792.660118380096, + 10874.793417580098, + 10959.936872236885, + 11048.09048235047, + 11139.254247920839, + 11233.428168948001, + 11330.61224543195, + 11430.80647737269, + 11534.01086477022, + 11640.225407624543, + 11749.450105935653, + 11861.684959703554, + 11976.929968928249, + 12095.18513360973, + 12216.450453747999, + 9121.140564971998, + 9136.283973651507, + 9154.437537787804, + 9175.60125738089, + 9199.775132430766, + 9226.959162937432, + 9257.153348900889, + 9290.357690321136, + 9326.572187198171, + 9365.796839532002, + 9408.03164732262, + 9453.276610570027, + 9501.531729274224, + 9552.79700343521, + 9607.072433052988, + 9664.358018127554, + 9724.653758658911, + 9787.959654647062, + 9854.275706092001, + 9923.60191299373, + 9995.938275352246, + 10071.284793167555, + 10149.641466439654, + 10231.008295168544, + 10315.385279354221, + 10402.772418996692, + 10493.169714095951, + 10586.577164651999, + 10682.994770664842, + 10782.422532134471, + 10884.860449060889, + 10990.3085214441, + 11098.7667492841, + 11210.23513258089, + 11324.713671334472, + 11442.202365544841, + 11562.701215212002, + 9761.527111211999, + 9777.297076762616, + 9796.077197770024, + 9817.86747423422, + 9842.667906155208, + 9870.478493532986, + 9901.299236367555, + 9935.13013465891, + 9971.971188407057, + 10011.822397611999, + 10054.683762273728, + 10100.555282392244, + 10149.436957967553, + 10201.328788999655, + 10256.23077548854, + 10314.14291743422, + 10375.06521483669, + 10438.997667695947, + 10505.940276011997, + 10575.89303978484, + 10648.855959014469, + 10724.829033700886, + 10803.8122638441, + 10885.805649444097, + 10970.809190500888, + 11058.822887014469, + 11149.846738984834, + 11243.880746411996, + 11340.92490929595, + 11440.979227636688, + 11544.043701434217, + 11650.118330688543, + 11759.20311539965, + 11871.298055567555, + 11986.403151192246, + 12104.51840227373, + 12225.643808812, + 9134.697104232, + 9149.637426831507, + 9167.587904887803, + 9188.54853840089, + 9212.519327370766, + 9239.500271797433, + 9269.49137168089, + 9302.492627021136, + 9338.504037818173, + 9377.525604072001, + 9419.55732578262, + 9464.599202950028, + 9512.651235574225, + 9563.713423655208, + 9617.785767192987, + 9674.868266187555, + 9734.960920638916, + 9798.063730547063, + 9864.176695912, + 9933.299816733732, + 10005.433093012249, + 10080.576524747556, + 10158.730111939654, + 10239.893854588543, + 10324.067752694222, + 10411.251806256694, + 10501.446015275951, + 10594.650379751998, + 10690.864899684844, + 10790.089575074471, + 10892.32440592089, + 10997.569392224099, + 11105.824533984098, + 11217.08983120089, + 11331.365283874473, + 11448.650892004842, + 11568.946655592, + 9775.703113092, + 9791.333165042615, + 9809.973372450024, + 9831.62373531422, + 9856.28425363521, + 9883.954927412984, + 9914.635756647554, + 9948.326741338911, + 9985.02788148706, + 10024.739177092, + 10067.460628153729, + 10113.192234672246, + 10161.933996647558, + 10213.685914079657, + 10268.44798696854, + 10326.220215314217, + 10387.002599116691, + 10450.795138375952, + 10517.597833091997, + 10587.410683264843, + 10660.233688894468, + 10736.066849980887, + 10814.9101665241, + 10896.763638524097, + 10981.627265980887, + 11069.50104889447, + 11160.384987264837, + 11254.279081091998, + 11351.18333037595, + 11451.09773511669, + 11554.022295314217, + 11659.957010968543, + 11768.901882079652, + 11880.856908647556, + 11995.822090672247, + 12113.79742815373, + 12234.782921091999, + 9148.199400708001, + 9162.936637227507, + 9180.684029203803, + 9201.441576636891, + 9225.209279526767, + 9251.987137873433, + 9281.775151676891, + 9314.573320937137, + 9350.381645654172, + 9389.200125828002, + 9431.028761458618, + 9475.867552546026, + 9523.716499090224, + 9574.575601091208, + 9628.444858548986, + 9685.324271463554, + 9745.213839834913, + 9808.11356366306, + 9874.023442948, + 9942.94347768973, + 10014.873667888245, + 10089.814013543555, + 10167.764514655655, + 10248.725171224545, + 10332.695983250222, + 10419.676950732694, + 10509.668073671952, + 10602.669352068, + 10698.680785920842, + 10797.702375230472, + 10899.734119996889, + 11004.776020220103, + 11112.828075900097, + 11223.890287036891, + 11337.962653630473, + 11455.04517568084, + 11575.137853187998, + 9789.824872188, + 9805.315010538616, + 9823.815304346026, + 9845.325753610223, + 9869.846358331213, + 9897.377118508988, + 9927.918034143555, + 9961.469105234914, + 9998.030331783062, + 10037.601713788, + 10080.18325124973, + 10125.774944168248, + 10174.376792543555, + 10225.988796375652, + 10280.610955664542, + 10338.243270410221, + 10398.885740612692, + 10462.53836627195, + 10529.201147388, + 10598.87408396084, + 10671.55717599047, + 10747.250423476886, + 10825.953826420098, + 10907.667384820097, + 10992.391098676886, + 11080.12496799047, + 11170.86899276084, + 11264.623172987998, + 11361.387508671949, + 11461.161999812692, + 11563.946646410222, + 11669.741448464545, + 11778.546405975656, + 11890.361518943557, + 12005.18678736825, + 12123.022211249729, + 12243.867790587996, + 9154.185102487572, + 9168.83204693591, + 9186.489146841039, + 9207.156402202956, + 9230.833813021663, + 9257.521379297164, + 9287.219101029454, + 9319.926978218531, + 9355.645010864399, + 9394.37319896706, + 9436.111542526509, + 9480.860041542748, + 9528.618696015777, + 9579.387505945595, + 9633.166471332206, + 9689.955592175605, + 9749.754868475797, + 9812.564300232776, + 9878.383887446547, + 9947.21363011711, + 10019.05352824446, + 10093.9035818286, + 10171.763790869532, + 10252.634155367254, + 10336.514675321761, + 10423.405350733065, + 10513.306181601154, + 10606.217167926035, + 10702.138309707707, + 10801.06960694617, + 10903.01105964142, + 11007.962667793465, + 11115.924431402289, + 11226.89635046792, + 11340.87842499033, + 11457.87065496953, + 11577.873040405522, + 9796.085987048426, + 9811.51391981248, + 9829.952008033331, + 9851.400251710966, + 9875.858650845394, + 9903.327205436613, + 9933.805915484621, + 9967.294780989418, + 10003.793801951004, + 10043.302978369384, + 10085.822310244552, + 10131.35179757651, + 10179.89144036526, + 10231.441238610798, + 10286.001192313124, + 10343.571301472244, + 10404.151566088152, + 10467.741986160852, + 10534.34256169034, + 10603.953292676624, + 10676.574179119692, + 10752.20522101955, + 10830.846418376204, + 10912.497771189643, + 10997.159279459873, + 11084.830943186895, + 11175.512762370703, + 11269.204737011303, + 11365.906867108697, + 11465.619152662877, + 11568.341593673842, + 11674.074190141608, + 11782.816942066158, + 11894.569849447502, + 12009.33291228563, + 12127.106130580552, + 12247.88950433226, + 9161.647454400001, + 9176.181604839505, + 9193.725910735802, + 9214.280372088886, + 9237.844988898767, + 9264.419761165429, + 9294.004688888888, + 9326.599772069136, + 9362.205010706171, + 9400.820404799999, + 9442.44595435062, + 9487.081659358026, + 9534.727519822223, + 9585.383535743209, + 9639.049707120988, + 9695.726033955556, + 9755.412516246914, + 9818.109153995063, + 9883.815947199999, + 9952.532895861732, + 10024.259999980246, + 10098.997259555556, + 10176.744674587657, + 10257.502245076545, + 10341.26997102222, + 10428.04785242469, + 10517.83588928395, + 10610.6340816, + 10706.44242937284, + 10805.260932602467, + 10907.089591288886, + 11011.928405432101, + 11119.777375032098, + 11230.636500088889, + 11344.50578060247, + 11461.385216572842, + 11581.274808, + 9803.892388500002, + 9819.242613250615, + 9837.602993458026, + 9858.973529122222, + 9883.354220243207, + 9910.745066820986, + 9941.146068855558, + 9974.557226346913, + 10010.978539295058, + 10050.410007699998, + 10092.851631561729, + 10138.303410880246, + 10186.765345655553, + 10238.237435887655, + 10292.719681576544, + 10350.212082722222, + 10410.71463932469, + 10474.227351383948, + 10540.750218899997, + 10610.283241872841, + 10682.826420302468, + 10758.379754188887, + 10836.943243532101, + 10918.5168883321, + 11003.10068858889, + 11090.694644302474, + 11181.298755472839, + 11274.9130221, + 11371.53744418395, + 11471.172021724691, + 11573.816754722218, + 11679.471643176545, + 11788.136687087654, + 11899.81188645556, + 12014.497241280247, + 12132.19275156173, + 12252.898417299999, + 9175.041265308, + 9189.372329667507, + 9206.713549483804, + 9227.064924756889, + 9250.426455486768, + 9276.798141673433, + 9306.179983316888, + 9338.571980417137, + 9373.974132974172, + 9412.386440988, + 9453.808904458618, + 9498.241523386025, + 9545.684297770222, + 9596.137227611207, + 9649.600312908986, + 9706.073553663553, + 9765.556949874914, + 9828.050501543063, + 9893.554208668, + 9962.068071249729, + 10033.592089288248, + 10108.126262783555, + 10185.670591735654, + 10266.225076144543, + 10349.789716010222, + 10436.364511332693, + 10525.94946211195, + 10618.544568348, + 10714.149830040842, + 10812.765247190471, + 10914.390819796887, + 11019.026547860101, + 11126.672431380097, + 11237.328470356892, + 11350.994664790469, + 11467.67101468084, + 11587.357520027997, + 9817.905662028, + 9833.115973178616, + 9851.336439786022, + 9872.56706185022, + 9896.80783937121, + 9924.058772348986, + 9954.319860783555, + 9987.591104674912, + 10023.87250402306, + 10063.164058827999, + 10105.46576908973, + 10150.777634808246, + 10199.099655983557, + 10250.431832615652, + 10304.77416470454, + 10362.12665225022, + 10422.489295252688, + 10485.862093711949, + 10552.245047628, + 10621.63815700084, + 10694.041421830469, + 10769.454842116884, + 10847.878417860096, + 10929.312149060095, + 11013.756035716888, + 11101.210077830467, + 11191.674275400836, + 11285.148628427996, + 11381.63313691195, + 11481.127800852692, + 11583.63262025022, + 11689.147595104543, + 11797.672725415654, + 11909.208011183558, + 12023.753452408248, + 12141.30904908973, + 12261.874801227996, + 9188.380833432002, + 9202.508811711506, + 9219.646945447803, + 9239.79523464089, + 9262.953679290766, + 9289.122279397434, + 9318.301034960889, + 9350.489945981135, + 9385.689012458171, + 9423.898234392002, + 9465.117611782618, + 9509.347144630025, + 9556.586832934223, + 9606.83667669521, + 9660.096675912988, + 9716.366830587554, + 9775.647140718915, + 9837.937606307061, + 9903.238227352002, + 9971.549003853732, + 10042.86993581225, + 10117.201023227557, + 10194.542266099656, + 10274.893664428544, + 10358.255218214223, + 10444.626927456695, + 10534.008792155952, + 10626.400812312, + 10721.80298792484, + 10820.215318994471, + 10921.63780552089, + 11026.070447504097, + 11133.513244944097, + 11243.966197840893, + 11357.42930619447, + 11473.90257000484, + 11593.385989272001, + 9831.864692772, + 9846.935090322615, + 9865.015643330027, + 9886.106351794224, + 9910.207215715212, + 9937.31823509299, + 9967.439409927556, + 10000.570740218913, + 10036.712225967061, + 10075.863867172004, + 10118.025663833727, + 10163.197615952247, + 10211.379723527556, + 10262.571986559653, + 10316.774405048542, + 10373.986978994219, + 10434.209708396691, + 10497.442593255952, + 10563.685633572, + 10632.93882934484, + 10705.202180574468, + 10780.475687260887, + 10858.7593494041, + 10940.053167004096, + 11024.357140060889, + 11111.671268574471, + 11201.99555254484, + 11295.329991972001, + 11391.674586855954, + 11491.029337196693, + 11593.39424299422, + 11698.769304248544, + 11807.154520959655, + 11918.549893127558, + 12032.955420752247, + 12150.371103833728, + 12270.796942371999, + 9201.666158772001, + 9215.591050971505, + 9232.5260986278, + 9252.471301740887, + 9275.426660310766, + 9301.392174337434, + 9330.367843820888, + 9362.353668761134, + 9397.349649158172, + 9435.355785012, + 9476.37207632262, + 9520.398523090023, + 9567.435125314223, + 9617.481882995207, + 9670.538796132985, + 9726.605864727555, + 9785.683088778913, + 9847.770468287063, + 9912.868003252, + 9980.975693673729, + 10052.093539552248, + 10126.221540887555, + 10203.359697679654, + 10283.508009928544, + 10366.666477634224, + 10452.835100796694, + 10542.01387941595, + 10634.202813491998, + 10729.401903024838, + 10827.61114801447, + 10928.830548460886, + 11033.060104364096, + 11140.299815724098, + 11250.549682540892, + 11363.80970481447, + 11480.079882544838, + 11599.360215731998, + 9845.769480732002, + 9860.699964682619, + 9878.640604090026, + 9899.591398954222, + 9923.552349275213, + 9950.52345505299, + 9980.504716287558, + 10013.496132978915, + 10049.49770512706, + 10088.509432732002, + 10130.531315793729, + 10175.563354312248, + 10223.605548287554, + 10274.657897719651, + 10328.720402608538, + 10385.793062954219, + 10445.87587875669, + 10508.968850015946, + 10575.071976731999, + 10644.18525890484, + 10716.308696534468, + 10791.442289620887, + 10869.586038164098, + 10950.739942164098, + 11034.904001620887, + 11122.07821653447, + 11212.26258690484, + 11305.457112731998, + 11401.661794015952, + 11500.876630756693, + 11603.101622954218, + 11708.336770608543, + 11816.582073719654, + 11927.837532287556, + 12042.103146312245, + 12159.378915793728, + 12279.664840731997, + 9214.897241328, + 9228.619047447506, + 9245.351009023803, + 9265.093126056889, + 9287.845398546766, + 9313.607826493433, + 9342.38040989689, + 9374.163148757136, + 9408.956043074173, + 9446.759092848002, + 9487.572298078618, + 9531.395658766025, + 9578.229174910222, + 9628.072846511208, + 9680.926673568985, + 9736.790656083553, + 9795.664794054914, + 9857.54908748306, + 9922.443536368, + 9990.348140709728, + 10061.262900508249, + 10135.187815763553, + 10212.122886475652, + 10292.068112644543, + 10375.023494270221, + 10460.989031352694, + 10549.96472389195, + 10641.950571888, + 10736.946575340842, + 10834.952734250472, + 10935.969048616887, + 11039.9955184401, + 11147.032143720098, + 11257.078924456891, + 11370.13586065047, + 11486.202952300839, + 11605.280199407998, + 9859.620025908, + 9874.410596258615, + 9892.211322066023, + 9913.02220333022, + 9936.843240051207, + 9963.674432228989, + 9993.515779863556, + 10026.367282954914, + 10062.22894150306, + 10101.100755507998, + 10142.982724969728, + 10187.874849888243, + 10235.777130263556, + 10286.689566095652, + 10340.612157384541, + 10397.54490413022, + 10457.48780633269, + 10520.44086399195, + 10586.404077107998, + 10655.377445680839, + 10727.36096971047, + 10802.354649196886, + 10880.358484140097, + 10961.372474540098, + 11045.396620396885, + 11132.43092171047, + 11222.475378480836, + 11315.529990707997, + 11411.594758391951, + 11510.66968153269, + 11612.75476013022, + 11717.849994184544, + 11825.955383695653, + 11937.070928663556, + 12051.196629088245, + 12168.33248496973, + 12288.478496307995, + 9228.074081100001, + 9241.592801139508, + 9258.121676635805, + 9277.660707588888, + 9300.209893998766, + 9325.769235865433, + 9354.338733188888, + 9385.918385969137, + 9420.508194206173, + 9458.108157900002, + 9498.71827705062, + 9542.338551658026, + 9588.968981722224, + 9638.609567243207, + 9691.260308220988, + 9746.921204655555, + 9805.592256546912, + 9867.273463895064, + 9931.964826700001, + 9999.666344961732, + 10070.378018680249, + 10144.099847855552, + 10220.831832487655, + 10300.573972576543, + 10383.32626812222, + 10469.088719124693, + 10557.86132558395, + 10649.6440875, + 10744.437004872841, + 10842.24007770247, + 10943.053305988888, + 11046.8766897321, + 11153.710228932103, + 11263.553923588892, + 11376.40777370247, + 11492.27177927284, + 11611.145940299999, + 9873.416328300002, + 9888.066985050616, + 9905.727797258025, + 9926.39876492222, + 9950.079888043212, + 9976.771166620989, + 10006.472600655554, + 10039.184190146912, + 10074.905935095061, + 10113.6378355, + 10155.379891361728, + 10200.132102680247, + 10247.894469455554, + 10298.666991687654, + 10352.449669376543, + 10409.242502522222, + 10469.045491124692, + 10531.85863518395, + 10597.6819347, + 10666.515389672843, + 10738.359000102471, + 10813.212765988888, + 10891.076687332099, + 10971.9507641321, + 11055.834996388889, + 11142.729384102468, + 11232.633927272838, + 11325.548625899999, + 11421.473479983953, + 11520.40848952469, + 11622.353654522221, + 11727.308974976542, + 11835.274450887655, + 11946.250082255558, + 12060.235869080247, + 12177.231811361731, + 12297.2379091, + 9241.196678088, + 9254.512312047507, + 9270.838101463802, + 9290.174046336888, + 9312.520146666768, + 9337.876402453434, + 9366.24281369689, + 9397.619380397135, + 9432.006102554173, + 9469.402980168, + 9509.810013238617, + 9553.227201766023, + 9599.654545750223, + 9649.092045191206, + 9701.539700088984, + 9756.997510443554, + 9815.46547625491, + 9876.943597523059, + 9941.431874247997, + 10008.93030642973, + 10079.43889406825, + 10152.957637163552, + 10229.486535715654, + 10309.025589724544, + 10391.574799190223, + 10477.134164112695, + 10565.703684491951, + 10657.283360328, + 10751.87319162084, + 10849.473178370472, + 10950.083320576887, + 11053.703618240099, + 11160.334071360097, + 11269.974679936891, + 11382.62544397047, + 11498.286363460838, + 11616.957438407995, + 9887.158387907999, + 9901.669131058616, + 9919.190029666024, + 9939.721083730221, + 9963.26229325121, + 9989.813658228988, + 10019.375178663555, + 10051.946854554912, + 10087.528685903062, + 10126.120672708, + 10167.72281496973, + 10212.335112688246, + 10259.957565863553, + 10310.590174495654, + 10364.23293858454, + 10420.885858130223, + 10480.54893313269, + 10543.222163591949, + 10608.905549507996, + 10677.59909088084, + 10749.302787710467, + 10824.016639996886, + 10901.740647740098, + 10982.474810940097, + 11066.219129596886, + 11152.973603710469, + 11242.73823328084, + 11335.513018308, + 11431.29795879195, + 11530.09305473269, + 11631.89830613022, + 11736.713712984545, + 11844.539275295654, + 11955.374993063557, + 12069.220866288246, + 12186.07689496973, + 12305.943079108001, + 9254.265032292, + 9267.377580171506, + 9283.500283507803, + 9302.633142300885, + 9324.776156550764, + 9349.929326257432, + 9378.09265142089, + 9409.266132041133, + 9443.44976811817, + 9480.643559651999, + 9520.847506642618, + 9564.061609090024, + 9610.285866994222, + 9659.52028035521, + 9711.764849172987, + 9767.019573447556, + 9825.284453178912, + 9886.559488367062, + 9950.844679012, + 10018.14002511373, + 10088.445526672249, + 10161.761183687559, + 10238.086996159655, + 10317.422964088544, + 10399.76908747422, + 10485.125366316694, + 10573.491800615951, + 10664.868390372, + 10759.25513558484, + 10856.65203625447, + 10957.059092380889, + 11060.4763039641, + 11166.903671004096, + 11276.341193500892, + 11388.78887145447, + 11504.24670486484, + 11622.714693731998, + 9900.846204732, + 9915.217034282618, + 9932.598019290026, + 9952.989159754223, + 9976.390455675211, + 10002.801907052988, + 10032.223513887559, + 10064.655276178913, + 10100.097193927058, + 10138.549267132, + 10180.011495793728, + 10224.483879912246, + 10271.966419487555, + 10322.459114519652, + 10375.96196500854, + 10432.47497095422, + 10491.998132356692, + 10554.53144921595, + 10620.074921531997, + 10688.62854930484, + 10760.192332534469, + 10834.766271220886, + 10912.350365364096, + 10992.944614964099, + 11076.549020020888, + 11163.16358053447, + 11252.788296504841, + 11345.423167932, + 11441.068194815953, + 11539.723377156693, + 11641.388714954222, + 11746.064208208545, + 11853.74985691965, + 11964.445661087559, + 12078.151620712248, + 12194.867735793729, + 12314.594006332, + 9267.279143712, + 9280.188605511505, + 9296.108222767802, + 9315.037995480885, + 9336.977923650766, + 9361.92800727743, + 9389.888246360886, + 9420.858640901135, + 9454.839190898172, + 9491.829896352, + 9531.83075726262, + 9574.841773630025, + 9620.862945454224, + 9669.894272735206, + 9721.935755472985, + 9776.987393667554, + 9835.049187318911, + 9896.12113642706, + 9960.203240991998, + 10027.295501013728, + 10097.397916492244, + 10170.510487427551, + 10246.63321381965, + 10325.766095668541, + 10407.90913297422, + 10493.062325736691, + 10581.225673955949, + 10672.399177631996, + 10766.582836764841, + 10863.776651354468, + 10963.980621400886, + 11067.194746904099, + 11173.419027864096, + 11282.65346428089, + 11394.898056154469, + 11510.152803484843, + 11628.417706272, + 9914.479778772002, + 9928.710694722615, + 9945.951766130023, + 9966.20299299422, + 9989.46437531521, + 10015.735913092984, + 10045.017606327554, + 10077.309455018913, + 10112.61145916706, + 10150.923618771998, + 10192.24593383373, + 10236.578404352245, + 10283.921030327554, + 10334.273811759653, + 10387.636748648543, + 10444.009840994224, + 10503.39308879669, + 10565.786492055951, + 10631.190050771998, + 10699.603764944837, + 10771.027634574466, + 10845.461659660887, + 10922.9058402041, + 11003.360176204096, + 11086.824667660887, + 11173.299314574468, + 11262.784116944838, + 11355.279074771996, + 11450.78418805595, + 11549.299456796689, + 11650.824880994218, + 11755.360460648542, + 11862.906195759653, + 11973.462086327554, + 12087.028132352245, + 12203.604333833728, + 12323.190690771999, + 9280.239012348, + 9292.945388067506, + 9308.661919243803, + 9327.388605876888, + 9349.125447966766, + 9373.872445513432, + 9401.62959851689, + 9432.396906977136, + 9466.174370894172, + 9502.961990268, + 9542.759765098615, + 9585.567695386026, + 9631.385781130224, + 9680.214022331207, + 9732.052418988986, + 9786.900971103556, + 9844.75967867491, + 9905.62854170306, + 9969.507560188, + 10036.396734129728, + 10106.296063528247, + 10179.205548383554, + 10255.125188695654, + 10334.054984464543, + 10415.99493569022, + 10500.945042372692, + 10588.90530451195, + 10679.875722108, + 10773.856295160842, + 10870.847023670469, + 10970.847907636884, + 11073.858947060102, + 11179.880141940097, + 11288.911492276888, + 11400.952998070468, + 11516.004659320839, + 11634.066476027998, + 9928.059110028, + 9942.150112378617, + 9959.251270186025, + 9979.36258345022, + 10002.48405217121, + 10028.615676348987, + 10057.757455983556, + 10089.909391074914, + 10125.07148162306, + 10163.243727628, + 10204.426129089728, + 10248.618686008247, + 10295.821398383556, + 10346.03426621565, + 10399.257289504538, + 10455.49046825022, + 10514.73380245269, + 10576.98729211195, + 10642.250937227998, + 10710.52473780084, + 10781.808693830466, + 10856.102805316885, + 10933.407072260099, + 11013.721494660098, + 11097.046072516885, + 11183.380805830468, + 11272.725694600838, + 11365.080738828, + 11460.445938511952, + 11558.82129365269, + 11660.206804250221, + 11764.602470304544, + 11872.008291815653, + 11982.424268783558, + 12095.850401208247, + 12212.28668908973, + 12331.733132428, + 9293.144638200001, + 9305.647927839505, + 9321.1613729358, + 9339.684973488886, + 9361.218729498767, + 9385.76264096543, + 9413.316707888887, + 9443.880930269135, + 9477.455308106171, + 9514.0398414, + 9553.634530150619, + 9596.239374358025, + 9641.854374022221, + 9690.479529143207, + 9742.114839720987, + 9796.760305755555, + 9854.415927246913, + 9915.081704195065, + 9978.757636600001, + 10045.443724461731, + 10115.13996778025, + 10187.846366555554, + 10263.562920787652, + 10342.289630476544, + 10424.026495622218, + 10508.77351622469, + 10596.530692283946, + 10687.298023799995, + 10781.075510772836, + 10877.863153202466, + 10977.660951088887, + 11080.468904432098, + 11186.287013232097, + 11295.11527748889, + 11406.953697202469, + 11521.802272372839, + 11639.661003000001, + 9941.584198500002, + 9955.535287250617, + 9972.496531458022, + 9992.467931122223, + 10015.449486243208, + 10041.441196820986, + 10070.443062855556, + 10102.455084346913, + 10137.477261295058, + 10175.509593699997, + 10216.552081561727, + 10260.604724880246, + 10307.667523655557, + 10357.740477887653, + 10410.823587576542, + 10466.916852722221, + 10526.02027332469, + 10588.13384938395, + 10653.257580900003, + 10721.391467872842, + 10792.53551030247, + 10866.689708188887, + 10943.8540615321, + 11024.028570332099, + 11107.213234588888, + 11193.408054302472, + 11282.61302947284, + 11374.828160099998, + 11470.05344618395, + 11568.288887724691, + 11669.534484722222, + 11773.790237176543, + 11881.056145087652, + 11991.33220845556, + 12104.618427280246, + 12220.91480156173, + 12340.2213313, + 9305.996021268002, + 9318.296224827505, + 9333.6065838438, + 9351.927098316886, + 9373.257768246764, + 9397.598593633431, + 9424.949574476888, + 9455.310710777134, + 9488.682002534171, + 9525.063449747999, + 9564.455052418618, + 9606.856810546022, + 9652.268724130221, + 9700.690793171208, + 9752.123017668986, + 9806.565397623555, + 9864.017933034913, + 9924.48062390306, + 9987.953470228002, + 10054.43647200973, + 10123.929629248247, + 10196.432941943554, + 10271.946410095656, + 10350.470033704545, + 10432.003812770221, + 10516.547747292692, + 10604.10183727195, + 10694.666082707998, + 10788.240483600837, + 10884.825039950469, + 10984.419751756886, + 11087.0246190201, + 11192.639641740097, + 11301.264819916893, + 11412.900153550469, + 11527.545642640838, + 11645.201287187996, + 9955.055044187997, + 9968.866219338617, + 9985.687549946026, + 10005.519036010222, + 10028.360677531211, + 10054.212474508986, + 10083.074426943554, + 10114.946534834911, + 10149.828798183058, + 10187.721216987999, + 10228.623791249724, + 10272.536520968246, + 10319.459406143555, + 10369.392446775651, + 10422.335642864538, + 10478.288994410217, + 10537.252501412688, + 10599.226163871946, + 10664.209981788, + 10732.203955160838, + 10803.208083990468, + 10877.222368276885, + 10954.246808020098, + 11034.281403220097, + 11117.326153876887, + 11203.38105999047, + 11292.446121560837, + 11384.521338588, + 11479.606711071952, + 11577.702239012691, + 11678.807922410218, + 11782.923761264543, + 11890.049755575652, + 12000.185905343556, + 12113.332210568247, + 12229.488671249726, + 12348.655287387994, + 9318.793161552, + 9330.890279031506, + 9345.997551967801, + 9364.114980360888, + 9385.242564210766, + 9409.380303517431, + 9436.528198280892, + 9466.686248501135, + 9499.85445417817, + 9536.032815311999, + 9575.221331902616, + 9617.420003950023, + 9662.628831454223, + 9710.847814415205, + 9762.076952832982, + 9816.316246707553, + 9873.565696038913, + 9933.825300827062, + 9997.095061072003, + 10063.374976773728, + 10132.665047932245, + 10204.965274547552, + 10280.275656619655, + 10358.596194148542, + 10439.926887134221, + 10524.267735576694, + 10611.61873947595, + 10701.979898831998, + 10795.351213644843, + 10891.73268391447, + 10991.124309640885, + 11093.5260908241, + 11198.938027464097, + 11307.36011956089, + 11418.792367114467, + 11533.234770124838, + 11650.687328591997, + 9968.471647092001, + 9982.142908642616, + 9998.824325650025, + 10018.515898114221, + 10041.217626035212, + 10066.929509412985, + 10095.651548247555, + 10127.383742538914, + 10162.12609228706, + 10199.878597492003, + 10240.641258153728, + 10284.414074272247, + 10331.197045847557, + 10380.990172879654, + 10433.79345536854, + 10489.606893314221, + 10548.43048671669, + 10610.264235575949, + 10675.108139891996, + 10742.96219966484, + 10813.826414894465, + 10887.700785580884, + 10964.585311724099, + 11044.479993324097, + 11127.384830380885, + 11213.29982289447, + 11302.224970864838, + 11394.160274291999, + 11489.105733175953, + 11587.061347516692, + 11688.027117314221, + 11792.003042568542, + 11898.989123279653, + 12008.985359447557, + 12121.991751072248, + 12238.00829815373, + 12357.035000692, + 9331.536059052, + 9343.430090451506, + 9358.334277307802, + 9376.248619620888, + 9397.173117390768, + 9421.107770617431, + 9448.05257930089, + 9478.007543441134, + 9510.97266303817, + 9546.947938092, + 9585.933368602618, + 9627.928954570023, + 9672.934695994221, + 9720.950592875208, + 9771.976645212984, + 9826.012853007553, + 9883.059216258913, + 9943.11573496706, + 10006.182409131998, + 10072.259238753728, + 10141.346223832248, + 10213.443364367553, + 10288.550660359651, + 10366.668111808542, + 10447.795718714222, + 10531.933481076694, + 10619.081398895953, + 10709.239472171997, + 10802.40770090484, + 10898.58608509447, + 10997.774624740889, + 11099.973319844099, + 11205.182170404098, + 11313.401176420892, + 11424.630337894469, + 11538.869654824837, + 11656.119127211996, + 9981.834007211999, + 9995.365355162616, + 10011.906858570022, + 10031.458517434221, + 10054.02033175521, + 10079.592301532986, + 10108.174426767555, + 10139.766707458914, + 10174.36914360706, + 10211.981735212, + 10252.60448227373, + 10296.237384792248, + 10342.880442767557, + 10392.533656199654, + 10445.19702508854, + 10500.870549434223, + 10559.554229236692, + 10621.248064495949, + 10685.952055212, + 10753.66620138484, + 10824.39050301447, + 10898.124960100888, + 10974.869572644098, + 11054.624340644097, + 11137.389264100886, + 11223.16434301447, + 11311.94957738484, + 11403.744967211996, + 11498.550512495953, + 11596.366213236692, + 11697.19206943422, + 11801.028081088547, + 11907.874248199654, + 12017.730570767557, + 12130.597048792246, + 12246.47368227373, + 12365.360471211996, + 9344.224713768, + 9355.915659087506, + 9370.616759863802, + 9388.328016096886, + 9409.049427786766, + 9432.780994933431, + 9459.52271753689, + 9489.274595597135, + 9522.036629114173, + 9557.808818088, + 9596.591162518616, + 9638.383662406022, + 9683.186317750224, + 9730.999128551206, + 9781.822094808984, + 9835.655216523553, + 9892.498493694911, + 9952.35192632306, + 10015.215514407999, + 10081.089257949729, + 10149.973156948246, + 10221.867211403554, + 10296.771421315654, + 10374.685786684542, + 10455.610307510222, + 10539.544983792692, + 10626.48981553195, + 10716.444802728, + 10809.409945380841, + 10905.38524349047, + 11004.370697056887, + 11106.366306080097, + 11211.372070560097, + 11319.38799049689, + 11430.414065890469, + 11544.450296740837, + 11661.496683047999, + 9995.142124548, + 10008.533558898616, + 10024.935148706027, + 10044.346893970223, + 10066.76879469121, + 10092.200850868989, + 10120.643062503557, + 10152.095429594914, + 10186.557952143063, + 10224.030630148001, + 10264.51346360973, + 10308.006452528247, + 10354.509596903557, + 10404.022896735656, + 10456.546352024541, + 10512.07996277022, + 10570.623728972692, + 10632.177650631947, + 10696.741727747998, + 10764.315960320839, + 10834.900348350466, + 10908.494891836886, + 10985.099590780099, + 11064.714445180096, + 11147.339455036887, + 11232.974620350471, + 11321.619941120838, + 11413.275417348003, + 11507.941049031953, + 11605.616836172692, + 11706.302778770223, + 11809.998876824544, + 11916.705130335653, + 12026.42153930356, + 12139.148103728248, + 12254.884823609731, + 12373.631698948004, + 9356.8591257, + 9368.346984939508, + 9382.844999635803, + 9400.35316978889, + 9420.87149539877, + 9444.399976465435, + 9470.938612988892, + 9500.487404969137, + 9533.046352406172, + 9568.615455300001, + 9607.194713650619, + 9648.784127458028, + 9693.383696722223, + 9740.993421443209, + 9791.613301620986, + 9845.243337255555, + 9901.883528346916, + 9961.533874895063, + 10024.1943769, + 10089.86503436173, + 10158.54584728025, + 10230.236815655555, + 10304.937939487654, + 10382.649218776545, + 10463.370653522223, + 10547.102243724694, + 10633.843989383953, + 10723.5958905, + 10816.357947072844, + 10912.130159102473, + 11010.912526588887, + 11112.705049532104, + 11217.507727932096, + 11325.320561788893, + 11436.143551102472, + 11549.97669587284, + 11666.819996100001, + 10008.395999100001, + 10021.647519850616, + 10037.909196058024, + 10057.181027722221, + 10079.463014843212, + 10104.755157420988, + 10133.057455455555, + 10164.369908946914, + 10198.692517895059, + 10236.025282300003, + 10276.368202161731, + 10319.721277480248, + 10366.084508255555, + 10415.457894487652, + 10467.841436176543, + 10523.235133322221, + 10581.638985924692, + 10643.05299398395, + 10707.477157499998, + 10774.91147647284, + 10845.355950902467, + 10918.810580788886, + 10995.275366132098, + 11074.750306932097, + 11157.235403188884, + 11242.730654902472, + 11331.236062072838, + 11422.751624699999, + 11517.277342783953, + 11614.813216324688, + 11715.35924532222, + 11818.915429776544, + 11925.481769687654, + 12035.058265055555, + 12147.644915880248, + 12263.24172216173, + 12381.8486839, + 9369.439294848, + 9380.724068007505, + 9395.018996623803, + 9412.324080696888, + 9432.639320226766, + 9455.964715213433, + 9482.300265656888, + 9511.645971557135, + 9544.001832914173, + 9579.367849728002, + 9617.744021998618, + 9659.130349726025, + 9703.526832910222, + 9750.933471551209, + 9801.350265648989, + 9854.777215203556, + 9911.214320214913, + 9970.661580683063, + 10033.118996608002, + 10098.58656798973, + 10167.064294828251, + 10238.552177123554, + 10313.050214875651, + 10390.558408084544, + 10471.07675675022, + 10554.605260872693, + 10641.143920451948, + 10730.692735487999, + 10823.251705980842, + 10918.820831930469, + 11017.400113336887, + 11118.9895502001, + 11223.589142520099, + 11331.19889029689, + 11441.81879353047, + 11555.44885222084, + 11672.089066368, + 10021.595630868002, + 10034.707238018616, + 10050.829000626025, + 10069.960918690222, + 10092.102992211208, + 10117.255221188989, + 10145.417605623554, + 10176.59014551491, + 10210.772840863061, + 10247.965691667998, + 10288.168697929726, + 10331.381859648247, + 10377.605176823554, + 10426.838649455654, + 10479.082277544541, + 10534.336061090218, + 10592.600000092689, + 10653.87409455195, + 10718.158344467998, + 10785.452749840839, + 10855.75731067047, + 10929.072026956888, + 11005.396898700099, + 11084.7319259001, + 11167.077108556889, + 11252.43244667047, + 11340.797940240838, + 11432.173589267999, + 11526.55939375195, + 11623.955353692692, + 11724.361469090221, + 11827.777739944544, + 11934.204166255653, + 12043.640748023558, + 12156.087485248245, + 12271.544377929731, + 12390.011426067998, + 9370.833744215292, + 9382.095952236745, + 9396.368315714988, + 9413.650834650021, + 9433.943509041848, + 9457.246338890462, + 9483.559324195869, + 9512.882464958062, + 9545.215761177045, + 9580.559212852822, + 9618.912819985388, + 9660.276582574741, + 9704.650500620888, + 9752.034574123822, + 9802.428803083549, + 9855.833187500066, + 9912.247727373373, + 9971.672422703468, + 10034.107273490352, + 10099.552279734033, + 10168.007441434496, + 10239.47275859175, + 10313.9482312058, + 10391.433859276636, + 10471.929642804262, + 10555.43558178868, + 10641.951676229884, + 10731.477926127882, + 10824.014331482673, + 10919.56089229425, + 11018.117608562614, + 11119.684480287773, + 11224.261507469724, + 11331.848690108462, + 11442.44602820399, + 11556.053521756308, + 11672.671170765416, + 10023.058909470357, + 10036.15497065298, + 10052.261187292397, + 10071.3775593886, + 10093.504086941595, + 10118.640769951382, + 10146.787608417957, + 10177.94460234132, + 10212.111751721477, + 10249.289056558422, + 10289.47651685216, + 10332.674132602686, + 10378.881903810001, + 10428.099830474108, + 10480.327912595005, + 10535.566150172692, + 10593.814543207169, + 10655.073091698436, + 10719.341795646493, + 10786.620655051342, + 10856.909669912977, + 10930.208840231404, + 11006.518166006625, + 11085.83764723863, + 11168.167283927427, + 11253.50707607302, + 11341.857023675393, + 11433.217126734562, + 11527.58738525052, + 11624.96779922327, + 11725.358368652804, + 11828.759093539136, + 11935.169973882252, + 12044.591009682168, + 12157.022200938862, + 12272.463547652354, + 12390.91504982263, + 10716.290288699998, + 10693.253514339505, + 10673.2268954358, + 10656.210431988888, + 10642.204123998767, + 10631.207971465428, + 10623.221974388887, + 10618.246132769134, + 10616.28044660617, + 10617.3249159, + 10621.379540650618, + 10628.444320858023, + 10638.519256522219, + 10651.604347643208, + 10667.699594220987, + 10686.804996255552, + 10708.92055374691, + 10734.04626669506, + 10762.182135099998, + 10793.328158961727, + 10827.484338280246, + 10864.650673055554, + 10904.827163287655, + 10948.01380897654, + 10994.210610122222, + 11043.417566724693, + 11095.634678783948, + 11150.8619463, + 11209.09936927284, + 11270.34694770247, + 11334.604681588888, + 11401.8725709321, + 11472.150615732098, + 11545.43881598889, + 11621.73717170247, + 11701.045682872837, + 11783.364349499998, + 11473.135807500003, + 11462.60201625062, + 11455.078380458026, + 11450.564900122223, + 11449.061575243211, + 11450.568405820988, + 11455.085391855559, + 11462.612533346917, + 11473.149830295062, + 11486.6972827, + 11503.254890561731, + 11522.822653880248, + 11545.400572655552, + 11570.988646887652, + 11599.586876576539, + 11631.195261722221, + 11665.81380232469, + 11703.44249838395, + 11744.0813499, + 11787.73035687284, + 11834.38951930247, + 11884.058837188888, + 11936.7383105321, + 11992.427939332101, + 12051.12772358889, + 12112.83766330247, + 12177.55775847284, + 12245.2880091, + 12316.028415183953, + 12389.778976724694, + 12466.539693722221, + 12546.310566176548, + 12629.091594087657, + 12714.88277745556, + 12803.684116280254, + 12895.495610561728, + 12990.3172603 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.426538638300477, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_15_MP.json b/examples/ColmacCxA_15_MP.json new file mode 100644 index 0000000..fa97ea2 --- /dev/null +++ b/examples/ColmacCxA_15_MP.json @@ -0,0 +1,2174 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0016403443333333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 31917.961694600992, + 31391.874806391927, + 30918.015839095904, + 30494.579092399214, + 30119.869265325186, + 29792.301456234316, + 29510.401162824248, + 29272.804282129702, + 29078.257110522525, + 28925.61634371175, + 28813.849076743445, + 28742.032804000854, + 28709.355419204334, + 28715.115215411337, + 28758.72088501649, + 28839.691519751508, + 28957.656610685233, + 29112.356048223643, + 29303.64012210981, + 29531.469521423973, + 29795.915334583446, + 30097.159049342692, + 30435.49255279332, + 30811.318131363998, + 31225.148470820568, + 31677.606656266005, + 32169.42617214035, + 32701.45090222079, + 33274.6351296217, + 33890.043536794474, + 34548.851205527695, + 35252.343616947044, + 36001.91665151535, + 36799.076589032535, + 37645.44010863562, + 38542.73428879887, + 39492.79660733347, + 31971.699804146585, + 31443.74358673889, + 30968.07064035587, + 30542.868485033432, + 30166.435040144504, + 29837.178624399192, + 29553.617955844733, + 29314.382151865448, + 29118.210729182796, + 28963.9536038554, + 28850.57109127894, + 28777.133906186264, + 28742.82316264733, + 28746.9303740692, + 28788.85745319609, + 28868.116712109342, + 28984.33086222736, + 29137.233014305744, + 29326.6666784372, + 29552.58576405153, + 29815.05457991566, + 30114.247834133675, + 30450.450634146753, + 30824.0584867332, + 31235.57729800843, + 31685.623373425056, + 32174.923417772687, + 32704.314535178124, + 33274.74422910537, + 33887.27040235535, + 34543.06135706634, + 35243.39579471361, + 35989.66281610951, + 36783.36192140367, + 37626.10301008264, + 38519.6063809703, + 39465.702732227466, + 32458.817534935326, + 31914.03358633619, + 31422.034105061106, + 30980.945594292403, + 30589.004956549434, + 30244.55949368873, + 29946.06690690395, + 29692.095296725856, + 29481.32316302233, + 29312.539404998417, + 29184.64332119622, + 29096.644609495022, + 29047.663367111196, + 29036.93009059823, + 29063.78567584679, + 29127.681418084612, + 29228.179011876557, + 29364.950551124635, + 29537.77852906796, + 29746.555838282795, + 29991.28577068248, + 30272.082017517507, + 30589.168669375507, + 30942.8802161812, + 31333.66154719644, + 31762.067951020224, + 32228.765115588638, + 32734.529128174898, + 33280.24647538941, + 33866.914043179575, + 34495.63911683001, + 35167.63938096247, + 35884.24291953573, + 36646.88821584585, + 37457.124152525794, + 38316.61001154586, + 39227.11547421333, + 32952.19822517497, + 32390.579978788373, + 31882.252877555482, + 31425.282407805043, + 31017.84445520284, + 30658.225304751835, + 30344.821640792106, + 30076.14054700085, + 29850.79950639236, + 29667.52640131812, + 29525.15951346666, + 29422.647523863674, + 29359.04951287198, + 29333.534960191486, + 29345.383744859286, + 29393.98614524952, + 29478.842839073506, + 29599.56490337968, + 29755.873814553557, + 29947.60144831784, + 30174.690079732307, + 30437.192383193847, + 30735.271432436555, + 31069.200700531557, + 31439.364059887117, + 31846.255782248692, + 32290.480538698765, + 32772.753399657006, + 33293.89983488021, + 33854.855713462246, + 34456.667303834125, + 35100.49127376407, + 35787.594690357226, + 36519.35502005611, + 37297.260128640104, + 38122.908281225944, + 38998.00814226734, + 33451.85383823853, + 32873.39503517005, + 32348.739536615205, + 31875.89181204915, + 31452.966730284126, + 31078.189559469505, + 30749.895967091783, + 30466.53201997458, + 30226.654184278654, + 30028.929325501853, + 29872.134708479185, + 29755.157997382757, + 29676.997255721806, + 29636.760946342663, + 29633.667931428852, + 29667.047472500963, + 29736.3392304167, + 29841.093265370946, + 29980.970036895647, + 30155.740403859927, + 30365.28562446999, + 30609.597356269158, + 30888.777656137925, + 31203.03898029388, + 31552.70418429169, + 31938.206523023255, + 32360.089650717473, + 32819.00762094042, + 33315.72488659537, + 33851.11629992257, + 34426.1671124995, + 35041.97297524073, + 35699.73993839795, + 36400.784451559986, + 37146.53336365271, + 37938.523922939305, + 38778.40377701983, + 33957.79633749902, + 33362.491026555836, + 32821.50666101647, + 32332.786693502545, + 31894.38497597268, + 31504.465759722705, + 31161.303695385534, + 30863.283832931225, + 30608.901621666933, + 30396.762910236976, + 30225.583946622748, + 30094.1913781428, + 30001.52225145279, + 29946.624012545486, + 29928.654506750816, + 29946.881978735826, + 30000.685072504635, + 30089.552831398534, + 30213.084698095918, + 30370.990514612324, + 30563.09052230039, + 30789.31536184986, + 31049.706073287674, + 31344.41409597781, + 31673.701268621382, + 32037.93982925672, + 32437.612415259133, + 32873.31206334115, + 33345.74220955244, + 33855.71668927971, + 34404.15973724681, + 34992.10598751482, + 35620.70047348177, + 36291.198627882986, + 37004.966282790745, + 37763.4796696146, + 38568.32541910112, + 34470.03768632948, + 33857.88022402033, + 33300.56682953549, + 32795.97993864299, + 32342.11238644788, + 31937.067407392406, + 31579.058635255937, + 31266.41010315493, + 30997.556243542975, + 30771.041888210817, + 30585.522268286266, + 30439.763014234322, + 30332.640155857043, + 30263.140122293647, + 30230.359742020482, + 30233.506242851, + 30271.897251935763, + 30344.960795762505, + 30452.235300156026, + 30593.369590278282, + 30768.122890628358, + 30976.364825042416, + 31218.07541669381, + 31493.345088092952, + 31802.37466108742, + 32145.475356861873, + 32523.06879593817, + 32935.686998175195, + 33383.972382769025, + 33868.67776825283, + 34390.66637249692, + 34950.911812708706, + 35550.49810543275, + 36190.61966655071, + 36872.581311281356, + 37597.79825418064, + 38367.79610914156, + 34699.806099028385, + 34080.15443842167, + 33515.58118617634, + 33003.9416499673, + 32543.20153680653, + 32131.436953043176, + 31766.83440436347, + 31447.69079579082, + 31172.413431685694, + 30939.520015745726, + 30747.63865100566, + 30595.507839837366, + 30481.976483949824, + 30406.00388438914, + 30366.659741538577, + 30363.124155118458, + 30394.68762418628, + 30460.751047136666, + 30560.82572170131, + 30694.533344949083, + 30861.606013285946, + 31061.886222455003, + 31295.326867536456, + 31561.991242947683, + 31862.0530424431, + 32195.796359114327, + 32563.61568539005, + 32966.01591303613, + 33403.612333155506, + 33877.130636188245, + 34387.406911911574, + 34935.38764943979, + 35522.12973722438, + 36148.80046305387, + 36816.67751405395, + 37527.1489766875, + 38281.713336754365, + 34988.589848102885, + 34359.57489863814, + 33785.932620948435, + 33265.484433948266, + 32796.1621558891, + 32376.008004359584, + 32003.17459628555, + 31675.924947929845, + 31392.632474892496, + 31151.7809921107, + 30951.964713858677, + 30791.888253747828, + 30670.366624726685, + 30586.32523908086, + 30538.799908433124, + 30526.93684374336, + 30549.99265530859, + 30607.33435276292, + 30698.43934507761, + 30822.895440561053, + 30980.400846858716, + 31170.76417095323, + 31393.90441916435, + 31649.85099714893, + 31938.74370990094, + 32260.832761751568, + 32616.478756368957, + 33006.152696758494, + 33430.43598526271, + 33890.020423561116, + 34385.70821267051, + 34918.41195294475, + 35489.15464407474, + 36099.06968508863, + 36749.40087435162, + 37441.502409566056, + 38176.83888777135, + 35513.46478619229, + 34867.58732148388, + 34277.616614031554, + 33741.313065896196, + 33256.54747847574, + 32821.30105250524, + 32433.665388056943, + 32091.842484540146, + 31794.144740701297, + 31538.994954623995, + 31324.926323728912, + 31150.58244477388, + 31014.717313853835, + 30916.19532640083, + 30853.991277184065, + 30827.19036030983, + 30834.988169221593, + 30876.690696699887, + 30951.714334862387, + 31059.58587516391, + 31199.94250839635, + 31372.531824688776, + 31577.211813507365, + 31813.950863655402, + 32082.827763273275, + 32384.031699838568, + 32717.86226016592, + 33084.7294304071, + 33485.153596051045, + 33919.76554192378, + 34389.306452188415, + 34894.62791034529, + 35436.69189923176, + 36016.57080102234, + 36635.447397228716, + 37294.61486869965, + 37995.47679562095, + 36044.674463970696, + 35381.92976363215, + 34775.631387561014, + 34223.47872096456, + 33723.28154838717, + 33272.96005371032, + 32870.544820152674, + 32514.17683026996, + 32202.107465955083, + 31932.698508438032, + 31704.422138285907, + 31515.86093540298, + 31365.7078790306, + 31252.766347747252, + 31175.950119468576, + 31134.283371447294, + 31126.90068027324, + 31153.04702187344, + 31212.077771511966, + 31303.458703790067, + 31426.765992646076, + 31581.68621135547, + 31768.01633253084, + 31985.663728121926, + 32234.64616941554, + 32515.091827035696, + 32827.239270943435, + 33171.43747043695, + 33548.14579415163, + 33957.93401005989, + 34401.482285471335, + 34879.58118703268, + 35393.13168072769, + 35943.14513187737, + 36530.74330513975, + 37157.158364510055, + 37823.73287332054, + 36582.23084481113, + 35902.614496157585, + 35279.98952031302, + 34711.99428563116, + 34196.377559802786, + 33730.99850985581, + 33313.826702155326, + 32942.94210240351, + 32616.53507563963, + 32332.906386240156, + 32090.467197918606, + 31887.739073725665, + 31723.353976049122, + 31596.054266613868, + 31504.69270648199, + 31448.232456052614, + 31425.74707506204, + 31436.42052258368, + 31479.54715702806, + 31554.53173614283, + 31660.889417012768, + 31798.24575605977, + 31966.33670904287, + 32165.008631058194, + 32394.218276539035, + 32654.03279925576, + 32944.62975231589, + 33266.29708816407, + 33619.43315858206, + 34004.54671468873, + 34422.25690694008, + 34873.29328512928, + 35358.49579838653, + 35878.81479517924, + 36435.31102331187, + 37029.15562992608, + 37661.630161500565, + 37126.145892086606, + 36429.65379013478, + 35790.703591063786, + 35206.87264637378, + 34675.848706901954, + 34195.42992282268, + 33763.524843647465, + 33378.15241822489, + 33037.44199474067, + 32739.633320717698, + 32483.076543015915, + 32266.232207832432, + 32087.671260701474, + 31946.07504649437, + 31840.235309419575, + 31769.054193022715, + 31731.54424018647, + 31726.82839313069, + 31754.139993412315, + 31812.82278192544, + 31902.330898901266, + 32022.228883908097, + 32172.19167585143, + 32352.0046129738, + 32561.5634328549, + 32800.874272411565, + 33070.05366789772, + 33369.32855490442, + 33699.036268359894, + 34059.624542529404, + 34451.65151101539, + 34875.78570675745, + 35332.80606203219, + 35823.601908453486, + 36349.172976972186, + 36910.629397876386, + 37509.19170079122, + 37676.43156917013, + 36963.05991663833, + 36307.786178589486, + 35708.12668967019, + 35161.708183864066, + 34666.26779449192, + 34219.65305421164, + 33819.82189501827, + 33464.842648243975, + 33152.89404455801, + 32882.2652139668, + 32651.355685813844, + 32458.675388779797, + 32302.844650882445, + 32182.594199476658, + 32096.765161254454, + 32044.309062244978, + 32024.287827814493, + 32035.87378266637, + 32078.349650841134, + 32151.108555716397, + 32253.654020006918, + 32385.599965764563, + 32546.67071437835, + 32736.700986574375, + 32955.6359024159, + 33203.53098130331, + 33480.55214197401, + 33786.97570250271, + 34123.18838030111, + 34489.68729211805, + 34887.07995403953, + 35316.08428148865, + 35777.52858922565, + 36272.351591347826, + 36801.60240128974, + 37366.44053182287, + 38233.09983943475, + 37502.84514674286, + 36831.24986166635, + 36215.76930199823, + 35653.96918486853, + 35143.52562674448, + 34682.225143430434, + 34267.96465006784, + 33898.75146113526, + 33572.70329044844, + 33288.04825116016, + 33043.1248557604, + 32836.382016076226, + 32666.37904327182, + 32531.785647848516, + 32431.381939644754, + 32364.058427836077, + 32328.81602093521, + 32324.76602679194, + 32351.13015259319, + 32407.240504863035, + 32492.539589462645, + 32606.58031159032, + 32749.025975781486, + 32919.65028590869, + 33118.337345181586, + 33345.081656147006, + 33599.988120688824, + 33883.2720400281, + 34195.259114723, + 34536.385444668784, + 34907.19752909789, + 35308.35226657984, + 35740.616955021265, + 36204.86929166594, + 36702.09737309482, + 37233.39969522584, + 38796.16266625345, + 38049.02175152298, + 37361.10721907057, + 36729.81336983565, + 36152.644904094705, + 35627.21692146136, + 35151.254920886415, + 34722.594800657724, + 34339.1828584003, + 33999.075791076306, + 33700.44069498494, + 33441.55506576263, + 33220.80679838285, + 33036.694187156194, + 32887.82592573047, + 32772.921107090486, + 32690.809223558248, + 32640.4301667929, + 32620.834227790645, + 32631.182096884862, + 32670.744863746022, + 32738.90401738173, + 32835.15144613671, + 32959.08943769282, + 33110.43067906903, + 33288.99825662146, + 33494.725656043265, + 33727.656762364844, + 33987.945859953674, + 34275.85763251426, + 34591.76716308839, + 34936.1599340549, + 35309.63182712969, + 35712.88912336591, + 36146.748503153656, + 36612.137046220356, + 37110.092231630406, + 39365.63201299926, + 38601.60200205329, + 37897.37082957833, + 37250.27177966027, + 36657.748535721985, + 36117.35518052352, + 35626.75619616215, + 35183.72646407212, + 34786.15126502485, + 34432.02627912898, + 34119.45758583009, + 33846.66166391106, + 33611.96539149178, + 33413.80604602929, + 33250.73130431778, + 33121.399242488544, + 33024.578336009974, + 32959.147459687636, + 32924.09588766418, + 32918.523293419414, + 32941.639749770206, + 32992.7657288706, + 33071.33210221178, + 33176.880140621986, + 33309.06151426664, + 33467.63829264827, + 33652.48294460647, + 33863.57833831807, + 34101.01774129694, + 34365.00482039407, + 34655.85364179763, + 34973.98867103288, + 35319.94477296217, + 35694.36721178505, + 36098.01165103809, + 36531.74415359511, + 36996.54118166692, + 39941.51984304519, + 39160.5981694084, + 38440.053271965866, + 37777.15741794985, + 37169.29327392972, + 36613.95390581194, + 36108.74277884017, + 35651.37375759512, + 35239.67110599466, + 34871.56948729377, + 34545.113964084536, + 34258.45999829622, + 34009.87345119515, + 33797.7305833848, + 33620.51805480578, + 33476.83292473581, + 33365.38265178972, + 33284.985093919495, + 33234.5685084142, + 33213.17155190008, + 33219.94328034043, + 33254.14314903573, + 33315.14101262354, + 33402.41712507861, + 33515.56213971272, + 33654.27710917482, + 33818.37348545102, + 34007.77311986447, + 34222.50826307551, + 34462.721565081585, + 34728.666075217254, + 35020.70524215418, + 35339.31291390122, + 35685.07333780428, + 36058.68116054636, + 36460.941428147744, + 36892.769585965645, + 40523.83811976429, + 39726.022524662934, + 38989.167125009335, + 38310.483171182226, + 37687.292312897334, + 37117.02659920761, + 36597.228478503115, + 36125.55079851096, + 35699.75680629546, + 35317.720148258035, + 34977.42487013721, + 34676.96541700862, + 34414.54663328508, + 34188.48376271644, + 33997.20244838978, + 33839.2387327292, + 33713.23905749599, + 33617.960263788555, + 33552.26959204239, + 33515.144682030135, + 33505.67357286155, + 33523.05470298353, + 33566.59691018006, + 33635.71943157231, + 33729.95190361848, + 33848.934362113985, + 33992.417242191324, + 34160.26137832007, + 34352.438004307005, + 34569.028753296, + 34810.22565776803, + 35076.33114954121, + 35367.758059770786, + 35685.02961894911, + 36028.77945690564, + 36399.75160280703, + 36798.800485156935, + 41112.59880652955, + 40297.88733889149, + 39544.724967484966, + 38850.261925835155, + 38211.7588468042, + 37626.58676259147, + 37092.22710473347, + 36606.271704103754, + 36166.42279091301, + 35770.49299470912, + 35416.40534437702, + 35102.193268138784, + 34826.000593553654, + 34586.08154751792, + 34380.80075626504, + 34208.633245365585, + 34068.16443972725, + 33958.090163594854, + 33877.21664055036, + 33824.460493512815, + 33798.8487447384, + 33799.51881582043, + 33825.718527689336, + 33876.80610061267, + 33952.25015419511, + 34051.629707378495, + 34174.63417844171, + 34321.063385000816, + 34490.82754400895, + 34683.94727175643, + 34900.55358387069, + 35140.88789531628, + 35405.30202039481, + 35694.25817274509, + 36008.328965343004, + 36348.197410501634, + 36714.65691987106, + 41707.81386671397, + 40876.204883168655, + 40106.73937816895, + 39396.50656838643, + 38742.70606982969, + 38142.64789784454, + 37593.75246711386, + 37093.550591657644, + 36639.68348483305, + 36229.902759334356, + 35862.07042719292, + 35534.15889977727, + 35244.250987793006, + 34990.53990128292, + 34771.32924962688, + 34585.03304154185, + 34430.17568508198, + 34305.391987638526, + 34209.427155939826, + 34141.1367960514, + 34099.48691337585, + 34083.55391265289, + 34092.524597959404, + 34125.69617270938, + 34182.47623965389, + 34262.38280088122, + 34365.04425781668, + 34490.19941122271, + 34637.69746119895, + 34807.498007182134, + 34999.671047946074, + 35214.39698160175, + 35451.966605597256, + 35712.781116717764, + 35997.35211108562, + 36306.30158416035, + 36640.36193073841, + 42309.49526369062, + 41460.987428569075, + 40675.2229358375, + 39949.22998531387, + 39280.14717615323, + 38665.22350684776, + 38101.818375226816, + 37587.40157845685, + 37119.553313041346, + 36695.9641748211, + 36314.435158973865, + 35972.877660014565, + 35669.3134717953, + 35401.874787505185, + 35168.80419967057, + 34968.45470015489, + 34799.289680158676, + 34659.8829302196, + 34548.918640212454, + 34465.19139934915, + 34407.60619617872, + 34375.17841858735, + 34367.033853798304, + 34382.40868837203, + 34420.64950820601, + 34481.213298534916, + 34563.66744393053, + 34667.68972830175, + 34793.068334894604, + 34939.70184629222, + 35107.599244414894, + 35296.87991051999, + 35507.77362520201, + 35740.62056839264, + 35995.871319360616, + 36274.086856711845, + 36575.938558389236, + 42917.65496083246, + 42052.24724616734, + 41250.188219266805, + 40508.44506309524, + 39824.095359954146, + 39194.3270914821, + 38616.43863865492, + 38087.838781785445, + 37606.04670052364, + 37168.69197385668, + 36773.51458010873, + 36418.36489694119, + 36101.20370135255, + 35820.102169678394, + 35573.24187759146, + 35358.91480010162, + 35175.523311555815, + 35021.58018563815, + 34895.708595369855, + 34796.64211310927, + 34723.224710551876, + 34674.410758730235, + 34649.26502801408, + 34646.962688110216, + 34666.78930806262, + 34708.140856252394, + 34770.52370039773, + 34853.55460755392, + 34956.96074411345, + 35080.579675805864, + 35224.359367697885, + 35388.358184193305, + 35572.74488903309, + 35777.79864529532, + 36003.9090153951, + 36251.57596108482, + 36521.40984345385, + 43532.30492151255, + 42649.996607038076, + 41831.647807233065, + 41074.16468820835, + 40374.56381541185, + 39729.97215362857, + 39137.62706698075, + 38594.876318927665, + 38099.1780722657, + 37648.10088912843, + 37239.3237309865, + 36870.63595864771, + 36539.93733225696, + 36245.238011296286, + 35984.65855458484, + 35756.4299202789, + 35558.89346587187, + 35390.500948194276, + 35249.81452341377, + 35135.506747035106, + 35046.36057390018, + 34981.269358188016, + 34939.236853414724, + 34919.37721243362, + 34920.914987435055, + 34943.185129946505, + 34985.63299083265, + 35047.814320295234, + 35129.39526787309, + 35230.15238244227, + 35349.97261221587, + 35488.853304744145, + 35646.902206914434, + 35824.33746495126, + 36021.4876244162, + 36238.79163020807, + 36476.79882656263, + 44153.45710910391, + 43254.24778225589, + 42419.61427851247, + 41646.40174713099, + 40931.565736705714, + 40272.17219516814, + 39665.39746978688, + 39108.528307167646, + 38598.96185325325, + 38134.20565332372, + 37711.87765199608, + 37329.706193224614, + 36985.53002030061, + 36677.298275852554, + 36403.07050184598, + 36161.01663958363, + 35949.417029705335, + 35766.662412188045, + 35611.2539263458, + 35481.80311082984, + 35377.03190362844, + 35295.77264206709, + 35236.9680628083, + 35199.67130185181, + 35183.04589453441, + 35186.365775530016, + 35209.01527884969, + 35250.48913784163, + 35310.39248519111, + 35388.44085292058, + 35484.460172389576, + 35598.386774294784, + 35730.26738866996, + 35880.259144886055, + 36048.629571651094, + 36235.756597010244, + 36442.12854834576, + 44222.87596610602, + 43321.78873539113, + 42485.346144917, + 41710.38656428515, + 40993.85876243402, + 40332.82190763931, + 39724.44556751381, + 39166.00970900736, + 38654.90469840701, + 38188.63130133694, + 37764.800682758374, + 37381.13440696975, + 37035.46443760656, + 36725.73313764142, + 36449.993269384104, + 36206.40799448151, + 35993.25087391764, + 35808.90586801362, + 35651.8673364277, + 35520.740038155265, + 35414.23913152879, + 35331.1901742179, + 35270.52912322935, + 35231.302334907035, + 35212.666564931904, + 35213.88896832206, + 35234.34709943277, + 35273.52891195638, + 35331.03275892237, + 35406.567392697325, + 35499.95196498502, + 35611.11602682627, + 35740.099528599036, + 35887.05282001844, + 36052.23665013666, + 36236.02216734314, + 36438.8909193642, + 83873.07036365286, + 82133.24895033192, + 80495.90700300284, + 78954.83204859377, + 77503.92201337006, + 76137.18522293396, + 74848.74040222513, + 73632.81667552014, + 72483.75356643276, + 71396.00099791391, + 70364.11929225152, + 69382.77917107083, + 68446.76175533402, + 67550.95856534044, + 66690.3715207267, + 65860.11294046634, + 65055.40554287008, + 64271.58244558589, + 63504.08716559868, + 62748.473619230586, + 62000.40612214086, + 61255.659389325854, + 60510.11853511901, + 59759.77907319103, + 59000.74691654956, + 58229.23837753947, + 57441.58016784273, + 56634.20939847852, + 55803.67357980292, + 54946.63062150936, + 54059.84883262831, + 53140.206921527286, + 52184.69399591113, + 51190.40956282155, + 50154.5635286376, + 49074.476199075274, + 47947.578279187815 + ], + "input_power": [ + 12152.289163, + 12154.977451750614, + 12172.304189646911, + 12204.26937668889, + 12250.873012876544, + 12312.115098209877, + 12387.99563268889, + 12478.51461631358, + 12583.672049083949, + 12703.467931, + 12837.90226206173, + 12986.975042269138, + 13150.686271622224, + 13329.035950120986, + 13522.024077765433, + 13729.650654555555, + 13951.915680491362, + 14188.81915557284, + 14440.361079799997, + 14706.541453172842, + 14987.360275691359, + 15282.817547355553, + 15592.913268165436, + 15917.647438120988, + 16257.020057222217, + 16611.031125469137, + 16979.68064286173, + 17362.968609399995, + 17760.895025083955, + 18173.459889913578, + 18600.663203888886, + 19042.504967009878, + 19498.985179276544, + 19970.103840688895, + 20455.860951246916, + 20956.25651095062, + 21471.29051979999, + 12153.25190123, + 12155.964951900618, + 12173.316451716913, + 12205.30640067889, + 12251.934798786542, + 12313.201646039877, + 12389.10694243889, + 12479.65068798358, + 12584.832882673953, + 12704.65352651, + 12839.11261949173, + 12988.210161619138, + 13151.946152892222, + 13330.320593310984, + 13523.333482875434, + 13730.984821585555, + 13953.27460944136, + 14190.20284644284, + 14441.769532589999, + 14707.974667882843, + 14988.818252321358, + 15284.300285905554, + 15594.420768635435, + 15919.17970051099, + 16258.57708153222, + 16612.61291169914, + 16981.287191011732, + 17364.599919469994, + 17762.551097073952, + 18175.140723823577, + 18602.368799718886, + 19044.23532475988, + 19500.74029894654, + 19971.883722278897, + 20457.665594756916, + 20958.08591638062, + 21473.14468714999, + 12161.9165453, + 12164.852453250618, + 12182.426810346915, + 12214.639616588891, + 12261.490871976546, + 12322.98057650988, + 12399.10873018889, + 12489.87533301358, + 12595.280384983951, + 12715.3238861, + 12850.005836361732, + 12999.32623576914, + 13163.285084322224, + 13341.882382020985, + 13535.118128865435, + 13742.992324855555, + 13965.504969991362, + 14202.65606427284, + 14454.445607699998, + 14720.873600272846, + 15001.940041991362, + 15297.644932855555, + 15607.988272865436, + 15932.970062020988, + 16272.590300322221, + 16626.84898776914, + 16995.74612436173, + 17379.281710099996, + 17777.455744983956, + 18190.268229013578, + 18617.71916218889, + 19059.80854450988, + 19516.536375976542, + 19987.9026565889, + 20473.90738634692, + 20974.55056525062, + 21489.83219329999, + 12170.581189370001, + 12173.739954600616, + 12191.537168976913, + 12223.97283249889, + 12271.046945166545, + 12332.759506979879, + 12409.110517938889, + 12500.099978043581, + 12605.72788729395, + 12725.994245689999, + 12860.899053231731, + 13010.442309919139, + 13174.624015752224, + 13353.444170730985, + 13546.902774855434, + 13754.999828125554, + 13977.73533054136, + 14215.109282102841, + 14467.12168281, + 14733.772532662844, + 15015.061831661362, + 15310.989579805551, + 15621.555777095436, + 15946.760423530988, + 16286.60351911222, + 16641.08506383914, + 17010.20505771173, + 17393.96350073, + 17792.360392893956, + 18205.39573420358, + 18633.069524658884, + 19075.381764259884, + 19532.332453006544, + 20003.921590898895, + 20490.149177936917, + 20991.015214120624, + 21506.519699449993, + 12179.24583344, + 12182.627455950616, + 12200.647527606914, + 12233.306048408887, + 12280.603018356542, + 12342.538437449879, + 12419.112305688888, + 12510.324623073579, + 12616.175389603952, + 12736.664605279999, + 12871.79227010173, + 13021.558384069138, + 13185.962947182225, + 13365.005959440983, + 13558.687420845434, + 13767.007331395555, + 13989.96569109136, + 14227.56249993284, + 14479.797757919998, + 14746.671465052841, + 15028.18362133136, + 15324.334226755553, + 15635.123281325434, + 15960.550785040987, + 16300.616737902217, + 16655.32113990914, + 17024.66399106173, + 17408.645291359997, + 17807.265040803955, + 18220.52323939358, + 18648.419887128886, + 19090.95498400988, + 19548.128530036545, + 20019.940525208902, + 20506.390969526914, + 21007.479862990618, + 21523.207205599985, + 12187.91047751, + 12191.514957300617, + 12209.757886236914, + 12242.63926431889, + 12290.159091546544, + 12352.317367919879, + 12429.11409343889, + 12520.549268103581, + 12626.622891913952, + 12747.33496487, + 12882.685486971734, + 13032.67445821914, + 13197.301878612223, + 13376.567748150987, + 13570.472066835433, + 13779.014834665555, + 14002.196051641364, + 14240.01571776284, + 14492.473833029997, + 14759.570397442843, + 15041.305411001358, + 15337.678873705554, + 15648.690785555438, + 15974.34114655099, + 16314.629956692219, + 16669.557215979145, + 17039.12292441173, + 17423.32708199, + 17822.169688713955, + 18235.650744583585, + 18663.770249598885, + 19106.528203759884, + 19563.924607066543, + 20035.959459518897, + 20522.632761116918, + 21023.94451186062, + 21539.894711749992, + 12196.575121580001, + 12200.402458650617, + 12218.868244866913, + 12251.97248022889, + 12299.715164736543, + 12362.096298389877, + 12439.115881188889, + 12530.77391313358, + 12637.07039422395, + 12758.00532446, + 12893.578703841731, + 13043.79053236914, + 13208.640810042223, + 13388.129536860984, + 13582.256712825434, + 13791.022337935556, + 14014.42641219136, + 14252.46893559284, + 14505.149908139998, + 14772.469329832842, + 15054.42720067136, + 15351.023520655554, + 15662.258289785435, + 15988.13150806099, + 16328.64317548222, + 16683.793292049137, + 17053.581857761732, + 17438.008872619997, + 17837.07433662395, + 18250.77824977358, + 18679.120612068884, + 19122.10142350988, + 19579.720684096545, + 20051.978393828897, + 20538.87455270692, + 21040.40916073062, + 21556.58221789999, + 12200.427422333521, + 12204.353841750826, + 12222.918710313812, + 12256.122028022475, + 12303.963794876816, + 12366.44401087684, + 12443.562676022539, + 12535.319790313919, + 12641.715353750977, + 12762.749366333714, + 12898.421828062133, + 13048.732738936229, + 13213.682098956002, + 13393.26990812145, + 13587.49616643259, + 13796.360873889396, + 14019.864030491892, + 14258.00563624006, + 14510.785691133904, + 14778.204195173435, + 15060.26114835864, + 15356.956550689523, + 15668.290402166094, + 15994.262702788335, + 16334.873452556252, + 16690.12265146986, + 17060.010299529138, + 17444.536396734093, + 17843.70094308474, + 18257.503938581052, + 18685.945383223047, + 19129.02527701073, + 19586.74361994408, + 20059.100412023123, + 20546.09565324783, + 21047.729343618226, + 21564.00148313428, + 12205.23976565, + 12209.289960000617, + 12227.978603496911, + 12261.305696138888, + 12309.271237926543, + 12371.875228859877, + 12449.11766893889, + 12540.99855816358, + 12647.51789653395, + 12768.675684049998, + 12904.471920711734, + 13054.906606519138, + 13219.979741472223, + 13399.691325570986, + 13594.041358815433, + 13803.029841205554, + 14026.656772741362, + 14264.92215342284, + 14517.825983249999, + 14785.368262222843, + 15067.54899034136, + 15364.368167605553, + 15675.825794015436, + 16001.92186957099, + 16342.656394272219, + 16698.02936811914, + 17068.04079111173, + 17452.690663249996, + 17851.978984533955, + 18265.90575496358, + 18694.470974538883, + 19137.67464325988, + 19595.516761126542, + 20067.997328138896, + 20555.116344296915, + 21056.87380960062, + 21573.26972404999, + 12213.904409720002, + 12218.177461350617, + 12237.088962126914, + 12270.63891204889, + 12318.827311116545, + 12381.654159329879, + 12459.11945668889, + 12551.223203193582, + 12657.965398843951, + 12779.34604364, + 12915.365137581732, + 13066.022680669139, + 13231.318672902224, + 13411.253114280986, + 13605.826004805434, + 13815.037344475551, + 14038.88713329136, + 14277.375371252841, + 14530.50205836, + 14798.267194612845, + 15080.67078001136, + 15377.712814555554, + 15689.393298245437, + 16015.71223108099, + 16356.66961306222, + 16712.26544418914, + 17082.49972446173, + 17467.372453879998, + 17866.883632443954, + 18281.03326015358, + 18709.82133700888, + 19153.247863009885, + 19611.312838156544, + 20084.016262448895, + 20571.358135886916, + 21073.338458470625, + 21589.957230199994, + 12222.56905379, + 12227.064962700615, + 12246.199320756916, + 12279.972127958888, + 12328.383384306544, + 12391.433089799879, + 12469.121244438888, + 12561.447848223577, + 12668.412901153952, + 12790.016403230002, + 12926.258354451731, + 13077.138754819138, + 13242.657604332224, + 13422.814902990984, + 13617.610650795434, + 13827.044847745556, + 14051.11749384136, + 14289.828589082841, + 14543.178133469999, + 14811.166127002843, + 15093.792569681362, + 15391.057461505556, + 15702.960802475434, + 16029.502592590987, + 16370.682831852218, + 16726.501520259142, + 17096.95865781173, + 17482.054244509996, + 17881.788280353954, + 18296.16076534358, + 18725.171699478884, + 19168.82108275988, + 19627.108915186545, + 20100.035196758898, + 20587.599927476916, + 21089.803107340616, + 21606.644736349986, + 12231.233697859998, + 12235.952464050615, + 12255.309679386914, + 12289.30534386889, + 12337.939457496544, + 12401.212020269877, + 12479.123032188887, + 12571.672493253582, + 12678.86040346395, + 12800.68676282, + 12937.15157132173, + 13088.254828969139, + 13253.996535762224, + 13434.376691700983, + 13629.395296785433, + 13839.052351015553, + 14063.347854391359, + 14302.281806912839, + 14555.854208579998, + 14824.065059392844, + 15106.91435935136, + 15404.402108455552, + 15716.528306705435, + 16043.292954100987, + 16384.69605064222, + 16740.73759632914, + 17111.417591161728, + 17496.73603514, + 17896.692928263958, + 18311.28827053358, + 18740.522061948883, + 19184.39430250988, + 19642.904992216543, + 20116.054131068897, + 20603.841719066913, + 21106.267756210622, + 21623.33224249999, + 12239.89834193, + 12244.839965400617, + 12264.420038016915, + 12298.63855977889, + 12347.495530686543, + 12410.990950739877, + 12489.12481993889, + 12581.89713828358, + 12689.30790577395, + 12811.35712241, + 12948.04478819173, + 13099.37090311914, + 13265.335467192222, + 13445.938480410987, + 13641.179942775434, + 13851.059854285555, + 14075.578214941364, + 14314.735024742842, + 14568.53028369, + 14836.963991782843, + 15120.03614902136, + 15417.746755405555, + 15730.095810935436, + 16057.08331561099, + 16398.70926943222, + 16754.973672399137, + 17125.876524511732, + 17511.417825769997, + 17911.597576173954, + 18326.415775723577, + 18755.872424418885, + 19199.96752225988, + 19658.701069246545, + 20132.073065378896, + 20620.083510656917, + 21122.73240508062, + 21640.01974864999, + 12248.562985999999, + 12253.727466750619, + 12273.530396646911, + 12307.97177568889, + 12357.051603876542, + 12420.769881209879, + 12499.12660768889, + 12592.12178331358, + 12699.75540808395, + 12822.027482, + 12958.938005061733, + 13110.486977269138, + 13276.674398622223, + 13457.500269120987, + 13652.964588765433, + 13863.067357555554, + 14087.808575491363, + 14327.18824257284, + 14581.206358799998, + 14849.862924172843, + 15133.157938691358, + 15431.091402355554, + 15743.663315165437, + 16070.87367712099, + 16412.72248822222, + 16769.20974846914, + 17140.335457861733, + 17526.099616399995, + 17926.502224083953, + 18341.543280913582, + 18771.222786888884, + 19215.54074200988, + 19674.497146276542, + 20148.0919996889, + 20636.325302246918, + 21139.197053950622, + 21656.70725479999, + 12257.22763007, + 12262.614968100615, + 12282.640755276912, + 12317.30499159889, + 12366.607677066542, + 12430.548811679877, + 12509.128395438887, + 12602.34642834358, + 12710.202910393948, + 12832.69784159, + 12969.831221931732, + 13121.603051419135, + 13288.013330052221, + 13469.062057830986, + 13664.749234755433, + 13875.074860825553, + 14100.038936041361, + 14339.64146040284, + 14593.88243391, + 14862.761856562842, + 15146.279728361358, + 15444.436049305554, + 15757.230819395436, + 16084.66403863099, + 16426.735707012216, + 16783.445824539136, + 17154.79439121173, + 17540.781407029997, + 17941.406871993953, + 18356.67078610358, + 18786.573149358883, + 19231.113961759882, + 19690.293223306544, + 20164.110933998894, + 20652.56709383692, + 21155.66170282062, + 21673.39476094999, + 12265.892274140002, + 12271.502469450617, + 12291.751113906916, + 12326.63820750889, + 12376.163750256545, + 12440.327742149879, + 12519.13018318889, + 12612.57107337358, + 12720.65041270395, + 12843.368201180001, + 12980.724438801732, + 13132.71912556914, + 13299.352261482225, + 13480.623846540984, + 13676.533880745435, + 13887.082364095555, + 14112.269296591361, + 14352.094678232841, + 14606.558509019998, + 14875.660788952844, + 15159.401518031362, + 15457.780696255555, + 15770.798323625435, + 16098.454400140987, + 16440.748925802218, + 16797.681900609143, + 17169.25332456173, + 17555.463197659996, + 17956.311519903957, + 18371.79829129358, + 18801.923511828885, + 19246.687181509882, + 19706.089300336545, + 20180.1298683089, + 20668.808885426915, + 21172.126351690615, + 21690.082267099988, + 12274.556918209999, + 12280.389970800616, + 12300.861472536912, + 12335.97142341889, + 12385.719823446547, + 12450.106672619879, + 12529.13197093889, + 12622.79571840358, + 12731.09791501395, + 12854.038560770001, + 12991.617655671731, + 13143.835199719138, + 13310.691192912223, + 13492.185635250984, + 13688.318526735433, + 13899.089867365554, + 14124.49965714136, + 14364.54789606284, + 14619.234584129998, + 14888.559721342845, + 15172.523307701364, + 15471.125343205553, + 15784.365827855436, + 16112.244761650989, + 16454.76214459222, + 16811.917976679142, + 17183.712257911728, + 17570.14498829, + 17971.216167813956, + 18386.92579648358, + 18817.273874298884, + 19262.260401259882, + 19721.885377366543, + 20196.148802618893, + 20685.050677016916, + 21188.59100056062, + 21706.769773249995, + 12283.22156228, + 12289.277472150616, + 12309.971831166915, + 12345.304639328888, + 12395.275896636544, + 12459.885603089877, + 12539.133758688888, + 12633.020363433578, + 12741.54541732395, + 12864.708920359999, + 13002.51087254173, + 13154.951273869137, + 13322.030124342224, + 13503.747423960984, + 13700.103172725432, + 13911.097370635554, + 14136.73001769136, + 14377.00111389284, + 14631.910659239997, + 14901.458653732845, + 15185.64509737136, + 15484.46999015555, + 15797.933332085435, + 16126.035123160986, + 16468.775363382218, + 16826.154052749138, + 17198.17119126173, + 17584.826778919993, + 17986.120815723953, + 18402.05330167358, + 18832.624236768886, + 19277.83362100988, + 19737.68145439654, + 20212.167736928903, + 20701.292468606916, + 21205.05564943062, + 21723.457279399987, + 12291.88620635, + 12298.164973500618, + 12319.082189796913, + 12354.63785523889, + 12404.831969826544, + 12469.66453355988, + 12549.13554643889, + 12643.24500846358, + 12751.99291963395, + 12875.379279949999, + 13013.404089411733, + 13166.067348019138, + 13333.369055772226, + 13515.309212670985, + 13711.887818715433, + 13923.104873905555, + 14148.960378241363, + 14389.454331722842, + 14644.586734349998, + 14914.357586122844, + 15198.76688704136, + 15497.814637105554, + 15811.500836315437, + 16139.82548467099, + 16482.788582172223, + 16840.39012881914, + 17212.630124611733, + 17599.50856955, + 18001.025463633956, + 18417.18080686358, + 18847.974599238885, + 19293.406840759882, + 19753.477531426543, + 20228.1866712389, + 20717.534260196917, + 21221.52029830062, + 21740.14478554999, + 12300.550850420002, + 12307.052474850616, + 12328.192548426912, + 12363.971071148891, + 12414.388043016543, + 12479.443464029879, + 12559.13733418889, + 12653.469653493581, + 12762.440421943951, + 12886.049639539999, + 13024.297306281731, + 13177.183422169137, + 13344.707987202222, + 13526.871001380985, + 13723.672464705434, + 13935.112377175556, + 14161.190738791362, + 14401.90754955284, + 14657.26280946, + 14927.256518512842, + 15211.888676711358, + 15511.159284055553, + 15825.068340545438, + 16153.61584618099, + 16496.801800962217, + 16854.626204889137, + 17227.08905796173, + 17614.190360179997, + 18015.930111543956, + 18432.308312053578, + 18863.324961708884, + 19308.980060509883, + 19769.273608456544, + 20244.205605548894, + 20733.776051786917, + 21237.984947170622, + 21756.83229169999, + 12309.21549449, + 12315.939976200616, + 12337.302907056914, + 12373.304287058889, + 12423.944116206541, + 12489.222394499879, + 12569.13912193889, + 12663.694298523578, + 12772.887924253951, + 12896.719999129999, + 13035.190523151728, + 13188.299496319138, + 13356.046918632223, + 13538.432790090985, + 13735.457110695434, + 13947.119880445556, + 14173.42109934136, + 14414.360767382841, + 14669.938884569998, + 14940.155450902843, + 15225.010466381362, + 15524.503931005553, + 15838.635844775436, + 16167.406207690987, + 16510.81501975222, + 16868.862280959143, + 17241.54799131173, + 17628.872150809995, + 18030.834759453952, + 18447.43581724358, + 18878.675324178883, + 19324.553280259883, + 19785.06968548655, + 20260.224539858897, + 20750.017843376918, + 21254.44959604062, + 21773.51979784999, + 12317.88013856, + 12324.827477550614, + 12346.413265686915, + 12382.637502968888, + 12433.500189396545, + 12499.001324969879, + 12579.140909688887, + 12673.918943553583, + 12783.335426563952, + 12907.39035872, + 13046.083740021732, + 13199.415570469138, + 13367.385850062228, + 13549.994578800985, + 13747.241756685433, + 13959.127383715553, + 14185.65145989136, + 14426.813985212842, + 14682.61495968, + 14953.054383292845, + 15238.132256051362, + 15537.848577955554, + 15852.203349005435, + 16181.196569200989, + 16524.82823854222, + 16883.09835702914, + 17256.00692466173, + 17643.55394144, + 18045.739407363955, + 18462.56332243358, + 18894.025686648885, + 19340.126500009883, + 19800.865762516543, + 20276.243474168896, + 20766.25963496692, + 21270.914244910622, + 21790.207303999992, + 12326.54478263, + 12333.714978900616, + 12355.523624316915, + 12391.970718878887, + 12443.056262586544, + 12508.780255439877, + 12589.142697438887, + 12684.143588583578, + 12793.78292887395, + 12918.060718309998, + 13056.97695689173, + 13210.531644619137, + 13378.724781492223, + 13561.556367510984, + 13759.026402675432, + 13971.134886985554, + 14197.88182044136, + 14439.26720304284, + 14695.291034789998, + 14965.953315682842, + 15251.25404572136, + 15551.193224905554, + 15865.770853235437, + 16194.986930710986, + 16538.84145733222, + 16897.33443309914, + 17270.46585801173, + 17658.235732069996, + 18060.644055273955, + 18477.69082762358, + 18909.376049118888, + 19355.69971975988, + 19816.66183954654, + 20292.2624084789, + 20782.501426556915, + 21287.37889378062, + 21806.89481014999, + 12335.2094267, + 12342.602480250616, + 12364.633982946913, + 12401.303934788888, + 12452.612335776545, + 12518.559185909877, + 12599.144485188888, + 12694.368233613579, + 12804.23043118395, + 12928.731077899998, + 13067.870173761732, + 13221.647718769138, + 13390.063712922223, + 13573.118156220984, + 13770.811048665433, + 13983.142390255553, + 14210.11218099136, + 14451.720420872838, + 14707.967109899997, + 14978.852248072844, + 15264.375835391362, + 15564.537871855555, + 15879.338357465434, + 16208.777292220986, + 16552.85467612222, + 16911.570509169138, + 17284.92479136173, + 17672.917522699998, + 18075.548703183955, + 18492.81833281358, + 18924.726411588883, + 19371.272939509883, + 19832.457916576535, + 20308.281342788894, + 20798.743218146912, + 21303.843542650626, + 21823.582316299995, + 12343.874070770002, + 12351.489981600616, + 12373.74434157691, + 12410.63715069889, + 12462.168408966543, + 12528.338116379879, + 12609.14627293889, + 12704.592878643582, + 12814.677933493951, + 12939.401437490002, + 13078.763390631731, + 13232.763792919137, + 13401.402644352222, + 13584.679944930987, + 13782.595694655434, + 13995.149893525553, + 14222.342541541362, + 14464.173638702843, + 14720.64318501, + 14991.751180462843, + 15277.49762506136, + 15577.882518805554, + 15892.905861695437, + 16222.56765373099, + 16566.86789491222, + 16925.806585239137, + 17299.38372471173, + 17687.599313329996, + 18090.453351093955, + 18507.94583800358, + 18940.076774058885, + 19386.846159259883, + 19848.253993606544, + 20324.300277098897, + 20814.985009736924, + 21320.30819152062, + 21840.26982244999, + 12344.83680977019, + 12352.477482540618, + 12374.756604456721, + 12411.67417551851, + 12463.230195725971, + 12529.424665079116, + 12610.257583577937, + 12705.728951222436, + 12815.838768012616, + 12940.587033948475, + 13079.973749030016, + 13233.998913257232, + 13402.662526630127, + 13585.9645891487, + 13783.905100812957, + 13996.484061622887, + 14223.701471578504, + 14465.557330679794, + 14722.05163892676, + 14993.184396319413, + 15278.95560285774, + 15579.365258541744, + 15894.413363371435, + 16224.099917346799, + 16568.424920467838, + 16927.388372734564, + 17300.99027414697, + 17689.230624705044, + 18092.109424408813, + 18509.626673258244, + 18941.78237125336, + 19388.576518394166, + 19850.009114680637, + 20326.0801601128, + 20816.78965469063, + 21322.137598414145, + 21842.12399128332, + 12778.069012499998, + 12796.852549250618, + 12830.274535146915, + 12878.334970188887, + 12941.033854376545, + 13018.371187709878, + 13110.346970188888, + 13216.96120181358, + 13338.21388258395, + 13474.1050125, + 13624.634591561731, + 13789.80261976914, + 13969.609097122226, + 14164.054023620982, + 14373.137399265435, + 14596.859224055555, + 14835.21949799136, + 15088.21822107284, + 15355.855393299998, + 15638.131014672847, + 15935.045085191363, + 16246.597604855551, + 16572.788573665435, + 16913.617991620988, + 17269.085858722217, + 17639.19217496914, + 18023.936940361727, + 18423.3201549, + 18837.341818583955, + 19266.00193141358, + 19709.300493388884, + 20167.23750450988, + 20639.81296477654, + 21127.026874188898, + 21628.879232746916, + 22145.370040450623, + 22676.499297299993 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_15_SP.json b/examples/ColmacCxA_15_SP.json new file mode 100644 index 0000000..7a17b88 --- /dev/null +++ b/examples/ColmacCxA_15_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 29263.78242803145, + 29273.191025354976, + 29282.601281881463, + 29291.949203594075, + 29301.150545761953, + 29310.100812940174, + 29318.675258969786, + 29326.728886977784, + 29334.096449377143, + 29340.59244786676, + 29346.01113343149, + 29350.126506342178, + 29352.692316155582, + 29353.442061714453, + 29352.08899114748, + 29348.326101869312, + 29341.82614058055, + 29332.241603267725, + 29319.20473520339, + 29302.327530945997, + 29281.201734339964, + 29255.3988385157, + 29224.47008588952, + 29187.94646816372, + 29145.338726326565, + 29096.137350652232, + 29039.812580700913, + 28975.814405318717, + 28903.572562637703, + 28822.49654007592, + 28731.975574337353, + 28631.378651411917, + 28520.054506575536, + 28397.331624390044, + 28262.51823870326, + 28114.90233264895, + 27953.751638646834, + 29395.473999730373, + 29424.905162796662, + 29453.39789907962, + 29480.879711502137, + 29507.257852273095, + 29532.41932288733, + 29556.230874125617, + 29578.539006054678, + 29599.169968027243, + 29617.929758681956, + 29634.6041259434, + 29648.958567022164, + 29660.73832841475, + 29669.668405903623, + 29675.45354455724, + 29677.778238729967, + 29676.306732062167, + 29670.683017480103, + 29660.53083719606, + 29645.45368270825, + 29625.034794800802, + 29598.837163543874, + 29566.403528293526, + 29527.2563776918, + 29480.89794966669, + 29426.810231432126, + 29364.454959488015, + 29293.27361962023, + 29212.68744690055, + 29122.097425686774, + 29020.884289622623, + 28908.408521637768, + 28784.010353947844, + 28647.00976805446, + 28496.70649474514, + 28332.380014093404, + 28153.289555458734, + 29301.386280133207, + 29310.59010407176, + 29319.80479675674, + 29328.966129355806, + 29337.98962232258, + 29346.77054539664, + 29355.18391760355, + 29363.08450725479, + 29370.30683194781, + 29376.665158566022, + 29381.95350327876, + 29385.94563154139, + 29388.395058095164, + 29389.035046967292, + 29387.578611471003, + 29383.718514205408, + 29377.127267055606, + 29367.45713119267, + 29354.340117073578, + 29337.387984441328, + 29316.192242324818, + 29290.324149038966, + 29259.334712184547, + 29222.75468864839, + 29180.094584603223, + 29130.84465550776, + 29074.474906106654, + 29010.4350904305, + 28938.1547117959, + 28857.043022805366, + 28766.489025347364, + 28665.86147059633, + 28554.50885901268, + 28431.759440342743, + 28296.92121361884, + 28149.28192715922, + 27988.1090785681, + 29430.367400032035, + 29459.629804302083, + 29487.96102273497, + 29515.288350330728, + 29541.518831375346, + 29566.539259440793, + 29590.21617738497, + 29612.395877351722, + 29632.904400770898, + 29651.54753835826, + 29668.110830115518, + 29682.35956533041, + 29694.038782576517, + 29702.873269713476, + 29708.567563886823, + 29710.805951528084, + 29709.252468354727, + 29703.550899370155, + 29693.324778863753, + 29678.177390410852, + 29657.691766872744, + 29631.430690396694, + 29598.936692415868, + 29559.732053649455, + 29513.318804102553, + 29459.17872306624, + 29396.773339117528, + 29325.543930119416, + 29244.9115232208, + 29154.276894856634, + 29053.02057074773, + 28940.502825900894, + 28816.063684608893, + 28679.02292045044, + 28528.6800562902, + 28364.314364278816, + 28185.18486585289, + 29640.779703602082, + 29648.13797427786, + 29655.590269173834, + 29663.070246118128, + 29670.491312224825, + 29677.74662389397, + 29684.709086811577, + 29691.231355949578, + 29697.145835565894, + 29702.2646792044, + 29706.37978969488, + 29709.262819153162, + 29710.665168980962, + 29710.317989865955, + 29707.932181781813, + 29703.198393988117, + 29695.787025030437, + 29685.34822274028, + 29671.511884235104, + 29653.887655918348, + 29632.06493347939, + 29605.61286189359, + 29574.08033542221, + 29536.995997612503, + 29493.868241297685, + 29444.185208596926, + 29387.414790915303, + 29323.004628943927, + 29250.382112659816, + 29168.954381325962, + 29078.108323491288, + 28977.210576990685, + 28865.607528945035, + 28742.62531576113, + 28607.56982313173, + 28459.726686035552, + 28298.361288737287, + 29745.405579532075, + 29773.147220549174, + 29800.02310846247, + 29825.958666966093, + 29850.85906904016, + 29874.609236950768, + 29897.07384224991, + 29918.09730577556, + 29937.503797651676, + 29955.097237288137, + 29970.661293380763, + 29983.959383911413, + 29994.73467614781, + 30002.71008664366, + 30007.588281238663, + 30009.05167505843, + 30006.76243251452, + 30000.3624673045, + 29989.473442411847, + 29973.696770106028, + 29952.613611942426, + 29925.784878762435, + 29892.75123069334, + 29853.033077148422, + 29806.130576826927, + 29751.523637714017, + 29688.671917080846, + 29617.014821484496, + 29535.97150676804, + 29444.94087806049, + 29343.301589776784, + 29230.41204561786, + 29105.610398570596, + 28968.21455090781, + 28817.522154188307, + 28652.810609256816, + 28473.33706624405, + 29981.896730197524, + 29987.404818101833, + 29993.090570948843, + 29998.88553322715, + 30004.70099871127, + 30010.42801046173, + 30015.937360824988, + 30021.07959143345, + 30025.684993205487, + 30029.56360634543, + 30032.505220343544, + 30034.279373976104, + 30034.635355305272, + 30033.302201679195, + 30029.988699732006, + 30024.38338538375, + 30016.154543840436, + 30004.950209594055, + 29990.398166422518, + 29972.105947389715, + 29949.660834845505, + 29922.629860425666, + 29890.55980505196, + 29852.977198932072, + 29809.388321559712, + 29759.279201714453, + 29702.115617461914, + 29637.343096153592, + 29564.386914427007, + 29482.65209820557, + 29391.52342269871, + 29290.365412401756, + 29178.522341096053, + 29055.31823184883, + 28920.05685701334, + 28772.021738228745, + 28610.47614642021, + 30062.23855863237, + 30088.455990693365, + 30113.87357797586, + 30138.414872868107, + 30161.983177044323, + 30184.46154146472, + 30205.71276637543, + 30225.579401308518, + 30243.88374508207, + 30260.427845800077, + 30274.993500852484, + 30287.342256915246, + 30297.215409950222, + 30304.334005205215, + 30308.398837214052, + 30309.09044979645, + 30306.06913605812, + 30298.974938390693, + 30287.427648471796, + 30271.026807264996, + 30249.3517050198, + 30221.961381271703, + 30188.39462484212, + 30148.169973838452, + 30100.785715654045, + 30045.719886968178, + 29982.430273746137, + 29910.354411239114, + 29828.909583984303, + 29737.4928258048, + 29635.480919809695, + 29522.230398394022, + 29397.077543238778, + 29259.338385310908, + 29108.30870486331, + 28943.26403143486, + 28763.459643850365, + 30324.73425007649, + 30328.387579029706, + 30332.30269889686, + 30336.409040826988, + 30340.615785255104, + 30344.811861902155, + 30348.865949775085, + 30352.626477166745, + 30355.92162165598, + 30358.55931010758, + 30360.327218672275, + 30360.992772786758, + 30360.303147173683, + 30357.98526584168, + 30353.745802085297, + 30347.271178485043, + 30338.227566907437, + 30326.260888504858, + 30310.99681371573, + 30292.04076226441, + 30268.977903161154, + 30241.373154702254, + 30208.771184469904, + 30170.69640933229, + 30126.652995443535, + 30076.124858243675, + 30018.575662458814, + 29953.448822100898, + 29880.167500467887, + 29798.1346101437, + 29706.73281299818, + 29605.32452018715, + 29493.25189215235, + 29369.836838621566, + 29234.381018608427, + 29086.165840412603, + 28924.45246161969, + 30380.86509824324, + 30405.55492630984, + 30429.51129351517, + 30452.655880941624, + 30474.89011895754, + 30496.09518721723, + 30516.13201466093, + 30534.841279514854, + 30552.043409291182, + 30567.538580788027, + 30581.106720089454, + 30592.507502565517, + 30601.4803528722, + 30607.744444951444, + 30610.99870203115, + 30610.921796625167, + 30607.17215053334, + 30599.387934841398, + 30587.18706992109, + 30570.167225430094, + 30547.90582031204, + 30519.960022796524, + 30485.866750399095, + 30445.14266992125, + 30397.28419745047, + 30341.767498360143, + 30278.048487309676, + 30205.56282824436, + 30123.72593439551, + 30031.932968280347, + 29929.558841702084, + 29815.95821574983, + 29690.46550079876, + 29552.394856509876, + 29401.04019183023, + 29235.67516499279, + 29055.55318351651, + 30669.289092483206, + 30671.083139634753, + 30673.22358892018, + 30675.63775814902, + 30678.23271441672, + 30680.895274104714, + 30683.492002880383, + 30685.869215697057, + 30687.85297679401, + 30689.249099696528, + 30689.84314721575, + 30689.400431448903, + 30687.666013779053, + 30684.364704875265, + 30679.20106469261, + 30671.859402472033, + 30662.003776740465, + 30649.277995310822, + 30633.305615281934, + 30613.689943038615, + 30590.014034251624, + 30561.840693877682, + 30528.71247615945, + 30490.15168462556, + 30445.660372090606, + 30394.720340655123, + 30336.79314170559, + 30271.32007591448, + 30197.72219324019, + 30115.400292927094, + 30023.734923505508, + 29922.086382791684, + 29809.794717887875, + 29686.179725182283, + 29550.540950349015, + 29402.157688348205, + 29240.288983425897, + 30701.283898362264, + 30724.442778060984, + 30746.93505640764, + 30768.680543178743, + 30789.578797436734, + 30809.509127530036, + 30828.330591093025, + 30845.88199504602, + 30861.981895595305, + 30876.428598233124, + 30889.000157737635, + 30899.454378173057, + 30907.528812889417, + 30912.94076452283, + 30915.38728499529, + 30914.54517551478, + 30910.07098657522, + 30901.60101795651, + 30888.75131872445, + 30871.11768723089, + 30848.27567111355, + 30819.780567296166, + 30785.167421988357, + 30743.951030685785, + 30695.625938170004, + 30639.666438508553, + 30575.526575054922, + 30502.640140448548, + 30420.420676614824, + 30328.26147476514, + 30225.535575396778, + 30111.595768293013, + 29985.77459252306, + 29847.384336442123, + 29695.717037691284, + 29530.044483197704, + 29349.61820917437, + 31015.558025749026, + 31015.488321577355, + 31015.850116008274, + 31016.56861351176, + 31017.548767843717, + 31018.675282046042, + 31019.81260844658, + 31020.80494865909, + 31021.47625358337, + 31021.6302234051, + 31021.050307595935, + 31019.499704913513, + 31016.721363401364, + 31012.43798038906, + 31006.352002492076, + 30998.14562561184, + 30987.48079493576, + 30973.999204937176, + 30957.322299375424, + 30937.051271295728, + 30912.76706302933, + 30884.030366193412, + 30850.38162169109, + 30811.341019711464, + 30766.4084997296, + 30715.06375050643, + 30656.76621008897, + 30590.955065810118, + 30517.049254288733, + 30434.447461429638, + 30342.528122423613, + 30240.649421747385, + 30128.149293163675, + 30004.345419721103, + 29868.535233754264, + 29719.99591688375, + 29557.98440001606, + 31023.49359807417, + 31045.118235696402, + 31066.143607067723, + 31086.487650658742, + 31106.048054226027, + 31124.702254812142, + 31142.307438745538, + 31158.70054164066, + 31173.698248397934, + 31187.0969932037, + 31198.672959530246, + 31208.182080135866, + 31215.36003706477, + 31219.9222616471, + 31221.563934499045, + 31219.959985522666, + 31214.765093906015, + 31205.613688123078, + 31192.119945933842, + 31173.87779438418, + 31150.460909805985, + 31121.422717817066, + 31086.296393321223, + 31044.59486050817, + 30995.810792853626, + 30939.416613119214, + 30874.86449335255, + 30801.586354887197, + 30718.993868342626, + 30626.478453624393, + 30523.411279923843, + 30409.143265718412, + 30283.00507877143, + 30144.307136132164, + 29992.33960413588, + 29826.3723984038, + 29645.655183843086, + 31170.058787931535, + 31169.159038558897, + 31168.72877750897, + 31168.692269660976, + 31168.953529180075, + 31169.39631951739, + 31169.88415341, + 31170.26029288092, + 31170.347749239165, + 31169.94928307969, + 31168.847404283366, + 31166.804372017064, + 31163.562194733586, + 31158.842630171726, + 31152.347185356193, + 31143.75711659767, + 31132.733429492793, + 31118.916878924156, + 31101.927969060303, + 31081.366953355726, + 31056.813834550918, + 31027.828364672267, + 30993.950045032172, + 30954.698126228923, + 30909.571608146856, + 30858.049239956155, + 30799.58952011305, + 30733.630696359687, + 30659.590765724184, + 30576.867474520586, + 30484.838318348913, + 30382.860542095157, + 30270.271139931243, + 30146.386855315028, + 30010.504180990396, + 29861.899358987124, + 29699.828380620987, + 31167.322780501312, + 31188.264249630658, + 31208.636542424098, + 31228.356765369626, + 31247.321774241238, + 31265.408174098866, + 31282.472319288387, + 31298.35031344166, + 31312.85800947648, + 31325.791009596614, + 31336.92466529175, + 31346.01407733759, + 31352.794095795736, + 31356.97932001376, + 31358.26409862524, + 31356.32252954963, + 31350.808459992393, + 31341.355486444936, + 31327.576954684602, + 31309.06595977471, + 31285.39534606455, + 31256.117707189343, + 31220.765386070267, + 31178.85047491446, + 31129.864815215056, + 31073.27999775103, + 31008.54736258745, + 30935.097999075257, + 30852.342745851383, + 30759.672190838693, + 30656.456671246026, + 30542.046273568147, + 30415.770833585844, + 30276.939936365765, + 30124.842916260586, + 29958.74885690892, + 29777.90659123534, + 31363.53775729254, + 31361.599885605192, + 31360.179094237857, + 31359.198474320965, + 31358.5608662709, + 31358.14885979, + 31357.824793866563, + 31357.430756774844, + 31356.788586075054, + 31355.699868613374, + 31353.945940521895, + 31351.287887218725, + 31347.46654340784, + 31342.202493079298, + 31335.196069509006, + 31326.127355258865, + 31314.656182176746, + 31300.422131396434, + 31283.044533337736, + 31262.122467706336, + 31237.23476349393, + 31207.939998978152, + 31173.776501722612, + 31134.26234857683, + 31088.89536567633, + 31037.15312844256, + 30978.492961582942, + 30912.35193909083, + 30838.146884245583, + 30755.27436961245, + 30663.11071704269, + 30561.011997673482, + 30448.314031928006, + 30324.33238951535, + 30188.36238943055, + 30039.679099954676, + 29877.53733865468, + 31347.49277555094, + 31367.57992805289, + 31387.13562499703, + 31406.075933548094, + 31424.296670156753, + 31441.67340055968, + 31458.06143977947, + 31473.29585212466, + 31487.19145118978, + 31499.542799855306, + 31510.124210287642, + 31518.689743939187, + 31524.973211548262, + 31528.688173139173, + 31529.52793802216, + 31527.165564793442, + 31521.253861335164, + 31511.425384815437, + 31497.292441688332, + 31478.4470876939, + 31454.46112785811, + 31424.886116492922, + 31389.25335719618, + 31347.073902851793, + 31297.83855562953, + 31241.017866985156, + 31176.062137660443, + 31102.401417682984, + 31019.445506366472, + 30926.58395231049, + 30823.186053400535, + 30708.60085680814, + 30582.157158990773, + 30443.163505691802, + 30290.908191940653, + 30124.659262052577, + 29943.664509628936, + 31713.22493361959, + 31709.414531553135, + 31706.207276772846, + 31703.524147069613, + 31701.265869520274, + 31699.312920487657, + 31697.525525620487, + 31695.74365985349, + 31693.78704740734, + 31691.45516178866, + 31688.52722579001, + 31684.762211489957, + 31679.898840252983, + 31673.655582729505, + 31665.73065885598, + 31655.802037854733, + 31643.52743823408, + 31628.54432778832, + 31610.46992359764, + 31588.901192028246, + 31563.41484873229, + 31533.567358647848, + 31498.894935998986, + 31458.913544295687, + 31413.11889633394, + 31360.98645419563, + 31301.97142924867, + 31235.508782146884, + 31161.01322283005, + 31077.879210523908, + 30985.48095374015, + 30883.172410276464, + 30770.28728721642, + 30646.13904092959, + 30510.0208770715, + 30361.205750583653, + 30198.946365693468, + 31673.27994805174, + 31691.82642305447, + 31709.909728784456, + 31727.444061100516, + 31744.323365147462, + 31760.42133535607, + 31775.591415443057, + 31789.666798411065, + 31802.460426548747, + 31813.764991430697, + 31823.352933917435, + 31830.976444155476, + 31836.367461577258, + 31839.23767490118, + 31839.278522131623, + 31836.16119055892, + 31829.536616759313, + 31819.03548659506, + 31804.26823521433, + 31784.825047051283, + 31760.275855826003, + 31730.17034454457, + 31694.037945498952, + 31651.387840267173, + 31601.708959713105, + 31544.469983986663, + 31479.119342523663, + 31405.0852140459, + 31321.775526561127, + 31228.577957363046, + 31124.859933031294, + 31009.968629431518, + 30883.23097171525, + 30743.95363432007, + 30591.423040969406, + 30424.90536467272, + 30243.64652772543, + 32064.616140323153, + 32058.928898343212, + 32053.931355864337, + 32049.542377337864, + 32045.660576501094, + 32042.164316377282, + 32038.91170927567, + 32035.74061679139, + 32032.468649805603, + 32028.893168485407, + 32024.791282283797, + 32019.919849939804, + 32014.015479478345, + 32006.794528210372, + 31997.95310273273, + 31987.167058928215, + 31974.092001965633, + 31958.363286299696, + 31939.596015671104, + 31917.385043106504, + 31891.304970918478, + 31860.91015070559, + 31825.73468335235, + 31785.29241902922, + 31739.076957192647, + 31686.56164658499, + 31627.199585234564, + 31560.423620455702, + 31485.646348848615, + 31402.260116299527, + 31309.637017980585, + 31207.128898349903, + 31094.06735115156, + 30969.763719415572, + 30833.50909545791, + 30684.57432088055, + 30522.209986571354, + 32000.853571922915, + 32017.856227712346, + 32034.46447610603, + 32050.590641656905, + 32066.126798203888, + 32080.944768871876, + 32094.896126071708, + 32107.81219150014, + 32119.504036139948, + 32129.762480259822, + 32138.35809341443, + 32145.04119444435, + 32149.541851476177, + 32151.569881922438, + 32150.814852481588, + 32146.946079138103, + 32139.612627162333, + 32128.443311110637, + 32113.046694825327, + 32093.011091434655, + 32067.904563352862, + 32037.274922280085, + 32000.649729202465, + 31957.53629439206, + 31907.421677406976, + 31849.77268709114, + 31784.03588157452, + 31709.637568273047, + 31625.983803888557, + 31532.460394408867, + 31428.432895107784, + 31313.246610544997, + 31186.226594566207, + 31046.677650303074, + 30893.884330173172, + 30727.11093588008, + 30545.60151841327, + 32417.707902083424, + 32410.1395639847, + 32403.34796285065, + 32397.249849793072, + 32391.741725209726, + 32386.69983878435, + 32381.9801894866, + 32377.418525572128, + 32372.830344582508, + 32368.010893345305, + 32362.73516797398, + 32356.75791386803, + 32349.81362571283, + 32341.616547479774, + 32331.860672426177, + 32320.219743095313, + 32306.347251316416, + 32289.87643820468, + 32270.420294161268, + 32247.571558873275, + 32220.902721313734, + 32189.966019741692, + 32154.29344170209, + 32113.396724025886, + 32066.76735282996, + 32013.87656351712, + 31954.175340776183, + 31887.094418581884, + 31812.04428019497, + 31728.415158162046, + 31635.57703431576, + 31532.879639774685, + 31419.652454943338, + 31295.20470951223, + 31158.82538245778, + 31009.783202042396, + 30847.326645814424, + 32330.21204259806, + 32345.667788124945, + 32360.798363725, + 32375.51422264533, + 32389.705567418954, + 32403.24234986488, + 32415.97427108806, + 32427.730781479382, + 32438.321080715705, + 32447.534117759853, + 32455.1385908606, + 32460.882947552665, + 32464.49538465675, + 32465.68384827947, + 32464.13603381344, + 32459.519385937216, + 32451.481098615266, + 32439.648115098094, + 32423.627127922096, + 32403.004578909662, + 32377.346659169132, + 32346.199309094736, + 32309.088218366807, + 32265.51882595147, + 32214.976320100905, + 32156.92563835322, + 32090.811467532472, + 32016.058243748725, + 31932.07015239792, + 31838.23112816198, + 31733.904855008845, + 31618.4347661923, + 31491.14404425218, + 31351.335621014256, + 31198.292177590185, + 31031.27614437773, + 30849.52970106041, + 32772.49668266782, + 32763.04304557403, + 32754.453668157283, + 32746.643188189802, + 32739.50599272982, + 32732.916218121518, + 32726.727749995043, + 32720.774223266475, + 32714.869022137867, + 32708.80528009723, + 32702.355879918498, + 32695.273453661615, + 32687.29038267245, + 32678.1187975828, + 32667.450578310472, + 32654.957354059225, + 32640.290503318716, + 32623.0811538646, + 32602.9401827585, + 32579.458216347957, + 32552.20563026653, + 32520.732549433666, + 32484.568848054783, + 32443.224149621285, + 32396.187826910533, + 32342.92900198575, + 32282.896546196283, + 32215.519080177288, + 32140.20497384996, + 32056.342346421392, + 31963.299066384665, + 31860.422751518847, + 31747.04076888887, + 31622.460234845716, + 31485.96801502629, + 31336.83072435343, + 31174.29472703597, + 32661.35369459793, + 32675.259489477845, + 32688.909827491847, + 32702.213290581134, + 32715.058209972838, + 32727.312666180085, + 32738.824489001956, + 32749.42125752343, + 32758.910300115513, + 32767.07869443515, + 32773.69326742518, + 32778.50059531448, + 32781.227003617845, + 32781.57856713602, + 32779.24110995574, + 32773.88020544966, + 32765.14117627638, + 32752.649094380522, + 32736.008780992557, + 32714.804806629047, + 32688.601491092406, + 32656.942903471037, + 32619.352862139294, + 32575.334934757477, + 32524.372438271923, + 32465.928438914776, + 32399.44575220426, + 32324.346942944507, + 32240.034325225613, + 32145.88996242362, + 32041.275667200538, + 31925.533001504326, + 31797.983276568924, + 31657.927552914156, + 31504.6466403459, + 31337.401097955924, + 31155.43123412198, + 33128.978884930955, + 33117.63579929492, + 33107.24498129696, + 33097.71895536981, + 33088.94999523217, + 33080.81012388867, + 33073.1511136299, + 33065.804486032415, + 33058.581511958706, + 33051.27321155727, + 33043.6503542625, + 33035.463458794795, + 33026.44279316046, + 33016.29837465177, + 33004.71996984701, + 32991.37709461036, + 32975.91901409197, + 32957.97474272793, + 32937.15304424034, + 32913.04243163723, + 32885.21116721254, + 32853.20726254624, + 32816.55847850418, + 32774.772325238235, + 32727.33606218623, + 32673.71669807187, + 32613.360990904894, + 32545.69544798096, + 32470.126325881716, + 32386.039630474726, + 32292.80111691352, + 32189.756289637608, + 32076.23040237242, + 31951.528458129404, + 31814.935209205876, + 31665.715157185154, + 31503.11255293655, + 32994.27680153051, + 33006.6296560439, + 33018.79724234423, + 33030.68627106679, + 33042.18320213287, + 33053.15424474967, + 33063.44535741042, + 33072.88224789419, + 33081.27037326612, + 33088.39493987724, + 33094.020903364544, + 33097.892968651024, + 33099.735589945565, + 33099.25297074303, + 33096.12906382428, + 33090.027571256076, + 33080.591944391155, + 33067.44538386821, + 33050.19083961189, + 33028.41101083283, + 33001.668346027545, + 32969.50504297863, + 32931.44304875445, + 32886.984059709524, + 32835.609521484235, + 32776.780629004854, + 32709.938326483745, + 32634.50330741911, + 32549.87601459521, + 32455.436640082196, + 32350.54512523615, + 32234.54116069921, + 32106.74418639936, + 31966.453391550614, + 31812.94771465294, + 31645.48584349216, + 31463.306215140234, + 33487.15085081464, + 33473.914220418184, + 33461.71835086962, + 33450.47365326211, + 33440.07028797484, + 33430.37816467289, + 33421.24694230732, + 33412.506029115124, + 33403.964582619294, + 33395.411509628735, + 33386.61546623833, + 33377.32485782893, + 33367.267839067295, + 33356.15231390618, + 33343.665935584315, + 33329.47610662633, + 33313.22997884284, + 33294.55445333042, + 33273.056180471605, + 33248.321559934884, + 33219.91674067466, + 33187.387620931346, + 33150.2598482313, + 33108.03881938681, + 33060.20968049617, + 33006.23732694356, + 32945.56640339917, + 32877.62130381913, + 32801.80617144552, + 32717.504898806383, + 32624.081127715708, + 32520.87824927346, + 32407.219403865543, + 32282.407481163842, + 32145.725120126142, + 31996.43470899623, + 31833.778385303864, + 33328.979576091, + 33339.776551183124, + 33350.458922307, + 33360.931528792025, + 33371.078959253595, + 33380.76555159305, + 33389.8353929977, + 33398.112319940745, + 33405.399918181436, + 33411.48152276494, + 33416.12021802234, + 33419.05883757077, + 33420.01996431318, + 33418.70593043865, + 33414.798817422045, + 33407.96045602427, + 33397.83242629222, + 33384.0360575587, + 33366.17242844244, + 33343.822366848224, + 33316.54644996663, + 33283.885004274416, + 33245.358105534055, + 33200.46557879417, + 33148.686998389225, + 33089.481687939675, + 33022.28872035199, + 32946.526917818475, + 32861.594851817485, + 32766.87084311332, + 32661.71296175615, + 32545.459027082234, + 32417.426607713696, + 32276.913021558637, + 32123.195335811128, + 31955.53036695116, + 31773.154680744767, + 33847.00886134792, + 33831.874643301926, + 33817.87016456237, + 33804.90372288287, + 33792.86336530305, + 33781.61688814846, + 33771.01183703063, + 33760.87550684701, + 33751.014941781046, + 33741.21693530212, + 33731.24803016553, + 33720.85451841263, + 33709.76244137062, + 33697.677589652725, + 33684.285503158135, + 33669.25147107194, + 33652.220531865205, + 33632.81747329498, + 33610.64683240423, + 33585.2928955219, + 33556.3196982629, + 33523.27102552811, + 33485.67041150429, + 33443.02113966421, + 33394.80624276661, + 33340.48850285617, + 33279.51045126352, + 33211.294368605224, + 33135.24228478387, + 33050.73597898792, + 32957.13697969185, + 32853.786564656075, + 32740.00576092695, + 32615.095344836795, + 32478.33584200389, + 32328.987527332512, + 32166.29042501281, + 33665.46017006176, + 33674.69837734277, + 33683.89312049224, + 33692.94736753377, + 33701.74383577678, + 33710.14499181681, + 33717.99305153521, + 33725.10998009937, + 33731.2974919626, + 33736.33705086419, + 33739.989869829384, + 33741.996911169335, + 33742.07888648124, + 33739.93625664815, + 33735.24923183919, + 33727.67777150932, + 33716.8615843995, + 33702.42012853669, + 33683.95261123377, + 33661.037989089564, + 33633.234967988865, + 33600.082003102434, + 33561.097298886976, + 33515.778809085146, + 33463.60423672554, + 33404.03103412279, + 33336.496402877376, + 33260.417293875784, + 33175.19040729049, + 33080.19219257982, + 32974.77884848822, + 32858.28632304595, + 32730.030313569263, + 32589.306266660406, + 32435.38937820752, + 32267.53459338478, + 32084.976606652268, + 34208.54913664697, + 34191.513341391415, + 34175.69674914953, + 34161.00554433544, + 34147.32566064921, + 34134.52278107687, + 34122.442337890374, + 34110.90951264767, + 34099.72923619261, + 34088.68618865508, + 34077.544799450865, + 34066.049247281706, + 34053.9234601353, + 34040.87111528534, + 34026.57563929147, + 34010.700207999216, + 33992.88774654011, + 33972.76092933169, + 33949.92218007737, + 33923.95367176657, + 33894.41732667462, + 33860.85481636286, + 33822.787561678524, + 33779.716732754874, + 33731.12324901108, + 33676.46777915228, + 33615.19074116955, + 33546.71230233995, + 33470.43237922648, + 33385.73063767812, + 33291.96649282974, + 33188.479109102256, + 33074.587400202494, + 32949.59002912322, + 32812.765408143176, + 32663.371698827086, + 32500.646812025552, + 34003.71667431237, + 34011.393276057206, + 34019.09802909922, + 34026.73203015608, + 34034.17612523138, + 34041.29090961474, + 34047.91672788161, + 34053.87367389355, + 34058.96159079791, + 34062.96007102816, + 34065.62845630364, + 34066.705837629605, + 34065.91105529739, + 34062.94269888416, + 34057.47910725311, + 34049.178368553374, + 34037.67832022, + 34022.59654897409, + 34003.53039082259, + 33980.0569310585, + 33951.73300426069, + 33918.09519429403, + 33878.65983430935, + 33832.92300674343, + 33780.36054331901, + 33720.428025044755, + 33652.56078221533, + 33576.17389441133, + 33490.66219049931, + 33395.40024863178, + 33289.74239624721, + 33173.022710070014, + 33044.55501611061, + 32903.6328896653, + 32749.529655316375, + 32581.498386932104, + 32398.77190766667, + 34571.76783591526, + 34552.82652721913, + 34535.19437049266, + 34518.77543681044, + 34503.453546533, + 34489.092269306806, + 34475.53492406429, + 34462.604579023864, + 34450.10405168985, + 34437.81590885257, + 34425.502466588245, + 34412.905790259145, + 34399.747694513375, + 34385.72974328512, + 34370.533249794426, + 34353.81927654736, + 34335.228635335865, + 34314.381887237934, + 34290.87934261745, + 34264.30106112428, + 34234.206851694245, + 34200.13627254912, + 34161.60863119662, + 34118.122984430454, + 34069.15813833025, + 34014.172648261585, + 33952.60481887603, + 33883.87270411109, + 33807.37410719024, + 33722.486580622885, + 33628.56742620439, + 33524.95369501612, + 33410.96218742534, + 33285.8894530853, + 33149.01179093518, + 32999.58524920019, + 32836.84562539138, + 34343.74711879964, + 34349.85932794815, + 34356.071779414444, + 34362.28369861034, + 34368.3740602336, + 34374.20158826787, + 34379.60475598278, + 34384.401785933966, + 34388.39064996294, + 34391.34906919727, + 34393.03451405036, + 34393.184204221674, + 34391.51510869658, + 34387.723945746395, + 34381.48718292844, + 34372.46103708595, + 34360.28147434808, + 34344.56421013007, + 34324.90470913295, + 34300.87818534385, + 34272.039602035766, + 34237.9236717677, + 34198.04485638456, + 34151.897367017235, + 34098.95516408263, + 34038.6719572835, + 33970.481205608616, + 33893.79611733269, + 33808.009650016415, + 33712.494510506396, + 33606.60315493522, + 33489.66778872141, + 33361.00036656954, + 33219.89259246997, + 33065.61591969916, + 32897.42155081945, + 32714.54043767917, + 34936.66105744341, + 34915.81035240474, + 34896.359233540476, + 34878.209658585634, + 34861.243334561215, + 34845.32171777416, + 34830.28601381735, + 34815.95717756963, + 34802.1359131958, + 34788.602674146656, + 34775.11766315889, + 34761.42083225518, + 34747.23188274415, + 34732.25026522039, + 34716.15517956445, + 34698.605574942805, + 34679.240149807905, + 34657.677351898186, + 34633.515378238015, + 34606.33217513769, + 34575.68543819348, + 34541.11261228766, + 34502.13089158838, + 34458.237219549796, + 34408.908288912, + 34353.60054170108, + 34291.750169228995, + 34222.77311209375, + 34146.06506017927, + 34061.00145265543, + 33966.93747797803, + 33863.2080738889, + 33749.1279274158, + 33623.991474872404, + 33487.07290185839, + 33337.626143259346, + 33174.88488324687, + 34685.54947256757, + 34690.094552724375, + 34694.812441811555, + 34699.60049393507, + 34704.33581248674, + 34708.87525014438, + 34713.055408871754, + 34716.69263991854, + 34719.58304382043, + 34721.50247039906, + 34722.20651876198, + 34721.43053730278, + 34718.88962370089, + 34714.27862492185, + 34707.272137216954, + 34697.524506123635, + 34684.66982646518, + 34668.321942350885, + 34648.07444717596, + 34623.50068362162, + 34594.15374365494, + 34559.56646852911, + 34519.2514487831, + 34472.70102424195, + 34419.38728401664, + 34358.76206650405, + 34290.25695938713, + 34213.28329963461, + 34127.23217350137, + 34031.474416528115, + 33925.360613541496, + 33808.22109865426, + 33679.365955264984, + 33538.085016058205, + 33383.64786300452, + 33215.30382736027, + 33032.28198966807, + 35303.22483860922, + 35280.460907655135, + 35259.18748232891, + 35239.30440702603, + 35220.69127542794, + 35203.20743050202, + 35186.69196450166, + 35170.96371896614, + 35155.82128472073, + 35141.04300187668, + 35126.3869598311, + 35111.59099726721, + 35096.37270215403, + 35080.42941174664, + 35063.43821258603, + 35045.05594049916, + 35024.91918059893, + 35002.64426728424, + 34977.827284239866, + 34950.04406443661, + 34918.85019013122, + 34883.7809928664, + 34844.35155347077, + 34800.05670205893, + 34750.37101803146, + 34694.748830074874, + 34632.624216161625, + 34563.41100355016, + 34486.50276878488, + 34401.27283769607, + 34307.074285400064, + 34203.2399362991, + 34089.0823640814, + 33963.893891721105, + 33826.94659147835, + 33677.49228489919, + 33514.762542815704, + 35029.12164374735, + 35032.096909181935, + 35035.318025751454, + 35038.68047625598, + 35042.0594927814, + 35045.310056699724, + 35048.26689866877, + 35050.74449863236, + 35052.5370858203, + 35053.41863874831, + 35053.14288521813, + 35051.443302317384, + 35048.03311641968, + 35042.60530318459, + 35034.832587557634, + 35024.367443770316, + 35010.842095339984, + 34993.86851507011, + 34973.03842505002, + 34947.92329665499, + 34918.07435054631, + 34883.02255667115, + 34842.278634262715, + 34795.33305184014, + 34741.656027208446, + 34680.69752745874, + 34611.88726896796, + 34534.634717399065, + 34448.32908770099, + 34352.33934410857, + 34246.0142001426, + 34128.68211860988, + 33999.651311603135, + 33858.20974050106, + 33703.625115968265, + 33535.14489795533, + 33351.99629569888, + 35671.45515587778, + 35646.77422276444, + 35623.67519998113, + 35602.05581858382, + 35581.793558914396, + 35562.74565060073, + 35544.74907255663, + 35527.62055298185, + 35511.15656936211, + 35495.133348469135, + 35479.30686636052, + 35463.412848379885, + 35447.16676915675, + 35430.263852606644, + 35412.37907193103, + 35393.16714961729, + 35372.26255743883, + 35349.27951645495, + 35323.81199701098, + 35295.43371873813, + 35263.69815055357, + 35228.13851066051, + 35188.26776654801, + 35143.578634991136, + 35093.54358205093, + 35037.61482307438, + 34975.22432269438, + 34905.78379482984, + 34828.6847026856, + 34743.298258752446, + 34648.97542480715, + 34545.04691191237, + 34430.82318041687, + 34305.59443995521, + 34168.63064944799, + 34019.18151710171, + 33856.47650040889, + 35374.4614795574, + 35375.86429520408, + 35377.58647978223, + 35379.52164478597, + 35381.543150995385, + 35383.5041084765, + 35385.237376581295, + 35386.55556394775, + 35387.2510284997, + 35387.09587744707, + 35385.84196728565, + 35383.22090379718, + 35378.94404204945, + 35372.702486396054, + 35364.16709047671, + 35352.988457217, + 35338.7969388284, + 35321.202636808484, + 35299.79540194069, + 35274.14483429441, + 35243.800283225086, + 35208.29084737399, + 35167.1253746684, + 35119.79246232159, + 35065.76045683273, + 35004.47745398699, + 34935.37129885546, + 34857.84958579523, + 34771.2996584493, + 34675.088609746614, + 34568.56328190218, + 34451.050266416794, + 34321.855904077376, + 34180.26628495671, + 34025.54724841351, + 33856.94438309252, + 33673.6830269244, + 36041.34792480129, + 36014.746266613896, + 35989.81840870747, + 35966.459968798394, + 35944.54631388905, + 35923.932560267735, + 35904.453573508756, + 35885.9239684723, + 35868.138109304586, + 35850.87010943775, + 35833.873831589844, + 35816.88288776499, + 35799.610639253144, + 35781.75019663029, + 35762.97441975835, + 35742.93591778521, + 35721.26704914468, + 35697.57992155654, + 35671.46639202656, + 35642.498066846434, + 35610.22630159379, + 35574.182201132295, + 35533.87661961148, + 35488.80016046685, + 35438.42317641992, + 35382.195769478116, + 35319.54779093481, + 35249.888841369386, + 35172.6082706471, + 35087.07517791925, + 34992.63841162302, + 34888.6265694816, + 34774.347998504134, + 34649.090794985656, + 34512.12280450724, + 34362.69162193586, + 34200.024591424495, + 35721.56676630328, + 35721.39454776128, + 35721.61569153917, + 35722.12193782521, + 35722.78477609362, + 35723.45544510451, + 35723.96493290402, + 35724.123976824165, + 35723.723063482976, + 35722.53242878448, + 35720.30205791852, + 35716.761685361045, + 35711.62079487387, + 35704.5686195048, + 35695.27414158758, + 35683.38609274192, + 35668.53295387347, + 35650.3229551739, + 35628.3440761207, + 35602.16404547751, + 35571.330341293746, + 35535.37019090487, + 35493.790570932266, + 35446.07820728329, + 35391.69957515129, + 35330.1008990155, + 35260.70815264115, + 35182.92705907941, + 35096.14309066744, + 34999.72146902832, + 34893.007165071096, + 34775.32489899073, + 34645.97914026828, + 34504.25410767057, + 34349.41376925051, + 34180.701842346905, + 33997.341793584565, + 36412.89900001921, + 36384.37294717205, + 36357.61306980546, + 36332.512872296356, + 36308.945608307535, + 36286.76428078779, + 36265.80164197183, + 36245.870193380375, + 36226.76218582001, + 36208.24961938341, + 36190.08424344908, + 36171.99755668156, + 36153.7008070313, + 36134.88499173473, + 36115.220857314234, + 36094.35889957815, + 36071.92936362075, + 36047.542243822296, + 36020.78728384899, + 35991.23397665301, + 35958.43156447243, + 35921.90903883134, + 35881.1751405398, + 35835.71835969375, + 35785.00693567513, + 35728.488857151875, + 35665.59186207779, + 35595.7234376927, + 35518.27082052236, + 35432.60099637852, + 35338.060700358794, + 35233.97641684686, + 35119.65437951231, + 34994.38057131067, + 34857.420724483425, + 34708.020320558026, + 34545.40459034792, + 36070.435229377836, + 36068.68544291117, + 36067.40348774478, + 36066.479232761056, + 36065.78229612832, + 36065.162045300814, + 36064.447597018785, + 36063.44781730836, + 36061.95132148171, + 36059.72647413693, + 36056.52138915802, + 36052.063929715056, + 36046.061708263915, + 36038.20208654657, + 36028.15217559086, + 36015.5588357106, + 36000.04867650557, + 35981.22805686154, + 35958.68308495017, + 35931.97961822912, + 35900.663263441966, + 35864.25937661834, + 35822.27306307366, + 35774.18917740946, + 35719.47232351317, + 35657.56685455814, + 35587.89687300375, + 35509.86623059524, + 35422.8585283639, + 35326.23711662695, + 35219.345094987475, + 35101.50531233469, + 34972.02036684362, + 34830.172605975305, + 34675.22412647677, + 34506.41677438083, + 34322.97214500655, + 36786.10417525821, + 36755.65011149457, + 36727.055083659914, + 36700.21048279155, + 36674.987449212764, + 36651.23687253278, + 36628.789391646824, + 36607.45539473603, + 36587.02501926749, + 36567.26815199429, + 36547.93442895539, + 36528.75323547583, + 36509.4337061665, + 36489.664724924296, + 36469.11492493204, + 36447.43268865855, + 36424.24614785856, + 36399.163183572804, + 36371.771426127896, + 36341.638255136495, + 36308.31079949715, + 36271.31593739445, + 36230.160296298796, + 36184.33025296669, + 36133.2919334405, + 36076.4912130486, + 36013.3537164053, + 35943.28481741085, + 35865.66963925151, + 35779.8730543994, + 35685.23968461271, + 35581.09390093548, + 35466.73982369779, + 35341.46132251563, + 35204.52201629096, + 35055.16527321168, + 34892.6142107517, + 36421.0645332611, + 36417.7346957986, + 36414.94763420874, + 36412.591346068024, + 36410.53357823885, + 36408.621826869625, + 36406.68333739466, + 36404.52510453423, + 36401.933872294634, + 36398.67613396804, + 36394.49813213261, + 36389.12585865249, + 36382.26505467772, + 36373.601210644345, + 36362.79956627434, + 36349.505110575665, + 36333.34258184216, + 36313.916467653726, + 36290.811004876174, + 36263.59017966122, + 36231.79772744664, + 36194.95713295607, + 36152.57163019917, + 36104.12420247152, + 36049.077582354614, + 35986.874251716035, + 35916.93644170918, + 35838.666132773455, + 35751.44505463427, + 35654.63468630291, + 35547.57625607666, + 35429.59074153877, + 35299.9788695584, + 35158.02111629074, + 35002.97770717687, + 34834.08861694382, + 34650.57356960467, + 37160.9591833321, + 37128.57354572438, + 37098.14028974271, + 37069.54869308492, + 37042.66778273474, + 37017.346334961854, + 36993.41287532192, + 36970.67567865654, + 36948.922769093275, + 36927.92192004568, + 36907.42065421319, + 36887.14624358125, + 36866.80570942124, + 36846.08582229053, + 36824.65310203239, + 36802.15381777609, + 36778.21398793681, + 36752.439380215765, + 36724.415511600055, + 36693.70764836277, + 36659.86080606291, + 36622.39974954551, + 36580.82899294146, + 36534.63279966771, + 36483.27518242711, + 36426.19990320851, + 36362.83047328661, + 36292.57015322215, + 36214.80195286186, + 36128.88863133833, + 36034.17269707016, + 35929.97640776188, + 35815.60177040407, + 35690.33054127314, + 35553.424225931514, + 35404.12407922754, + 35241.65110529559, + 36773.45228152024, + 36768.53996065564, + 36764.24583582798, + 36760.45603330786, + 36757.036428651816, + 36753.832646702365, + 36750.67006158792, + 36747.35379672293, + 36743.66872480771, + 36739.37946782862, + 36734.23039705793, + 36727.945633053845, + 36720.22904566059, + 36710.7642540083, + 36699.21462651305, + 36685.22328087694, + 36668.41308408792, + 36648.386652420006, + 36624.726351433106, + 36596.99429597309, + 36564.73235017182, + 36527.46212744705, + 36484.68499050254, + 36435.88205132801, + 36380.514171199095, + 36318.02196067744, + 36247.825779610575, + 36169.32573713206, + 36081.90169166137, + 35984.913250903905, + 35877.69977185112, + 35759.580360780295, + 35629.85387325483, + 35487.79891412391, + 35332.67383752277, + 35163.71674687258, + 34980.14549488051, + 37202.711427309536, + 37170.11095259664, + 37139.4732612159, + 37110.68739604939, + 37083.622149265175, + 37058.12606231724, + 37034.02742594558, + 37011.134280176084, + 36989.23441432062, + 36968.09536697704, + 36947.4644260291, + 36927.06862864656, + 36906.614761285084, + 36885.789359686365, + 36864.258708877984, + 36841.668843173524, + 36817.645546172476, + 36791.794350760334, + 36763.700539108504, + 36732.929142674395, + 36699.024942201344, + 36661.512467718654, + 36619.8959985416, + 36573.65956327133, + 36522.26693979506, + 36465.16165528589, + 36401.76698620293, + 36331.48595829115, + 36253.70134658161, + 36167.775675391225, + 36073.05121832286, + 35968.84999826544, + 35854.47378739374, + 35729.20410716852, + 35592.30222833655, + 35443.00917093045, + 35280.54570426891, + 36812.714946983746, + 36807.626646541496, + 36803.16495151871, + 36799.21578026291, + 36795.64480040765, + 36792.29742887233, + 36788.99883186239, + 36785.55392486917, + 36781.74737267, + 36777.34358932819, + 36772.08673819292, + 36765.70073189942, + 36757.88923236883, + 36748.335650808236, + 36736.7031477107, + 36722.63463285526, + 36705.75276530682, + 36685.65995341639, + 36661.93835482078, + 36634.14987644287, + 36601.83617449143, + 36564.51865446123, + 36521.69847113296, + 36472.85652857323, + 36417.45348013477, + 36354.92972845607, + 36284.705425461674, + 36206.180472362044, + 36118.73451965367, + 36021.72696711892, + 35914.49696382614, + 35796.36340812961, + 35666.6249476697, + 35524.55997937251, + 35369.42664945029, + 35200.4628534011, + 35016.88623600911, + 118572.65566745868, + 118206.31868991669, + 117864.68011481676, + 117547.27206547426, + 117253.60641449068, + 116983.1747837534, + 116735.44854443577, + 116509.87881699708, + 116305.89647118252, + 116122.91212602344, + 115960.31614983681, + 115817.47866022587, + 115693.74952407973, + 115588.45835757322, + 115500.91452616751, + 115430.40714460952, + 115376.2050769321, + 115337.55693645413, + 115313.69108578035, + 115303.8156368017, + 115307.11845069469, + 115322.76713792207, + 115349.90905823256, + 115387.67132066062, + 115435.16078352682, + 115491.46405443776, + 115555.64749028576, + 115626.75719724929, + 115703.81903079276, + 115785.8385956665, + 115871.80124590668, + 115960.67208483562, + 116051.39596506149, + 116142.89748847841, + 116234.08100626656, + 116323.83061889195, + 116411.01017610659, + 117480.16885253698, + 117214.35994706691, + 116968.74712375793, + 116742.90025818626, + 116536.36897521396, + 116348.68264898914, + 116179.35040294565, + 116027.86110980372, + 115893.68339156895, + 115776.26561953335, + 115675.03591427492, + 115589.40214565715, + 115518.75193282994, + 115462.4526442289, + 115419.85139757585, + 115390.27505987823, + 115373.03024742963, + 115367.40332580965, + 115372.66040988367, + 115388.04736380313, + 115412.78980100558, + 115446.09308421408, + 115487.14232543815, + 115535.10238597292, + 115589.11787639979, + 115648.31315658563, + 115711.79233568379, + 115778.63927213324, + 115847.91757365908, + 115918.67059727226, + 115989.92144926965, + 116060.67298523443, + 116129.90781003507, + 116196.58827782668, + 116259.65649205002, + 116318.03430543153, + 116370.62331998415 + ], + "input_power": [ + 14913.0636134, + 14926.412490950617, + 14944.842370535804, + 14968.353252155555, + 14996.94513580988, + 15030.618021498767, + 15069.371909222224, + 15113.206798980247, + 15162.122690772841, + 15216.119584600003, + 15275.19748046173, + 15339.356378358027, + 15408.596278288887, + 15482.917180254319, + 15562.319084254317, + 15646.801990288888, + 15736.36589835803, + 15831.01080846173, + 15930.736720600002, + 16035.543634772843, + 16145.431550980249, + 16260.400469222222, + 16380.450389498768, + 16505.581311809878, + 16635.793236155554, + 16771.0861625358, + 16911.460090950615, + 17056.915021399996, + 17207.45095388395, + 17363.067888402464, + 17523.765824955553, + 17689.54476354321, + 17860.404704165434, + 18036.345646822225, + 18217.367591513583, + 18403.470538239508, + 18594.654486999996, + 15665.9475298, + 15687.132823350617, + 15713.399118935806, + 15744.74641655556, + 15781.174716209878, + 15822.68401789877, + 15869.274321622224, + 15920.945627380248, + 15977.69793517284, + 16039.531245000002, + 16106.445556861729, + 16178.440870758028, + 16255.51718668889, + 16337.67450465432, + 16424.912824654322, + 16517.23214668889, + 16614.632470758028, + 16717.11379686173, + 16824.676124999998, + 16937.319455172845, + 17055.04378738025, + 17177.849121622225, + 17305.73545789877, + 17438.702796209876, + 17576.751136555555, + 17719.880478935807, + 17868.090823350616, + 18021.3821698, + 18179.754518283953, + 18343.20786880247, + 18511.742221355555, + 18685.35757594321, + 18864.05393256543, + 19047.831291222228, + 19236.68965191358, + 19430.629014639508, + 19629.6493794, + 14915.338670855, + 14928.687062965615, + 14947.116457110804, + 14970.626853290556, + 14999.218251504877, + 15032.890651753763, + 15071.64405403722, + 15115.478458355246, + 15164.39386470784, + 15218.390273095001, + 15277.467683516728, + 15341.626095973026, + 15410.86551046389, + 15485.18592698932, + 15564.587345549322, + 15649.069766143888, + 15738.633188773027, + 15833.277613436729, + 15933.003040134998, + 16037.809468867841, + 16147.696899635246, + 16262.665332437224, + 16382.714767273768, + 16507.84520414488, + 16638.056643050553, + 16773.349083990805, + 16913.72252696562, + 17059.176971974997, + 17209.712419018953, + 17365.328868097473, + 17526.026319210556, + 17691.80477235821, + 17862.66422754043, + 18038.60468475722, + 18219.62614400858, + 18405.728605294506, + 18596.912068614994, + 15668.591171555001, + 15689.778126083396, + 15716.046082646359, + 15747.395041243892, + 15783.825001875988, + 15825.335964542654, + 15871.92792924389, + 15923.60089597969, + 15980.354864750063, + 16042.189835555, + 16109.105808394506, + 16181.102783268585, + 16258.180760177222, + 16340.33973912043, + 16427.57972009821, + 16519.900703110554, + 16617.302688157473, + 16719.785675238953, + 16827.349664355002, + 16939.99465550562, + 17057.720648690804, + 17180.527643910555, + 17308.415641164876, + 17441.384640453765, + 17579.434641777218, + 17722.56564513525, + 17870.77765052784, + 18024.070657955002, + 18182.44466741673, + 18345.89967891303, + 18514.43569244389, + 18688.052708009323, + 18866.750725609323, + 19050.529745243894, + 19239.389766913024, + 19433.33079061673, + 19632.352816355, + 14935.7418887, + 14949.085911850616, + 14967.510937035806, + 14991.016964255557, + 15019.603993509878, + 15053.272024798765, + 15092.021058122225, + 15135.851093480249, + 15184.762130872841, + 15238.754170300002, + 15297.82721176173, + 15361.981255258026, + 15431.216300788888, + 15505.53234835432, + 15584.929397954322, + 15669.407449588887, + 15758.96650325803, + 15853.60655896173, + 15953.3276167, + 16058.129676472841, + 16168.012738280248, + 16282.97680212222, + 16403.02186799877, + 16528.147935909878, + 16658.355005855556, + 16793.643077835808, + 16934.01215185062, + 17079.4622279, + 17229.99330598395, + 17385.605386102474, + 17546.298468255554, + 17712.07255244321, + 17882.92763866543, + 18058.86372692223, + 18239.880817213587, + 18425.978909539506, + 18617.158003899996, + 15692.311648099998, + 15713.513551428396, + 15739.79645679136, + 15771.160364188892, + 15807.605273620988, + 15849.131185087657, + 15895.738098588892, + 15947.426014124692, + 16004.194931695065, + 16066.044851300003, + 16132.975772939506, + 16204.987696613582, + 16282.080622322223, + 16364.254550065432, + 16451.50947984321, + 16543.84541165556, + 16641.262345502473, + 16743.760281383948, + 16851.339219299996, + 16963.99915925062, + 17081.740101235802, + 17204.562045255552, + 17332.464991309876, + 17465.448939398764, + 17603.513889522223, + 17746.65984168025, + 17894.886795872844, + 18048.194752099997, + 18206.583710361727, + 18370.053670658024, + 18538.604632988885, + 18712.236597354324, + 18890.949563754322, + 19074.743532188895, + 19263.61850265803, + 19457.574475161735, + 19656.611449699998, + 14956.014967895, + 14969.354622085615, + 14987.775278310804, + 15011.276936570559, + 15039.859596864877, + 15073.523259193766, + 15112.267923557223, + 15156.093589955248, + 15205.00025838784, + 15258.987928855, + 15318.056601356728, + 15382.206275893026, + 15451.436952463888, + 15525.748631069318, + 15605.14131170932, + 15689.614994383888, + 15779.169679093027, + 15873.80536583673, + 15973.522054615001, + 16078.319745427842, + 16188.19843827525, + 16303.158133157222, + 16423.19883007377, + 16548.320529024873, + 16678.523230010556, + 16813.8069330308, + 16954.171638085616, + 17099.617345174996, + 17250.14405429895, + 17405.751765457466, + 17566.44047865055, + 17732.21019387821, + 17903.060911140434, + 18078.992630437227, + 18260.00535176858, + 18446.099075134505, + 18637.273800535, + 15715.901985995002, + 15737.118838123395, + 15763.41669228636, + 15794.795548483891, + 15831.255406715987, + 15872.796266982654, + 15919.418129283891, + 15971.12099361969, + 16027.904859990063, + 16089.769728395002, + 16156.715598834506, + 16228.742471308578, + 16305.850345817224, + 16388.03922236043, + 16475.309100938208, + 16567.659981550554, + 16665.09186419747, + 16767.604748878948, + 16875.198635595003, + 16987.87352434562, + 17105.629415130803, + 17228.466307950555, + 17356.38420280488, + 17489.38309969377, + 17627.462998617222, + 17770.62389957525, + 17918.86580256784, + 18072.188707594996, + 18230.592614656733, + 18394.077523753025, + 18562.643434883885, + 18736.290348049322, + 18915.018263249323, + 19098.827180483895, + 19287.717099753023, + 19481.68802105673, + 19680.739944395, + 14976.15790844, + 14989.493193670616, + 15007.909480935803, + 15031.406770235555, + 15059.985061569878, + 15093.644354938764, + 15132.384650342221, + 15176.205947780247, + 15225.10824725284, + 15279.091548760001, + 15338.155852301732, + 15402.301157878026, + 15471.52746548889, + 15545.83477513432, + 15625.223086814322, + 15709.692400528887, + 15799.242716278026, + 15893.874034061728, + 15993.58635388, + 16098.37967573284, + 16208.253999620247, + 16323.209325542222, + 16443.24565349877, + 16568.36298348988, + 16698.561315515555, + 16833.840649575803, + 16974.20098567062, + 17119.6423238, + 17270.16466396395, + 17425.76800616247, + 17586.452350395553, + 17752.217696663214, + 17923.06404496543, + 18098.991395302226, + 18279.99974767358, + 18466.089102079506, + 18657.259458519995, + 15739.36218524, + 15760.593986168398, + 15786.906789131359, + 15818.30059412889, + 15854.775401160989, + 15896.331210227658, + 15942.96802132889, + 15994.685834464692, + 16051.484649635064, + 16113.364466840003, + 16180.32528607951, + 16252.367107353582, + 16329.489930662226, + 16411.693756005436, + 16498.978583383214, + 16591.344412795555, + 16688.791244242475, + 16791.31907772395, + 16898.92791324, + 17011.61775079062, + 17129.38859037581, + 17252.240431995557, + 17380.173275649882, + 17513.187121338768, + 17651.28196906222, + 17794.457818820247, + 17942.714670612844, + 18096.052524439998, + 18254.471380301733, + 18417.971238198024, + 18586.55209812889, + 18760.213960094323, + 18938.956824094323, + 19122.780690128893, + 19311.685558198027, + 19505.671428301728, + 19704.73830044, + 14996.170710334998, + 15009.50162660562, + 15027.913544910805, + 15051.406465250559, + 15079.980387624879, + 15113.635312033766, + 15152.371238477224, + 15196.188166955248, + 15245.086097467838, + 15299.065030015003, + 15358.124964596727, + 15422.265901213028, + 15491.48783986389, + 15565.790780549318, + 15645.174723269321, + 15729.639668023889, + 15819.185614813026, + 15913.812563636728, + 16013.520514495, + 16118.309467387842, + 16228.17942231525, + 16343.13037927722, + 16463.162338273767, + 16588.275299304874, + 16718.469262370556, + 16853.744227470805, + 16994.100194605617, + 17139.537163775, + 17290.05513497895, + 17445.654108217466, + 17606.334083490554, + 17772.095060798212, + 17942.937040140427, + 18118.860021517226, + 18299.864004928582, + 18485.948990374505, + 18677.114977855, + 15762.692245835, + 15783.938995563396, + 15810.266747326361, + 15841.675501123893, + 15878.165256955992, + 15919.736014822656, + 15966.387774723891, + 16018.120536659691, + 16074.934300630062, + 16136.829066635002, + 16203.804834674507, + 16275.861604748581, + 16352.99937685722, + 16435.21815100043, + 16522.51792717821, + 16614.898705390555, + 16712.360485637473, + 16814.90326791895, + 16922.527052234997, + 17035.23183858562, + 17153.017626970803, + 17275.884417390556, + 17403.832209844877, + 17536.86100433377, + 17674.970800857223, + 17818.16159941525, + 17966.43340000784, + 18119.786202634998, + 18278.220007296728, + 18441.734813993025, + 18610.33062272389, + 18784.00743348932, + 18962.76524628932, + 19146.604061123893, + 19335.52387799303, + 19529.524696896733, + 19728.606517834996, + 15016.053373580002, + 15029.379920890618, + 15047.787470235802, + 15071.276021615557, + 15099.845575029876, + 15133.496130478765, + 15172.227687962224, + 15216.040247480247, + 15264.93380903284, + 15318.908372620004, + 15377.96393824173, + 15442.10050589803, + 15511.318075588892, + 15585.61664731432, + 15664.996221074323, + 15749.45679686889, + 15838.998374698027, + 15933.62095456173, + 16033.32453646, + 16138.10912039284, + 16247.974706360246, + 16362.92129436222, + 16482.948884398767, + 16608.057476469876, + 16738.24707057556, + 16873.517666715805, + 17013.869264890618, + 17159.301865100002, + 17309.815467343957, + 17465.41007162247, + 17626.085677935556, + 17791.842286283212, + 17962.679896665435, + 18138.598509082225, + 18319.598123533582, + 18505.678740019506, + 18696.840358539997, + 15785.892167779999, + 15807.153866308397, + 15833.49656687136, + 15864.920269468894, + 15901.424974100986, + 15943.010680767658, + 15989.677389468889, + 16041.425100204691, + 16098.253812975063, + 16160.163527780003, + 16227.154244619509, + 16299.225963493584, + 16376.378684402227, + 16458.61240734543, + 16545.92713232321, + 16638.322859335556, + 16735.79958838247, + 16838.35731946395, + 16945.99605258, + 17058.71578773062, + 17176.516524915805, + 17299.398264135554, + 17427.36100538988, + 17560.404748678764, + 17698.529494002218, + 17841.735241360253, + 17990.021990752844, + 18143.38974218, + 18301.838495641732, + 18465.36825113803, + 18633.979008668888, + 18807.670768234322, + 18986.443529834323, + 19170.29729346889, + 19359.232059138023, + 19553.24782684173, + 19752.34459658, + 15024.851413638016, + 15038.17601850902, + 15056.58162541459, + 15080.068234354727, + 15108.635845329432, + 15142.284458338705, + 15181.014073382546, + 15224.824690460951, + 15273.716309573927, + 15327.688930721475, + 15386.742553903587, + 15450.877179120265, + 15520.09280637151, + 15594.38943565733, + 15673.767066977713, + 15758.225700332665, + 15847.765335722188, + 15942.385973146276, + 16042.087612604935, + 16146.870254098154, + 16256.733897625949, + 16371.678543188302, + 16491.704190785236, + 16616.81084041672, + 16746.99849208279, + 16882.26714578342, + 17022.616801518616, + 17168.04745928838, + 17318.559119092723, + 17474.151780931625, + 17634.82544480509, + 17800.58011071313, + 17971.41577865574, + 18147.332448632915, + 18328.330120644656, + 18514.40879469096, + 18705.568470771836, + 15796.165061056037, + 15817.433405820913, + 15843.782752620358, + 15875.213101454368, + 15911.724452322947, + 15953.316805226097, + 15999.990160163808, + 16051.74451713609, + 16108.57987614294, + 16170.49623718436, + 16237.493600260346, + 16309.5719653709, + 16386.73133251602, + 16468.971701695707, + 16556.293072909968, + 16648.695446158792, + 16746.178821442187, + 16848.743198760152, + 16956.38857811268, + 17069.114959499777, + 17186.92234292144, + 17309.810728377674, + 17437.780115868474, + 17570.830505393842, + 17708.96189695378, + 17852.174290548286, + 18000.46768617736, + 18153.842083840995, + 18312.29748353921, + 18475.833885271983, + 18644.451289039323, + 18818.149694841242, + 18996.92910267772, + 19180.789512548774, + 19369.730924454387, + 19563.75333839457, + 19762.856754369313, + 15035.805898174995, + 15049.128076525616, + 15067.531256910801, + 15091.015439330555, + 15119.580623784876, + 15153.226810273763, + 15191.95399879722, + 15235.762189355246, + 15284.651381947837, + 15338.621576575, + 15397.672773236725, + 15461.804971933025, + 15531.018172663886, + 15605.312375429317, + 15684.687580229318, + 15769.143787063886, + 15858.680995933026, + 15953.299206836728, + 16052.998419774998, + 16157.77863474784, + 16267.639851755244, + 16382.582070797216, + 16502.605291873766, + 16627.709514984876, + 16757.894740130556, + 16893.160967310803, + 17033.508196525618, + 17178.936427774996, + 17329.44566105895, + 17485.035896377463, + 17645.70713373055, + 17811.459373118207, + 17982.29261454043, + 18158.206857997226, + 18339.20210348858, + 18525.278351014505, + 18716.435600574998, + 15808.961951074998, + 15830.238598403394, + 15856.596247766356, + 15888.034899163891, + 15924.554552595986, + 15966.155208062653, + 16012.836865563891, + 16064.599525099691, + 16121.443186670063, + 16183.367850275, + 16250.373515914507, + 16322.460183588582, + 16399.62785329722, + 16481.876525040432, + 16569.206198818207, + 16661.616874630556, + 16759.10855247747, + 16861.68123235895, + 16969.334914274998, + 17082.069598225615, + 17199.8852842108, + 17322.781972230554, + 17450.759662284876, + 17583.81835437377, + 17721.95804849722, + 17865.178744655248, + 18013.480442847842, + 18166.863143075, + 18325.32684533673, + 18488.871549633022, + 18657.497255963885, + 18831.203964329317, + 19009.99167472932, + 19193.860387163888, + 19382.810101633026, + 19576.84081813673, + 19775.952536674995, + 15055.428284119997, + 15068.746093510616, + 15087.144904935803, + 15110.624718395555, + 15139.185533889873, + 15172.827351418764, + 15211.55017098222, + 15255.353992580245, + 15304.238816212837, + 15358.204641879998, + 15417.251469581728, + 15481.379299318027, + 15550.58813108889, + 15624.877964894316, + 15704.24880073432, + 15788.700638608887, + 15878.233478518023, + 15972.847320461726, + 16072.542164439998, + 16177.318010452836, + 16287.174858500248, + 16402.11270858222, + 16522.131560698766, + 16647.231414849874, + 16777.412271035555, + 16912.6741292558, + 17053.016989510616, + 17198.4408518, + 17348.94571612395, + 17504.53158248247, + 17665.19845087555, + 17830.946321303214, + 18001.77519376543, + 18177.685068262224, + 18358.67594479358, + 18544.747823359507, + 18735.900703959996, + 15831.901595719999, + 15853.193191848393, + 15879.565790011358, + 15911.019390208889, + 15947.553992440984, + 15989.169596707654, + 16035.86620300889, + 16087.643811344691, + 16144.50242171506, + 16206.442034119998, + 16273.462648559505, + 16345.564265033581, + 16422.746883542226, + 16505.01050408543, + 16592.355126663206, + 16684.780751275557, + 16782.28737792247, + 16884.87500660395, + 16992.54363732, + 17105.29327007062, + 17223.1239048558, + 17346.035541675556, + 17474.028180529876, + 17607.101821418764, + 17745.25646434222, + 17888.49210930025, + 18036.80875629284, + 18190.206405319997, + 18348.685056381728, + 18512.244709478025, + 18680.885364608883, + 18854.60702177432, + 19033.40968097432, + 19217.293342208894, + 19406.258005478026, + 19600.303670781726, + 19799.430338119997, + 15074.920531415, + 15088.233971845617, + 15106.628414310802, + 15130.103858810555, + 15158.660305344876, + 15192.297753913763, + 15231.016204517224, + 15274.815657155244, + 15323.696111827836, + 15377.657568535, + 15436.700027276727, + 15500.823488053025, + 15570.027950863887, + 15644.313415709317, + 15723.67988258932, + 15808.127351503888, + 15897.655822453025, + 15992.265295436728, + 16091.955770455002, + 16196.72724750784, + 16306.579726595246, + 16421.51320771722, + 16541.527690873765, + 16666.623176064873, + 16796.799663290552, + 16932.057152550806, + 17072.395643845615, + 17217.815137175, + 17368.31563253895, + 17523.897129937468, + 17684.559629370553, + 17850.303130838212, + 18021.127634340435, + 18197.033139877225, + 18378.01964744858, + 18564.087157054506, + 18755.235668694993, + 15854.711101715, + 15876.017646643395, + 15902.405193606359, + 15933.873742603892, + 15970.423293635986, + 16012.053846702653, + 16058.765401803888, + 16110.557958939691, + 16167.431518110061, + 16229.386079314996, + 16296.42164255451, + 16368.538207828578, + 16445.735775137222, + 16528.01434448043, + 16615.37391585821, + 16707.814489270553, + 16805.33606471747, + 16907.93864219895, + 17015.622221715003, + 17128.386803265617, + 17246.232386850803, + 17369.158972470555, + 17497.166560124882, + 17630.255149813762, + 17768.42474153722, + 17911.675335295247, + 18060.006931087843, + 18213.419528914997, + 18371.91312877673, + 18535.487730673027, + 18704.143334603887, + 18877.87994056932, + 19056.697548569322, + 19240.59615860389, + 19429.575770673026, + 19623.63638477673, + 19822.778000914994, + 15094.282640059999, + 15107.591711530617, + 15125.981785035805, + 15149.452860575557, + 15178.004938149877, + 15211.638017758763, + 15250.352099402218, + 15294.147183080246, + 15343.023268792838, + 15396.98035654, + 15456.018446321728, + 15520.137538138026, + 15589.337631988888, + 15663.61872787432, + 15742.980825794319, + 15827.423925748888, + 15916.948027738024, + 16011.553131761726, + 16111.239237820002, + 16216.006345912841, + 16325.854456040248, + 16440.78356820222, + 16560.793682398766, + 16685.884798629875, + 16816.056916895555, + 16951.310037195803, + 17091.644159530617, + 17237.059283899995, + 17387.555410303954, + 17543.13253874247, + 17703.790669215552, + 17869.529801723213, + 18040.349936265433, + 18216.251072842224, + 18397.233211453582, + 18583.296352099507, + 18774.44049478, + 15877.39046906, + 15898.711962788397, + 15925.11445855136, + 15956.59795634889, + 15993.162456180988, + 16034.807958047651, + 16081.534461948888, + 16133.34196788469, + 16190.23047585506, + 16252.199985859996, + 16319.250497899508, + 16391.38201197358, + 16468.59452808222, + 16550.88804622543, + 16638.26256640321, + 16730.71808861556, + 16828.25461286247, + 16930.87213914395, + 17038.57066746, + 17151.350197810618, + 17269.210730195806, + 17392.152264615554, + 17520.174801069883, + 17653.27833955877, + 17791.46288008222, + 17934.728422640248, + 18083.07496723284, + 18236.502513859996, + 18395.011062521728, + 18558.600613218026, + 18727.27116594889, + 18901.02272071432, + 19079.85527751432, + 19263.768836348892, + 19452.763397218027, + 19646.83896012173, + 19845.995525059996, + 15113.514610055001, + 15126.819312565616, + 15145.205017110802, + 15168.671723690555, + 15197.219432304877, + 15230.848142953764, + 15269.55785563722, + 15313.348570355247, + 15362.220287107839, + 15416.173005895002, + 15475.206726716731, + 15539.321449573026, + 15608.51717446389, + 15682.793901389323, + 15762.151630349319, + 15846.59036134389, + 15936.110094373025, + 16030.710829436728, + 16130.392566535002, + 16235.155305667839, + 16344.999046835248, + 16459.92379003722, + 16579.929535273768, + 16705.016282544875, + 16835.184031850556, + 16970.4327831908, + 17110.762536565617, + 17256.173291974996, + 17406.665049418953, + 17562.23780889747, + 17722.891570410553, + 17888.626333958215, + 18059.442099540433, + 18235.33886715723, + 18416.31663680858, + 18602.375408494507, + 18793.515182214996, + 15899.939697754999, + 15921.276140283395, + 15947.693584846358, + 15979.19203144389, + 16015.771480075988, + 16057.431930742652, + 16104.17338344389, + 16155.995838179691, + 16212.899294950063, + 16274.883753754999, + 16341.949214594508, + 16414.09567746858, + 16491.323142377223, + 16573.63160932043, + 16661.02107829821, + 16753.49154931056, + 16851.04302235747, + 16953.67549743895, + 17061.388974555, + 17174.183453705617, + 17292.058934890803, + 17415.015418110554, + 17543.052903364878, + 17676.171390653763, + 17814.370879977218, + 17957.65137133525, + 18106.01286472784, + 18259.455360155, + 18417.97885761673, + 18581.583357113024, + 18750.268858643885, + 18924.03536220932, + 19102.88286780932, + 19286.81137544389, + 19475.820885113026, + 19669.91139681673, + 19869.082910555004, + 15132.616441399998, + 15145.916774950618, + 15164.298110535801, + 15187.760448155554, + 15216.303787809875, + 15249.928129498763, + 15288.633473222222, + 15332.419818980246, + 15381.287166772838, + 15435.235516600002, + 15494.264868461729, + 15558.375222358027, + 15627.566578288888, + 15701.838936254317, + 15781.19229625432, + 15865.626658288887, + 15955.142022358024, + 16049.738388461727, + 16149.415756599996, + 16254.174126772838, + 16364.013498980246, + 16478.933873222217, + 16598.935249498765, + 16724.017627809873, + 16854.181008155556, + 16989.425390535802, + 17129.75077495062, + 17275.1571614, + 17425.644549883953, + 17581.21294040247, + 17741.862332955552, + 17907.59272754321, + 18078.40412416543, + 18254.296522822224, + 18435.269923513577, + 18621.3243262395, + 18812.459730999995, + 15922.3587878, + 15943.710179128395, + 15970.142572491359, + 16001.65596788889, + 16038.250365320988, + 16079.925764787657, + 16126.68216628889, + 16178.51956982469, + 16235.437975395062, + 16297.437382999999, + 16364.517792639506, + 16436.67920431358, + 16513.921618022225, + 16596.24503376543, + 16683.64945154321, + 16776.13487135556, + 16873.701293202474, + 16976.34871708395, + 17084.077143, + 17196.886570950617, + 17314.777000935803, + 17437.748432955555, + 17565.800867009875, + 17698.934303098766, + 17837.148741222227, + 17980.444181380255, + 18128.820623572843, + 18282.2780678, + 18440.816514061735, + 18604.435962358024, + 18773.136412688884, + 18946.91786505432, + 19125.78031945432, + 19309.72377588889, + 19498.748234358023, + 19692.85369486173, + 19892.040157399995, + 15151.588134094996, + 15164.884098685616, + 15183.261065310804, + 15206.719033970554, + 15235.258004664876, + 15268.877977393764, + 15307.578952157222, + 15351.360928955246, + 15400.22390778784, + 15454.167888655002, + 15513.192871556728, + 15577.298856493026, + 15646.485843463888, + 15720.753832469318, + 15800.10282350932, + 15884.532816583887, + 15974.043811693027, + 16068.635808836727, + 16168.308808015, + 16273.062809227842, + 16382.897812475247, + 16497.81381775722, + 16617.810825073768, + 16742.888834424877, + 16873.047845810557, + 17008.287859230804, + 17148.60887468562, + 17294.010892175, + 17444.49391169895, + 17600.05793325747, + 17760.70295685055, + 17926.428982478206, + 18097.23601014043, + 18273.124039837225, + 18454.093071568583, + 18640.143105334504, + 18831.274141134996, + 15944.647739195, + 15966.014079323393, + 15992.46142148636, + 16023.98976568389, + 16060.599111915988, + 16102.289460182657, + 16149.060810483892, + 16200.913162819692, + 16257.84651719006, + 16319.860873595, + 16386.956232034507, + 16459.13259250858, + 16536.389955017225, + 16618.728319560432, + 16706.14768613821, + 16798.648054750553, + 16896.22942539747, + 16998.89179807895, + 17106.635172795, + 17219.459549545623, + 17337.3649283308, + 17460.351309150556, + 17588.418692004878, + 17721.56707689377, + 17859.796463817223, + 18003.106852775247, + 18151.49824376784, + 18304.970636795, + 18463.524031856727, + 18627.158428953026, + 18795.873828083888, + 18969.67022924932, + 19148.54763244932, + 19332.506037683896, + 19521.54544495303, + 19715.66585425673, + 19914.867265595, + 15170.429688140002, + 15183.72128377062, + 15202.093881435805, + 15225.547481135556, + 15254.082082869876, + 15287.697686638765, + 15326.394292442223, + 15370.171900280246, + 15419.03051015284, + 15472.970122060004, + 15531.99073600173, + 15596.092351978028, + 15665.274969988892, + 15739.538590034317, + 15818.88321211432, + 15903.308836228889, + 15992.815462378028, + 16087.40309056173, + 16187.07172078, + 16291.821353032841, + 16401.651987320245, + 16516.56362364222, + 16636.55626199877, + 16761.629902389875, + 16891.784544815553, + 17027.020189275805, + 17167.33683577062, + 17312.7344843, + 17463.213134863952, + 17618.77278746247, + 17779.413442095556, + 17945.13509876321, + 18115.937757465435, + 18291.821418202228, + 18472.78608097358, + 18658.83174577951, + 18849.958412619995, + 15966.80655194, + 15988.187840868395, + 16014.65013183136, + 16046.193424828893, + 16082.817719860986, + 16124.523016927655, + 16171.30931602889, + 16223.17661716469, + 16280.124920335062, + 16342.15422554, + 16409.26453277951, + 16481.45584205358, + 16558.728153362226, + 16641.08146670543, + 16728.51578208321, + 16821.031099495558, + 16918.62741894247, + 17021.30474042395, + 17129.06306394, + 17241.90238949062, + 17359.822717075804, + 17482.824046695554, + 17610.906378349882, + 17744.069712038767, + 17882.314047762222, + 18025.639385520248, + 18174.04572531284, + 18327.533067139997, + 18486.101411001735, + 18649.75075689802, + 18818.481104828887, + 18992.292454794322, + 19171.184806794325, + 19355.158160828894, + 19544.212516898027, + 19738.347875001728, + 19937.56423514, + 15189.141103535, + 15202.428330205617, + 15220.796558910804, + 15244.245789650557, + 15272.776022424876, + 15306.387257233764, + 15345.079494077221, + 15388.852732955249, + 15437.706973867838, + 15491.642216815004, + 15550.658461796733, + 15614.755708813027, + 15683.933957863892, + 15758.193208949317, + 15837.533462069321, + 15921.954717223889, + 16011.456974413026, + 16106.04023363673, + 16205.704494894999, + 16310.44975818784, + 16420.27602351525, + 16535.18329087722, + 16655.171560273768, + 16780.240831704876, + 16910.391105170558, + 17045.622380670804, + 17185.93465820562, + 17331.327937775, + 17481.802219378947, + 17637.357503017472, + 17797.993788690554, + 17963.711076398213, + 18134.509366140435, + 18310.388657917225, + 18491.34895172858, + 18677.390247574513, + 18868.512545454996, + 15988.835226035, + 16010.231463763397, + 16036.708703526358, + 16068.266945323892, + 16104.906189155987, + 16146.626435022654, + 16193.42768292389, + 16245.309932859695, + 16302.273184830061, + 16364.317438835002, + 16431.44269487451, + 16503.64895294858, + 16580.936213057223, + 16663.304475200435, + 16750.75373937821, + 16843.284005590554, + 16940.89527383747, + 17043.58754411895, + 17151.360816434997, + 17264.215090785623, + 17382.150367170805, + 17505.166645590558, + 17633.26392604488, + 17766.44220853377, + 17904.701493057226, + 18048.041779615247, + 18196.463068207846, + 18349.965358835, + 18508.548651496727, + 18672.212946193027, + 18840.958242923887, + 19014.78454168932, + 19193.691842489323, + 19377.680145323895, + 19566.749450193027, + 19760.89975709673, + 19960.131066034995, + 15207.722380280002, + 15221.00523799062, + 15239.369097735806, + 15262.813959515559, + 15291.339823329878, + 15324.946689178765, + 15363.634557062222, + 15407.403426980245, + 15456.25329893284, + 15510.18417292, + 15569.196048941729, + 15633.288926998026, + 15702.462807088888, + 15776.71768921432, + 15856.05357337432, + 15940.470459568889, + 16029.968347798025, + 16124.54723806173, + 16224.20713036, + 16328.948024692841, + 16438.769921060248, + 16553.672819462223, + 16673.656719898765, + 16798.721622369874, + 16928.867526875554, + 17064.094433415805, + 17204.40234199062, + 17349.7912526, + 17500.261165243952, + 17655.81207992247, + 17816.443996635553, + 17982.15691538321, + 18152.95083616543, + 18328.825758982224, + 18509.78168383358, + 18695.818610719507, + 18886.936539639995, + 16010.733761480002, + 16032.144948008397, + 16058.63713657136, + 16090.21032716889, + 16126.864519800989, + 16168.599714467657, + 16215.41591116889, + 16267.313109904691, + 16324.291310675062, + 16386.35051348, + 16453.490718319506, + 16525.71192519358, + 16603.014134102224, + 16685.39734504543, + 16772.861558023207, + 16865.40677303556, + 16963.032990082473, + 17065.740209163952, + 17173.528430280003, + 17286.39765343062, + 17404.347878615805, + 17527.379105835556, + 17655.49133508988, + 17788.684566378764, + 17926.95879970222, + 18070.314035060248, + 18218.750272452842, + 18372.26751188, + 18530.86575334173, + 18694.544996838027, + 18863.305242368886, + 19037.146489934323, + 19216.068739534323, + 19400.071991168894, + 19589.156244838025, + 19783.321500541737, + 19982.567758279998, + 15226.173518375, + 15239.452007125614, + 15257.811497910807, + 15281.251990730556, + 15309.773485584878, + 15343.375982473764, + 15382.05948139722, + 15425.823982355247, + 15474.66948534784, + 15528.595990375, + 15587.603497436729, + 15651.692006533025, + 15720.86151766389, + 15795.11203082932, + 15874.44354602932, + 15958.856063263886, + 16048.349582533028, + 16142.924103836727, + 16242.579627175, + 16347.31615254784, + 16457.133679955245, + 16572.03220939722, + 16692.01174087377, + 16817.07227438488, + 16947.213809930556, + 17082.436347510804, + 17222.739887125615, + 17368.124428774998, + 17518.58997245895, + 17674.13651817747, + 17834.76406593055, + 18000.47261571821, + 18171.262167540433, + 18347.132721397225, + 18528.08427728858, + 18714.116835214507, + 18905.230395174996, + 16032.502158275001, + 16053.928293603394, + 16080.435430966361, + 16112.023570363892, + 16148.692711795988, + 16190.44285526266, + 16237.27400076389, + 16289.186148299692, + 16346.179297870061, + 16408.253449475, + 16475.40860311451, + 16547.644758788578, + 16624.96191649722, + 16707.360076240435, + 16794.83923801821, + 16887.399401830557, + 16985.04056767747, + 17087.76273555895, + 17195.565905475, + 17308.45007742562, + 17426.415251410803, + 17549.461427430553, + 17677.58860548488, + 17810.796785573766, + 17949.085967697225, + 18092.456151855247, + 18240.90733804784, + 18394.439526275, + 18553.052716536735, + 18716.746908833025, + 18885.522103163883, + 19059.378299529322, + 19238.31549792932, + 19422.333698363895, + 19611.43290083303, + 19805.613105336728, + 20004.874311875, + 15244.494517819998, + 15257.768637610614, + 15276.123759435803, + 15299.559883295557, + 15328.077009189878, + 15361.675137118764, + 15400.354267082223, + 15444.114399080245, + 15492.955533112838, + 15546.87766918, + 15605.880807281726, + 15669.964947418026, + 15739.130089588887, + 15813.376233794319, + 15892.70338003432, + 15977.111528308886, + 16066.600678618026, + 16161.17083096173, + 16260.821985340002, + 16365.554141752838, + 16475.367300200247, + 16590.26146068222, + 16710.23662319877, + 16835.292787749873, + 16965.429954335552, + 17100.648122955805, + 17240.947293610618, + 17386.327466299994, + 17536.788641023955, + 17692.33081778247, + 17852.953996575554, + 18018.65817740321, + 18189.44336026543, + 18365.309545162225, + 18546.256732093578, + 18732.284921059505, + 18923.394112059996, + 16054.140416419998, + 16075.581500548395, + 16102.103586711359, + 16133.70667490889, + 16170.390765140986, + 16212.155857407655, + 16259.00195170889, + 16310.929048044689, + 16367.937146415059, + 16430.026246819998, + 16497.196349259506, + 16569.447453733577, + 16646.779560242223, + 16729.19266878543, + 16816.68677936321, + 16909.26189197556, + 17006.91800662247, + 17109.65512330395, + 17217.47324202, + 17330.372362770617, + 17448.352485555806, + 17571.413610375555, + 17699.555737229875, + 17832.778866118766, + 17971.08299704222, + 18114.46813000025, + 18262.93426499284, + 18416.481402019992, + 18575.10954108173, + 18738.818682178025, + 18907.60882530889, + 19081.47997047432, + 19260.432117674325, + 19444.465266908894, + 19633.579418178026, + 19827.77457148173, + 20027.050726819998, + 15262.685378614995, + 15275.95512944561, + 15294.305882310804, + 15317.737637210555, + 15346.250394144874, + 15379.844153113763, + 15418.518914117221, + 15462.274677155245, + 15511.111442227839, + 15565.029209335, + 15624.027978476728, + 15688.107749653025, + 15757.268522863886, + 15831.510298109317, + 15910.83307538932, + 15995.236854703886, + 16084.72163605303, + 16179.287419436725, + 16278.934204854999, + 16383.661992307843, + 16493.470781795244, + 16608.36057331722, + 16728.33136687377, + 16853.383162464877, + 16983.515960090554, + 17118.7297597508, + 17259.024561445614, + 17404.400365174995, + 17554.85717093895, + 17710.39497873747, + 17871.013788570555, + 18036.71360043821, + 18207.494414340432, + 18383.356230277222, + 18564.299048248584, + 18750.32286825451, + 18941.427690294997, + 16075.648535914997, + 16097.104568843391, + 16123.641603806358, + 16155.259640803888, + 16191.958679835989, + 16233.738720902655, + 16280.599764003888, + 16332.541809139691, + 16389.564856310062, + 16451.668905515, + 16518.85395675451, + 16591.12001002858, + 16668.467065337227, + 16750.895122680427, + 16838.40418205821, + 16930.994243470555, + 17028.66530691747, + 17131.41737239895, + 17239.250439915002, + 17352.164509465616, + 17470.1595810508, + 17593.235654670556, + 17721.39273032488, + 17854.630808013768, + 17992.94988773722, + 18136.349969495244, + 18284.83105328784, + 18438.393139114996, + 18597.03622697673, + 18760.76031687302, + 18929.56540880389, + 19103.45150276932, + 19282.41859876932, + 19466.46669680389, + 19655.595796873025, + 19849.805898976727, + 20049.097003115, + 15280.746100759998, + 15294.011482630613, + 15312.357866535804, + 15335.785252475556, + 15364.293640449874, + 15397.883030458763, + 15436.553422502222, + 15480.304816580245, + 15529.13721269284, + 15583.050610840002, + 15642.045011021728, + 15706.120413238026, + 15775.27681748889, + 15849.514223774317, + 15928.832632094318, + 16013.232042448888, + 16102.712454838027, + 16197.273869261724, + 16296.916285719999, + 16401.63970421284, + 16511.444124740246, + 16626.32954730222, + 16746.29597189877, + 16871.343398529873, + 17001.471827195553, + 17136.6812578958, + 17276.971690630617, + 17422.343125400002, + 17572.79556220395, + 17728.329001042468, + 17888.94344191555, + 18054.63888482321, + 18225.415329765434, + 18401.272776742226, + 18582.21122575358, + 18768.230676799503, + 18959.331129879996, + 16097.02651676, + 16118.497498488396, + 16145.04948225136, + 16176.682468048892, + 16213.396455880986, + 16255.191445747656, + 16302.067437648891, + 16354.024431584694, + 16411.06242755506, + 16473.181425560004, + 16540.38142559951, + 16612.662427673582, + 16690.024431782225, + 16772.467437925432, + 16859.99144610321, + 16952.596456315554, + 17050.28246856247, + 17153.049482843948, + 17260.897499159997, + 17373.826517510617, + 17491.836537895804, + 17614.927560315555, + 17743.099584769883, + 17876.352611258768, + 18014.686639782223, + 18158.101670340253, + 18306.597702932842, + 18460.17473756, + 18618.83277422173, + 18782.571812918024, + 18951.391853648885, + 19125.292896414318, + 19304.27494121432, + 19488.33798804889, + 19677.482036918027, + 19871.707087821735, + 20071.01314076, + 15298.676684254997, + 15311.937697165613, + 15330.279712110803, + 15353.702729090555, + 15382.206748104874, + 15415.791769153764, + 15454.457792237221, + 15498.204817355248, + 15547.032844507838, + 15600.941873695001, + 15659.931904916728, + 15724.002938173026, + 15793.154973463888, + 15867.388010789318, + 15946.702050149319, + 16031.097091543885, + 16120.573134973029, + 16215.130180436727, + 16314.768227934997, + 16419.48727746784, + 16529.287329035244, + 16644.168382637217, + 16764.13043827377, + 16889.173495944877, + 17019.29755565055, + 17154.502617390805, + 17294.788681165614, + 17440.155746974997, + 17590.603814818947, + 17746.13288469747, + 17906.74295661055, + 18072.434030558208, + 18243.20610654043, + 18419.059184557227, + 18599.99326460858, + 18786.008346694503, + 18977.104430814994, + 16118.274358955, + 16139.76028948339, + 16166.327222046359, + 16197.975156643888, + 16234.704093275986, + 16276.514031942657, + 16323.404972643893, + 16375.376915379693, + 16432.429860150063, + 16494.563806955, + 16561.778755794505, + 16634.07470666858, + 16711.451659577222, + 16793.90961452043, + 16881.44857149821, + 16974.068530510558, + 17071.76949155747, + 17174.55145463895, + 17282.414419755, + 17395.358386905616, + 17513.383356090802, + 17636.48932731055, + 17764.67630056488, + 17897.944275853763, + 18036.293253177224, + 18179.72323253525, + 18328.23421392784, + 18481.826197355, + 18640.49918281673, + 18804.253170313026, + 18973.088159843886, + 19147.00415140932, + 19326.00114500932, + 19510.07914064389, + 19699.238138313034, + 19893.478138016733, + 20092.799139755, + 15316.4771291, + 15329.733773050615, + 15348.071419035807, + 15371.490067055558, + 15399.989717109878, + 15433.570369198766, + 15472.232023322222, + 15515.974679480247, + 15564.798337672837, + 15618.702997900002, + 15677.688660161728, + 15741.755324458027, + 15810.902990788887, + 15885.131659154318, + 15964.441329554318, + 16048.832001988885, + 16138.303676458027, + 16232.85635296173, + 16332.490031500001, + 16437.204712072842, + 16547.000394680246, + 16661.877079322225, + 16781.834765998767, + 16906.87345470988, + 17036.993145455555, + 17172.193838235802, + 17312.475533050616, + 17457.838229899997, + 17608.28192878395, + 17763.806629702463, + 17924.412332655556, + 18090.099037643213, + 18260.866744665433, + 18436.715453722227, + 18617.64516481358, + 18803.655877939505, + 18994.747593099997, + 16139.392062500001, + 16160.892941828393, + 16187.474823191358, + 16219.137706588888, + 16255.881592020987, + 16297.706479487655, + 16344.61236898889, + 16396.599260524687, + 16453.66715409506, + 16515.8160497, + 16583.045947339506, + 16655.356847013583, + 16732.748748722224, + 16815.22165246543, + 16902.77555824321, + 16995.41046605556, + 17093.126375902473, + 17195.923287783953, + 17303.8012017, + 17416.760117650618, + 17534.800035635802, + 17657.920955655554, + 17786.12287770988, + 17919.405801798766, + 18057.76972792222, + 18201.21465608025, + 18349.74058627284, + 18503.347518499995, + 18662.035452761727, + 18825.804389058023, + 18994.654327388886, + 19168.585267754323, + 19347.59721015432, + 19531.69015458889, + 19720.864101058025, + 19915.119049561727, + 20114.4550001, + 15334.147435294999, + 15347.399710285616, + 15365.732987310805, + 15389.147266370555, + 15417.642547464879, + 15451.218830593765, + 15489.876115757223, + 15533.614402955247, + 15582.433692187838, + 15636.333983454999, + 15695.315276756728, + 15759.377572093026, + 15828.520869463888, + 15902.745168869318, + 15982.05047030932, + 16066.436773783887, + 16155.904079293026, + 16250.452386836727, + 16350.081696415004, + 16454.792008027845, + 16564.58332167525, + 16679.455637357223, + 16799.408955073766, + 16924.443274824873, + 17054.55859661055, + 17189.7549204308, + 17330.032246285617, + 17475.390574175, + 17625.829904098955, + 17781.35023605747, + 17941.951570050554, + 18107.633906078212, + 18278.397244140437, + 18454.24158423723, + 18635.166926368584, + 18821.17327053451, + 19012.260616734995, + 16160.379627395, + 16181.895455523396, + 16208.492285686361, + 16240.170117883892, + 16276.928952115988, + 16318.768788382655, + 16365.689626683892, + 16417.69146701969, + 16474.77430939006, + 16536.938153795, + 16604.18300023451, + 16676.508848708578, + 16753.91569921722, + 16836.403551760435, + 16923.97240633821, + 17016.622262950554, + 17114.353121597473, + 17217.164982278948, + 17325.057844995, + 17438.03170974562, + 17556.086576530804, + 17679.222445350555, + 17807.439316204876, + 17940.73718909377, + 18079.11606401722, + 18222.575940975246, + 18371.116819967843, + 18524.738700994996, + 18683.44158405673, + 18847.225469153025, + 19016.09035628389, + 19190.03624544932, + 19369.063136649325, + 19553.17102988389, + 19742.35992515303, + 19936.62982245672, + 20135.980721795, + 15336.102770963622, + 15349.35456051385, + 15367.687352098652, + 15391.101145718016, + 15419.595941371948, + 15453.171739060448, + 15491.828538783517, + 15535.566340541154, + 15584.385144333357, + 15638.28495016013, + 15697.265758021473, + 15761.32756791738, + 15830.470379847855, + 15904.694193812895, + 15983.999009812507, + 16068.384827846685, + 16157.851647915439, + 16252.399470018752, + 16352.028294156633, + 16456.738120329086, + 16566.528948536103, + 16681.40077877769, + 16801.35361105385, + 16926.38744536457, + 17056.50228170986, + 17191.698120089717, + 17331.974960504147, + 17477.332802953137, + 17627.771647436704, + 17783.291493954835, + 17943.892342507526, + 18109.5741930948, + 18280.337045716627, + 18456.180900373034, + 18637.105757064004, + 18823.111615789538, + 19014.198476549645, + 16162.703547658488, + 16184.22103676599, + 16210.819527908065, + 16242.4990210847, + 16279.259516295906, + 16321.101013541682, + 16368.023512822025, + 16420.02701413693, + 16477.111517486406, + 16539.277022870454, + 16606.523530289065, + 16678.851039742243, + 16756.259551229996, + 16838.74906475231, + 16926.31958030919, + 17018.971097900645, + 17116.703617526666, + 17219.51713918725, + 17327.41166288241, + 17440.387188612134, + 17558.443716376423, + 17681.581246175283, + 17809.799778008717, + 17943.099311876707, + 18081.479847779272, + 18224.941385716407, + 18373.483925688106, + 18527.107467694368, + 18685.812011735205, + 18849.597557810608, + 19018.464105920575, + 19192.411656065116, + 19371.440208244225, + 19555.549762457904, + 19744.740318706146, + 19939.011876988952, + 20138.364437306325, + 16450.987474999998, + 16463.501395750616, + 16481.0963185358, + 16503.772243355557, + 16531.529170209877, + 16564.367099098763, + 16602.28603002222, + 16645.285962980248, + 16693.366897972835, + 16746.528835, + 16804.771774061726, + 16868.095715158026, + 16936.50065828889, + 17009.986603454316, + 17088.553550654316, + 17172.201499888888, + 17260.930451158023, + 17354.74040446173, + 17453.631359799994, + 17557.603317172838, + 17666.656276580245, + 17780.79023802222, + 17900.005201498767, + 18024.30116700988, + 18153.67813455555, + 18288.136104135807, + 18427.675075750612, + 18572.295049399992, + 18721.99602508395, + 18876.778002802468, + 19036.640982555553, + 19201.584964343212, + 19371.609948165427, + 19546.715934022224, + 19726.902921913585, + 19912.17091183951, + 20102.519903800003, + 17837.8363874, + 17861.87856272839, + 17891.001740091357, + 17925.205919488893, + 17964.491100920983, + 18008.85728438766, + 18058.304469888888, + 18112.832657424693, + 18172.44184699506, + 18237.132038599997, + 18306.903232239507, + 18381.75542791358, + 18461.688625622224, + 18546.70282536543, + 18636.79802714321, + 18731.97423095556, + 18832.231436802474, + 18937.56964468395, + 19047.9888546, + 19163.489066550617, + 19284.070280535805, + 19409.732496555553, + 19540.475714609882, + 19676.299934698767, + 19817.205156822227, + 19963.191380980254, + 20114.258607172844, + 20270.406835399997, + 20431.636065661733, + 20597.946297958028, + 20769.337532288882, + 20945.809768654326, + 21127.36300705432, + 21313.997247488896, + 21505.712489958034, + 21702.50873446173, + 21904.385980999996 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_20_MP.json b/examples/ColmacCxA_20_MP.json new file mode 100644 index 0000000..20d67b5 --- /dev/null +++ b/examples/ColmacCxA_20_MP.json @@ -0,0 +1,2174 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.002271246, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 45131.56170437189, + 44761.51731889293, + 44423.88087242983, + 44117.10556089237, + 43839.57415079144, + 43589.59897923905, + 43365.421953948404, + 43165.21455323387, + 42987.0778260109, + 42829.04239179617, + 42689.068440707466, + 42565.04573346374, + 42454.793601385085, + 42356.060946392754, + 42266.52624100917, + 42183.797528357856, + 42105.41242216353, + 42028.83810675206, + 41951.47133705042, + 41870.63843858681, + 41783.59530749051, + 41687.52741049199, + 41579.549784922856, + 41456.70703871589, + 41315.97335040501, + 41154.25246912524, + 40968.377714612834, + 40755.11197720515, + 40511.147717840715, + 40233.1069680592, + 39917.541330001404, + 39560.93197640931, + 39159.68965062607, + 38710.15466659594, + 38208.59690886435, + 37651.21583257785, + 37034.140463484255, + 45207.58125597329, + 44836.42335032587, + 44497.72541911425, + 44189.93556160795, + 43911.431447677525, + 43660.52031779476, + 43435.438983032596, + 43234.353825065096, + 43055.36079616745, + 42896.48541921607, + 42755.68278768846, + 42630.83756566328, + 42519.7639878204, + 42420.20585944077, + 42329.83655640652, + 42246.25902520092, + 42167.00578290842, + 42089.5389172146, + 42011.25008640619, + 41929.460519371074, + 41841.42101559829, + 41744.31194517802, + 41635.24324880162, + 41511.25443776155, + 41369.3145939515, + 41206.322369866226, + 41019.10598860166, + 40804.423243854944, + 40558.96149992427, + 40279.33769170907, + 39962.09832470989, + 39603.71947502842, + 39200.60678936752, + 38749.0954850312, + 38245.45034992463, + 37685.86574255404, + 37066.465592026965, + 45893.65515598229, + 45512.51695838051, + 45164.30663472667, + 44847.42641452781, + 44560.20809789206, + 44300.91305552871, + 44067.73222874826, + 43858.786129462314, + 43672.12484018361, + 43505.728014026055, + 43357.504874704755, + 43225.29421653588, + 43106.86440443684, + 42999.91337392611, + 42902.06863112339, + 42810.887252749504, + 42723.85588612639, + 42638.390749177204, + 42551.83763042619, + 42461.47188899882, + 42364.49845462162, + 42258.05182762237, + 42139.19607892986, + 42004.92485007423, + 41852.16135318661, + 41677.758370999334, + 41478.49825684586, + 41251.09293466089, + 40992.18389898015, + 40698.34221494059, + 40366.068518280335, + 39991.793015338575, + 39571.87548305576, + 39102.605268973384, + 38580.20129123417, + 38000.81203858191, + 37360.51557036171, + 46583.11309865278, + 46192.070541237415, + 45834.42300260105, + 45508.52684248831, + 45212.66799124484, + 44945.061949817464, + 44703.85378975424, + 44487.11815320429, + 44292.85925291791, + 44119.01087224656, + 43963.43636514285, + 43823.928656160504, + 43698.210240454486, + 43583.93318378081, + 43478.67912249671, + 43379.95926356054, + 43285.214384531784, + 43191.81483357116, + 43097.06052944044, + 42998.18096150259, + 42892.335189721765, + 42776.611844663195, + 42648.02912749331, + 42503.53480997969, + 42340.00623449107, + 42154.250313997276, + 41943.00353206937, + 41702.93194287952, + 41430.63117120105, + 41122.626412408456, + 40775.37243247734, + 40385.25356798449, + 39948.58372610784, + 39461.60638462648, + 38920.494591920695, + 38321.350966971746, + 37660.20769936228, + 47275.90881312225, + 46875.039861460384, + 46508.032318727564, + 46173.1966749059, + 45868.77299057865, + 45592.930896930135, + 45343.76959574595, + 45119.31785941277, + 44917.53403091844, + 44736.30602385195, + 44573.45132240343, + 44426.71698136421, + 44293.77962612673, + 44172.245452684554, + 44059.650227632475, + 43953.45928816637, + 43851.0675420833, + 43749.79946778146, + 43646.909114260205, + 43539.58010112006, + 43424.92561856266, + 43299.98842739083, + 43161.74085900852, + 43007.08481542086, + 42832.851769234105, + 42635.80276365563, + 42412.62841249404, + 42159.94890015905, + 41874.31398166152, + 41552.20298261347, + 41190.02479922807, + 40784.11789831964, + 40330.75031730363, + 39826.11966419672, + 39266.353117616665, + 38647.50742678234, + 37965.56891151389, + 47971.99544466004, + 47561.38009774508, + 47185.091795228145, + 46841.39515732889, + 46528.48437486809, + 46244.48320926764, + 45987.444992550656, + 45755.35262734134, + 45546.118586865094, + 45357.58491494846, + 45187.52322601909, + 45033.63470510586, + 44893.55010783873, + 44764.829760448854, + 44644.96355976851, + 44531.37097323116, + 44421.401038871365, + 44312.3323653249, + 44201.373131828645, + 44085.66108822063, + 43962.2635549401, + 43828.17742302738, + 43680.32915412393, + 43515.57478047247, + 43330.69990491677, + 43122.41970090178, + 42887.37891247361, + 42622.15185427951, + 42323.2424115679, + 41987.08404018833, + 41610.03976659154, + 41188.40218782933, + 40718.39347155479, + 40196.16535602199, + 39617.799150086335, + 38979.30573320429, + 38276.62555543341, + 48671.325554667244, + 48251.04584491894, + 47865.55806035658, + 47513.080951437354, + 47191.76283921959, + 46899.68161536272, + 46634.844742127396, + 46395.189252375385, + 46178.5817495696, + 45982.818407774124, + 45805.624971654164, + 45644.65675647612, + 45497.49864810752, + 45361.66510301703, + 45234.60014827448, + 45113.677381550864, + 44996.199971118316, + 44879.400655850106, + 44760.44174522067, + 44636.41511930562, + 44504.34222878166, + 44361.17409492671, + 44203.791309619766, + 44029.00403534109, + 43833.552005171965, + 43614.10452279492, + 43367.26046249357, + 43089.548269152765, + 42777.42595825837, + 42427.28111589755, + 42035.430898758554, + 41598.122034130756, + 41111.53081990473, + 40571.76312457214, + 39974.85438722592, + 39316.76961755999, + 38593.40339586959, + 48983.276769278316, + 48558.72715937175, + 48169.17591829526, + 47812.82140280964, + 47487.79154027684, + 47192.143828659886, + 46923.86533652305, + 46680.872703031695, + 46461.01213795237, + 46262.059421652746, + 46081.71990510166, + 45917.62850986911, + 45767.34972812622, + 45628.377622645305, + 45498.13582679977, + 45373.97754456424, + 45253.185550514434, + 45132.972189827255, + 45010.47937828075, + 44882.778602254126, + 44746.870918727735, + 44599.68695528305, + 44438.08691010274, + 44258.86055197061, + 44058.72722027163, + 43834.335824991875, + 43582.264846718586, + 43299.022336640206, + 42981.04591654628, + 42624.70277882754, + 42226.28968647582, + 41782.03297308413, + 41288.08854284664, + 40740.54187055868, + 40135.40800161672, + 39468.63155201835, + 38736.08670836236, + 49373.8511206768, + 48943.9911139412, + 48549.387158498415, + 48188.212135043184, + 47858.56849487136, + 47558.488259879916, + 47285.93302256705, + 47038.79394603208, + 46814.89176397544, + 46611.976780698766, + 46427.72887110481, + 46259.75748069748, + 46105.60162558188, + 45962.72989246421, + 45828.540438651835, + 45700.360992053276, + 45575.44885117821, + 45450.99088513751, + 45324.10353364305, + 45191.832807008046, + 45051.154286146724, + 44898.97312257457, + 44732.12403840809, + 44547.37132636508, + 44341.40884976439, + 44110.860042526074, + 43852.27790917131, + 43562.145024822436, + 43236.87353520292, + 42872.805156637434, + 42466.21117605176, + 42013.29245097282, + 41510.179409528755, + 40952.932050448726, + 40337.539943063246, + 39659.92222730377, + 38915.927613703025, + 50079.52353635351, + 49640.16933190299, + 49236.53455017112, + 48866.746202090144, + 48528.860869193486, + 48220.86470361564, + 47940.67342809237, + 47686.132335960494, + 47455.01629115801, + 47245.02972822409, + 47053.806652299034, + 46878.9106391243, + 46717.83483504249, + 46568.00195699738, + 46426.76429253387, + 46291.40369979803, + 46159.131607537056, + 46027.08901509935, + 45892.34649243438, + 45751.90418009285, + 45602.69178922656, + 45441.5686015885, + 45265.323469532756, + 45070.674816014645, + 44854.27063459057, + 44612.688489418084, + 44342.43551525596, + 44039.948417464046, + 43701.59347200336, + 43323.666525436114, + 42902.39299492562, + 42433.927868236344, + 41914.35570373397, + 41339.69063038522, + 40705.87634775811, + 40008.78612602165, + 39244.22280594614, + 50788.29361149394, + 50339.53334202722, + 49926.95511202389, + 49548.640062653794, + 49202.59890568783, + 48886.77192349809, + 48599.028969057836, + 48337.16946594145, + 48098.92240832446, + 47881.94636098359, + 47683.82945929666, + 47502.08940924268, + 47334.1734874018, + 47177.45854095533, + 47029.25098768571, + 46886.78681597654, + 46747.23158481257, + 46607.680423779726, + 46465.15803306505, + 46316.61868345673, + 46158.94621634419, + 45988.95404371787, + 45803.38514816947, + 45598.91208289178, + 45372.1369716788, + 45119.59150892564, + 44837.73695962851, + 44522.96415938491, + 44171.593514393324, + 43779.875001453525, + 43343.988167966396, + 42860.04213193392, + 42324.07558195933, + 41732.05677724684, + 41079.883547602076, + 40363.38329343156, + 39578.31298574311, + 51500.11157202649, + 51042.0354036686, + 50620.60313683781, + 50233.850042941485, + 49879.740963988115, + 49556.17031258729, + 49260.96207194981, + 48991.86979588762, + 48746.576608813804, + 48522.695205742566, + 48317.767852289326, + 48129.266384670605, + 47954.592209704104, + 47791.07630480866, + 47635.97921800425, + 47486.49106791205, + 47339.73154375432, + 47192.74990535454, + 47042.52498313728, + 46885.965178128296, + 46719.90846195448, + 46541.12237684392, + 46346.30403562574, + 46132.08012173039, + 45895.00688918932, + 45631.570162635166, + 45338.18533730179, + 45011.19737902412, + 44646.88082423826, + 44241.439779981476, + 43791.007923892204, + 43291.64850420996, + 42739.35433977551, + 42130.04782003067, + 41459.58090501853, + 40723.735125383166, + 39918.22158236998, + 52214.92706001139, + 51747.62719231367, + 51317.43233352572, + 50922.33188529243, + 50560.24481985983, + 50229.019680075064, + 49926.434579386456, + 49650.197201843504, + 49397.94480209682, + 49167.24420539816, + 48955.59180760048, + 48760.413575157836, + 48579.06504512549, + 48408.83132515979, + 48246.92709351829, + 48090.496599059654, + 47936.61366124372, + 47782.28167013152, + 47624.4335863851, + 47459.93194126784, + 47285.56883664413, + 47098.06594497959, + 46894.0745093409, + 46670.175343396055, + 46422.87883141402, + 46148.624928265024, + 45843.78315942042, + 45504.652620952664, + 45127.46197953544, + 44708.36947244355, + 44243.46290755294, + 43728.759663340716, + 43160.20668888515, + 42533.680503865595, + 41844.98719856268, + 41089.86243385805, + 40263.97144123463, + 52932.689133640684, + 52456.25979958081, + 52017.3958271323, + 51614.040748177635, + 51244.06766520031, + 50905.27925128506, + 50595.40775011775, + 50312.11497598537, + 50052.99231377615, + 49815.5607189793, + 49597.27071768538, + 49395.502406585976, + 49207.565452973875, + 49030.69909474296, + 48862.072140388336, + 48698.78296900623, + 48537.85953029398, + 48376.259344550155, + 48210.8695026744, + 48038.50666616758, + 47855.91706713164, + 47659.77650826973, + 47446.69036288614, + 47213.19357488628, + 46955.750658776764, + 46670.75569966529, + 46354.532353260794, + 46003.333845873305, + 45613.34297441396, + 45180.67210639515, + 44701.36317993038, + 44171.387703734246, + 43586.64675712258, + 42942.970990012305, + 42236.12062292156, + 41461.78544696954, + 40615.5848238767, + 53653.34626723825, + 53167.883733220224, + 52720.44615883413, + 52308.931206199944, + 51931.16610803875, + 51584.90766767279, + 51267.8422590255, + 50977.585826621405, + 50711.68388558623, + 50467.6115216468, + 50242.77339113118, + 50034.50372096847, + 49840.06630868902, + 49656.65452242426, + 49481.39130090682, + 49311.32915347048, + 49143.450160050124, + 48974.665971181836, + 48801.81780800285, + 48621.67646225152, + 48430.94229626735, + 48226.245242991026, + 48004.14480596438, + 47761.13005933038, + 47493.61964783315, + 47197.961786817956, + 46870.43426223125, + 46507.244430620616, + 46104.529219134725, + 45658.35512552354, + 45164.71821813805, + 44619.544135930424, + 44018.68808845404, + 43357.93485586334, + 42632.99878891404, + 41839.52380896284, + 40973.08340796773, + 54376.84635125972, + 53882.448917113885, + 53426.53528593945, + 53006.95725009397, + 52621.49617253607, + 52267.86298682553, + 51943.698197123296, + 51646.57187819149, + 51373.983675393334, + 51123.36280469321, + 50892.06805265671, + 50677.38777645049, + 50476.539903842444, + 50286.671933201535, + 50104.86093349792, + 49928.113544302934, + 49753.365975789005, + 49577.48400872972, + 49397.262994499906, + 49209.427855075446, + 49010.63308303336, + 48797.46274155189, + 48566.43046441042, + 48313.97945598942, + 48036.4824912706, + 47730.24191583674, + 47391.489645871836, + 47016.38716816099, + 46601.02554009047, + 46141.425389647724, + 45633.536915421326, + 45073.23988660093, + 44456.34364297752, + 43778.58709494305, + 43035.63872349074, + 42223.09658021488, + 41336.48828731099, + 55103.136692292675, + 54599.90469127562, + 54135.61458188847, + 53708.072286726216, + 53315.013298985104, + 52954.102682462406, + 52622.93507155663, + 52319.03467126741, + 52039.85525719557, + 51782.780175542975, + 51545.12234311276, + 51324.124247309155, + 51116.957946137554, + 50920.72506820451, + 50732.45681271768, + 50549.11394948596, + 50367.58681891929, + 50184.69533202886, + 49997.188970426956, + 49801.74678632704, + 49594.97740254367, + 49373.41901249265, + 49133.539380190865, + 48871.735840256384, + 48584.33529790837, + 48267.59422896723, + 47917.69867985445, + 47530.7642675927, + 47102.83617980574, + 46629.88917471862, + 46107.8275811574, + 45532.485298549334, + 44899.625796922875, + 44204.94211690758, + 43444.05686973419, + 42612.52223723454, + 41705.819971841636, + 55832.16401305636, + 55320.199811851075, + 54847.634836253084, + 54412.22913909496, + 54011.67234381043, + 53643.58364443433, + 53305.51180560272, + 52994.93516255276, + 52709.261621122794, + 52445.828657752274, + 52201.90331948186, + 51974.68222395331, + 51761.29155940955, + 51558.78708469469, + 51364.15412925393, + 51174.30759313369, + 50986.09194698147, + 50796.28123204596, + 50601.579060177064, + 50398.61861382572, + 50183.96264604405, + 49954.103480485384, + 49705.463011404165, + 49434.39270365597, + 49137.173592697545, + 48810.0162845868, + 48449.0609559828, + 48050.37735414571, + 47609.96479693688, + 47123.752172818866, + 46587.59794085529, + 45997.290130710906, + 45348.54634265176, + 44637.01374754491, + 43858.26908685866, + 43007.818672662346, + 42081.09838762659, + 56563.87445240196, + 56043.28245111775, + 55562.546254737164, + 55119.380046330334, + 54711.4275795685, + 54336.26217872409, + 53991.38673867066, + 53674.23372488294, + 53382.1651734368, + 53112.47269100919, + 52862.377454878384, + 52629.030212923644, + 52409.51128362544, + 52200.83055606542, + 51999.92748992635, + 51803.67111549213, + 51608.86003364786, + 51412.222415879754, + 51210.41600427523, + 51000.028111522784, + 50777.575620912125, + 50539.504986334025, + 50282.19223228055, + 50001.94295384479, + 49694.992316721036, + 49357.50505720472, + 48985.57548219244, + 48575.22746918196, + 48122.41446627211, + 47623.01949216302, + 47072.85513615582, + 46467.66355815285, + 45803.11648865766, + 45074.81522877486, + 44278.29065021029, + 43409.00319527084, + 42462.342876864655, + 57298.21356531245, + 56769.10019748491, + 56280.29845917631, + 55829.476663694266, + 55414.23269494762, + 55032.09400744628, + 54680.517626301385, + 54356.89014722519, + 54058.5277365311, + 53782.67613113364, + 53526.510638548556, + 53287.1361368927, + 53061.58707488411, + 52846.8274718419, + 52639.75091768642, + 52437.18057293913, + 52235.869168722624, + 52032.499006760685, + 51823.681959378264, + 51605.9594695014, + 51375.80255065731, + 51129.61178697437, + 50863.71733318212, + 50574.37891461123, + 50257.785827193555, + 49910.05693746202, + 49527.240682550786, + 49105.31507019513, + 48640.18767873147, + 48127.69565709741, + 47563.60572483169, + 46943.614172074165, + 46263.346859565914, + 45518.35921864907, + 44704.13625126707, + 43816.0925299643, + 42849.57219788645, + 58035.12632290253, + 57497.6000554936, + 57000.84048753784, + 56542.47006258043, + 56120.040794767745, + 55731.03426884721, + 55372.861640167524, + 55042.86363467846, + 54738.310548931, + 54456.402250077175, + 54194.268175870326, + 53948.96733466476, + 53717.488305416104, + 53496.74923768103, + 53283.59785161739, + 53074.8114379842, + 52867.09685814162, + 52657.09054405093, + 52441.35849827465, + 52216.39629397634, + 51978.62907492078, + 51724.41155547387, + 51450.02802060267, + 51151.692325875454, + 50825.54789746155, + 50467.667732131464, + 50074.05439725689, + 49640.640030810646, + 49163.286341366635, + 48637.784608100104, + 48059.85568078728, + 47425.14997980553, + 46729.2474961335, + 45967.65779135091, + 45135.819997638646, + 44229.102817778694, + 43242.80452515428, + 58774.55711241886, + 58228.72844581684, + 57724.12079392112, + 57258.31073051451, + 56828.80439998085, + 56433.03751730517, + 56068.375368073685, + 55732.11280847372, + 55421.47426529375, + 55133.61373592343, + 54865.61478835353, + 54614.49056117604, + 54377.183763584, + 54150.56667537168, + 53931.44114693446, + 53716.5385992689, + 53502.52002397269, + 53285.975983244665, + 53063.426609884875, + 52831.321607294456, + 52586.040249475656, + 52323.891381031994, + 52041.11341716803, + 51733.874343689575, + 51398.271717003496, + 51030.33266411784, + 50626.013882641855, + 50181.20164078589, + 49691.71177736143, + 49153.289701781185, + 48561.61039405895, + 47912.27840480967, + 47200.82785524952, + 46422.72243719571, + 45573.35541306671, + 44648.04961588205, + 43642.05744926248, + 59516.44973723986, + 58962.43120525928, + 58450.08724855718, + 57976.94857115382, + 57540.475447670644, + 57138.057723330174, + 56767.01481395621, + 56424.5957059736, + 56107.978956408355, + 55814.272692887665, + 55540.514613639876, + 55283.67198749447, + 55040.64165388204, + 54808.25002283442, + 54583.25307498452, + 54362.33636156645, + 54142.115004415406, + 53919.1336959678, + 53689.866699261205, + 53450.71784793427, + 53198.02054622683, + 52928.03776897992, + 52636.96206163567, + 52320.91554023737, + 51975.94989142949, + 51598.046372457604, + 51183.11581116847, + 50726.998606010005, + 50225.46472603123, + 49674.213710882366, + 49068.8746708148, + 48405.00628668098, + 47678.09680993464, + 46883.56406263052, + 46016.75543742463, + 45072.94789757405, + 44047.34797693704, + 60260.74741687575, + 59698.65358675752, + 59178.687137808854, + 58698.33290428755, + 58255.005291052585, + 57846.048273564054, + 57468.73539788325, + 57120.269780672585, + 56797.7841091956, + 56498.340641317045, + 56218.931205502784, + 55956.47720081982, + 55707.82959693635, + 55469.76893412172, + 55239.00532324635, + 55012.17844578192, + 54785.85755380115, + 54556.541469978016, + 54320.6585875876, + 54074.56687050612, + 53814.55385321098, + 53536.836640780675, + 53237.56190889492, + 52912.80590383454, + 52558.574442481535, + 52170.80291231904, + 51745.356271431345, + 51278.02904850393, + 50764.545342823316, + 50200.55882427729, + 49581.65273335475, + 48903.339881145715, + 48161.06264934146, + 47350.19299023422, + 46466.03242671762, + 45503.81205228621, + 44458.69253103586, + 61007.392786968594, + 60437.340259379955, + 59909.8671641709, + 59422.412465836795, + 58972.344699474124, + 58556.96197078052, + 58173.49195605483, + 57819.091902197004, + 57490.84862670816, + 57185.77851769053, + 56900.827533847536, + 56632.871204483745, + 56378.71462950489, + 56135.09247941781, + 55898.668995330525, + 55666.03798895222, + 55433.7228425932, + 55198.17650916489, + 54955.781512180016, + 54702.84994575228, + 54435.62347459659, + 54150.27333402908, + 53842.90032996694, + 53509.53483892855, + 53146.13680803346, + 52748.59575500232, + 52312.73076815699, + 51834.290506420446, + 51308.95319931678, + 50732.32664697134, + 50099.94822011056, + 49407.28486006195, + 48649.73307875435, + 47822.61895871757, + 46921.19815308272, + 45940.65588558194, + 44876.106950548594, + 61090.495857755304, + 60519.56631564775, + 59991.266387286894, + 59503.02994052375, + 59052.22041381045, + 58636.130816200304, + 58251.983727347775, + 57896.931297508476, + 57568.05524753915, + 57262.36686889773, + 56976.807023643254, + 56708.24614443592, + 56453.484234537136, + 56209.25086780941, + 55972.20518871637, + 55738.93591232286, + 55505.96132429483, + 55269.72928089942, + 55026.6172090049, + 54772.93210608069, + 54504.91054019737, + 54218.71865002664, + 53910.452144841394, + 53576.13630451566, + 53211.72597952463, + 52813.10559094459, + 52376.089130453074, + 51896.42016032868, + 51369.77181345119, + 50791.74679330155, + 50157.87737396186, + 49463.62540011532, + 48704.382287046385, + 47875.4690206405, + 46972.136157384455, + 45989.56382436602, + 44922.86171927423, + 99980.60423340034, + 99206.28651715042, + 98496.23456409365, + 97845.58875396205, + 97249.41903708887, + 96702.72493440854, + 96200.43553745661, + 95737.40950836978, + 95308.4350798859, + 94908.23005534396, + 94531.44180868412, + 94172.64728444775, + 93826.35299777721, + 93486.99503441618, + 93148.93905070938, + 92806.48027360276, + 92453.84350064331, + 92085.18309997932, + 91694.58301036016, + 91276.05674113632, + 90823.54737225943, + 90330.92755428236, + 89791.99950835906, + 89200.4950262447, + 88550.0754702955, + 87834.33177346888, + 87046.78443932341, + 86180.8835420189, + 85230.0087263161, + 84187.46920757716, + 83046.50377176522, + 81800.28077544458, + 80441.89814578074, + 78964.38338054031, + 77360.6935480912, + 75623.71528740221, + 73746.26480804349 + ], + "input_power": [ + 15007.498173600003, + 15036.368209511113, + 15080.71443528889, + 15140.536850933333, + 15215.835456444445, + 15306.610251822223, + 15412.861237066667, + 15534.588412177776, + 15671.791777155559, + 15824.471332000001, + 15992.627076711115, + 16176.259011288892, + 16375.367135733335, + 16589.951450044442, + 16820.011954222224, + 17065.548648266667, + 17326.56153217778, + 17603.05060595556, + 17895.0158696, + 18202.457323111117, + 18525.374966488893, + 18863.76879973333, + 19217.63882284445, + 19586.98503582223, + 19971.807438666667, + 20372.10603137778, + 20787.88081395556, + 21219.131786399998, + 21665.858948711124, + 22128.062300888894, + 22605.74184293333, + 23098.89757484445, + 23607.52949662222, + 24131.637608266676, + 24671.22190977778, + 25226.282401155557, + 25796.81908239999, + 15009.869780522999, + 15038.868070407443, + 15083.342550158552, + 15143.293219776333, + 15218.720079260776, + 15309.62312861189, + 15416.002367829666, + 15537.85779691411, + 15675.189415865225, + 15827.997224683, + 15996.28122336745, + 16180.041411918555, + 16379.277790336331, + 16593.990358620777, + 16824.17911677189, + 17069.844064789664, + 17330.985202674114, + 17607.60253042522, + 17899.696048043, + 18207.26575552745, + 18530.311652878558, + 18868.83374009633, + 19222.832017180786, + 19592.30648413189, + 19977.257140949663, + 20377.68398763412, + 20793.58702418522, + 21224.966250603004, + 21671.821666887456, + 22134.153273038555, + 22611.96106905633, + 23105.24505494078, + 23614.005230691888, + 24138.241596309676, + 24677.954151794118, + 25233.142897145222, + 25803.807832362992, + 15030.951742800002, + 15061.104318444442, + 15106.733083955556, + 15167.838039333332, + 15244.419184577777, + 15336.47651968889, + 15444.010044666666, + 15567.01975951111, + 15705.505664222226, + 15859.467758799996, + 16028.906043244448, + 16213.820517555558, + 16414.21118173333, + 16630.078035777773, + 16861.421079688887, + 17108.240313466667, + 17370.535737111117, + 17648.30735062222, + 17941.555153999994, + 18250.279147244448, + 18574.47933035556, + 18914.155703333334, + 19269.30826617778, + 19639.93701888889, + 20026.04196146666, + 20427.62309391112, + 20844.680416222218, + 21277.213928399993, + 21725.22363044445, + 22188.709522355555, + 22667.671604133327, + 23162.10987577778, + 23672.024337288884, + 24197.41498866668, + 24738.281829911117, + 25294.624861022225, + 25866.444081999995, + 15051.561205023, + 15082.868066427443, + 15129.651117698553, + 15191.910358836332, + 15269.645789840777, + 15362.857410711886, + 15471.545221449665, + 15595.70922205411, + 15735.349412525224, + 15890.465792862997, + 16061.058363067448, + 16247.127123138554, + 16448.67207307633, + 16665.69321288077, + 16898.19054255189, + 17146.164062089665, + 17409.61377149411, + 17688.53967076522, + 17982.941759902995, + 18292.820038907448, + 18618.174507778556, + 18959.00516651633, + 19315.31201512078, + 19687.09505359189, + 20074.354281929664, + 20477.089700134115, + 20895.301308205224, + 21328.989106143, + 21778.153093947454, + 22242.79327161856, + 22722.909639156333, + 23218.50219656078, + 23729.570943831885, + 24256.11588096967, + 24798.137007974117, + 25355.63432484522, + 25928.607831582984, + 15071.698167192, + 15104.159314356444, + 15152.096651387556, + 15215.51017828533, + 15294.399895049779, + 15388.76580168089, + 15498.607898178667, + 15623.926184543108, + 15764.720660774226, + 15920.991326872, + 16092.738182836445, + 16279.961228667556, + 16482.660464365334, + 16700.835889929775, + 16934.48750536089, + 17183.615310658668, + 17448.219305823117, + 17728.299490854224, + 18023.855865751997, + 18334.88843051645, + 18661.397185147558, + 19003.38212964533, + 19360.84326400978, + 19733.78058824089, + 20122.194102338664, + 20526.08380630311, + 20945.44970013422, + 21380.291783831995, + 21830.610057396454, + 22296.404520827557, + 22777.67517412533, + 23274.422017289784, + 23786.645050320883, + 24314.344273218678, + 24857.519685983116, + 25416.171288614223, + 25990.299081111993, + 15091.362629307, + 15124.978062231445, + 15174.069685022556, + 15238.63749768033, + 15318.681500204779, + 15414.201692595889, + 15525.198074853666, + 15651.670646978107, + 15793.619408969224, + 15951.044360826998, + 16123.945502551447, + 16312.322834142557, + 16516.17635560033, + 16735.506066924776, + 16970.31196811589, + 17220.594059173665, + 17486.352340098114, + 17767.586810889225, + 18064.297471546997, + 18376.484322071447, + 18704.147362462558, + 19047.286592720335, + 19405.90201284478, + 19779.993622835893, + 20169.561422693663, + 20574.605412418117, + 20995.125592009223, + 21431.121961466997, + 21882.59452079145, + 22349.543269982558, + 22831.96820904033, + 23329.86933796478, + 23843.246656755888, + 24372.100165413674, + 24916.429863938112, + 25476.235752329223, + 26051.517830586992, + 15110.554591368, + 15145.324310052445, + 15195.570218603558, + 15261.292317021333, + 15342.490605305778, + 15439.16508345689, + 15551.315751474665, + 15678.942609359108, + 15822.045657110226, + 15980.624894727998, + 16154.680322212445, + 16344.211939563556, + 16549.21974678133, + 16769.703743865775, + 17005.66393081689, + 17257.100307634664, + 17524.01287431912, + 17806.401630870223, + 18104.266577288, + 18417.607713572448, + 18746.42503972356, + 19090.718555741332, + 19450.488261625782, + 19825.73415737689, + 20216.45624299466, + 20622.654518479118, + 21044.328983830223, + 21481.479639047997, + 21934.106484132448, + 22402.209519083557, + 22885.78874390133, + 23384.844158585787, + 23899.375763136886, + 24429.38355755468, + 24974.867541839118, + 25535.827715990225, + 26112.26408000799, + 15118.93560159393, + 15154.21851572727, + 15204.97761972728, + 15271.21291359395, + 15352.924397327293, + 15450.1120709273, + 15562.775934393974, + 15690.915987727312, + 15834.532230927325, + 15993.624663993993, + 16168.193286927337, + 16358.238099727345, + 16563.759102394015, + 16784.756294927356, + 17021.229677327367, + 17273.17924959404, + 17540.605011727384, + 17823.506963727385, + 18121.885105594058, + 18435.739437327404, + 18765.06995892741, + 19109.87667039408, + 19470.159571727425, + 19845.91866292743, + 20237.153943994097, + 20643.86541492745, + 21066.05307572745, + 21503.71692639412, + 21956.856966927473, + 22425.473197327472, + 22909.565617594144, + 23409.134227727493, + 23924.179027727492, + 24454.70001759418, + 25000.69719732751, + 25562.170566927518, + 26139.12012639418, + 15129.274053374998, + 15165.198057819442, + 15216.598252130556, + 15283.47463630833, + 15365.827210352776, + 15463.655974263887, + 15576.960928041663, + 15705.742071686107, + 15849.999405197224, + 16009.732928574998, + 16184.942641819447, + 16375.628544930556, + 16581.790637908332, + 16803.428920752773, + 17040.54339346389, + 17293.134056041665, + 17561.200908486113, + 17844.743950797223, + 18143.763182974995, + 18458.258605019448, + 18788.23021693056, + 19133.67801870833, + 19494.602010352784, + 19871.002191863892, + 20262.878563241662, + 20670.231124486116, + 21093.059875597224, + 21531.364816574995, + 21985.14594741945, + 22454.403268130558, + 22939.13677870833, + 23439.34647915278, + 23955.032369463886, + 24486.194449641673, + 25032.832719686114, + 25594.947179597224, + 26172.53782937499, + 15147.521015328, + 15184.599305532442, + 15237.153785603556, + 15305.184455541332, + 15388.691315345777, + 15487.674365016886, + 15602.133604554665, + 15732.069033959107, + 15877.480653230225, + 16038.368462367998, + 16214.732461372445, + 16406.572650243557, + 16613.88902898133, + 16836.68159758577, + 17074.95035605689, + 17328.695304394667, + 17597.916442599115, + 17882.61377067022, + 18182.787288607997, + 18498.43699641245, + 18829.56289408356, + 19176.16498162133, + 19538.24325902578, + 19915.797726296893, + 20308.828383434666, + 20717.335230439112, + 21141.318267310224, + 21580.777494047998, + 22035.712910652448, + 22506.12451712356, + 22992.012313461328, + 23493.37629966578, + 24010.216475736885, + 24542.532841674674, + 25090.325397479108, + 25653.59414315022, + 26232.33907868799, + 15165.295477227, + 15203.528053191445, + 15257.236819022555, + 15326.421774720331, + 15411.082920284774, + 15511.220255715885, + 15626.833781013665, + 15757.923496178108, + 15904.489401209225, + 16066.531496106996, + 16244.049780871446, + 16437.044255502555, + 16645.514920000332, + 16869.461774364776, + 17108.88481859589, + 17363.784052693667, + 17634.159476658115, + 17920.01109048922, + 18221.338894186996, + 18538.142887751445, + 18870.42307118256, + 19218.179444480324, + 19581.412007644783, + 19960.120760675887, + 20354.305703573657, + 20763.966836338117, + 21189.10415896922, + 21629.717671467, + 22085.80737383145, + 22557.373266062554, + 23044.415348160328, + 23546.933620124782, + 24064.92808195589, + 24598.39873365367, + 25147.34557521811, + 25711.768606649224, + 26291.667827946992, + 15182.597439072002, + 15221.984300796445, + 15276.847352387558, + 15347.186593845332, + 15433.002025169779, + 15534.29364636089, + 15651.061457418667, + 15783.30545834311, + 15931.025649134226, + 16094.222029792, + 16272.894600316447, + 16467.043360707557, + 16676.66831096533, + 16901.769451089775, + 17142.346781080887, + 17398.40030093867, + 17669.930010663116, + 17956.935910254222, + 18259.417999712, + 18577.37627903645, + 18910.81074822756, + 19259.721407285335, + 19624.108256209784, + 20003.97129500089, + 20399.310523658667, + 20810.125942183116, + 21236.417550574224, + 21678.185348831998, + 22135.42933695645, + 22608.14951494756, + 23096.34588280533, + 23600.018440529784, + 24119.167188120886, + 24653.792125578675, + 25203.89325290312, + 25769.470570094225, + 26350.524077151997, + 15199.426900863002, + 15239.968048347444, + 15295.98538569856, + 15367.478912916333, + 15454.448630000777, + 15556.894536951891, + 15674.816633769666, + 15808.21492045411, + 15957.089397005226, + 16121.440063422999, + 16301.266919707448, + 16496.569965858558, + 16707.34920187633, + 16933.604627760775, + 17175.336243511894, + 17432.54404912967, + 17705.228044614116, + 17993.388229965225, + 18297.024605182996, + 18616.137170267448, + 18950.725925218558, + 19300.790870036333, + 19666.33200472078, + 20047.34932927189, + 20443.84284368966, + 20855.812547974117, + 21283.258442125232, + 21726.180526142994, + 22184.578800027448, + 22658.45326377856, + 23147.803917396326, + 23652.630760880784, + 24172.933794231885, + 24708.713017449678, + 25259.968430534114, + 25826.700033485227, + 26408.90782630299, + 15215.783862600001, + 15257.479295844445, + 15314.650918955555, + 15387.298731933332, + 15475.422734777776, + 15579.02292748889, + 15698.09931006667, + 15832.651882511107, + 15982.680644822227, + 16148.185596999998, + 16329.166739044445, + 16525.624070955557, + 16737.557592733334, + 16964.967304377777, + 17207.853205888892, + 17466.21529726667, + 17740.053578511117, + 18029.368049622226, + 18334.158710599997, + 18654.42556144445, + 18990.168602155558, + 19341.387832733333, + 19708.083253177785, + 20090.25486348889, + 20487.902663666664, + 20901.026653711113, + 21329.626833622224, + 21773.703203399997, + 22233.255763044446, + 22708.284512555558, + 23198.78945193333, + 23704.770581177785, + 24226.227900288883, + 24763.16140926668, + 25315.571108111115, + 25883.456996822224, + 26466.819075399988, + 15231.668324283002, + 15274.518043287444, + 15332.843952158557, + 15406.646050896332, + 15495.924339500776, + 15600.67881797189, + 15720.909486309669, + 15856.616344514108, + 16007.799392585222, + 16174.458630522999, + 16356.59405832745, + 16554.205675998557, + 16767.293483536334, + 16995.857480940776, + 17239.897668211892, + 17499.414045349666, + 17774.406612354116, + 18064.875369225225, + 18370.820315963, + 18692.241452567447, + 19029.13877903856, + 19381.51229537633, + 19749.362001580786, + 20132.687897651893, + 20531.489983589665, + 20945.768259394117, + 21375.522725065224, + 21820.753380603, + 22281.460226007453, + 22757.64326127856, + 23249.30248641633, + 23756.43790142078, + 24279.04950629189, + 24817.137301029677, + 25370.701285634117, + 25939.741460105226, + 26524.257824442993, + 15247.080285912, + 15291.084290676445, + 15350.564485307556, + 15425.52086980533, + 15515.953444169776, + 15621.862208400888, + 15743.247162498665, + 15880.108306463108, + 16032.445640294223, + 16200.259163991997, + 16383.548877556446, + 16582.314780987555, + 16796.556874285332, + 17026.275157449774, + 17271.46963048089, + 17532.140293378667, + 17808.287146143117, + 18099.91018877422, + 18407.009421271992, + 18729.584843636447, + 19067.636455867556, + 19421.164257965334, + 19790.168249929786, + 20174.64843176089, + 20574.604803458664, + 20990.037365023116, + 21420.946116454226, + 21867.331057751995, + 22329.19218891645, + 22806.529509947555, + 23299.34302084533, + 23807.63272160978, + 24331.398612240886, + 24870.640692738674, + 25425.358963103114, + 25995.553423334226, + 26581.22407343199, + 15262.019747487002, + 15307.178038011443, + 15367.812518402558, + 15443.923188660332, + 15535.510048784778, + 15642.573098775889, + 15765.112338633666, + 15903.127768358107, + 16056.619387949226, + 16225.587197406998, + 16410.031196731445, + 16609.951385922555, + 16825.34776498033, + 17056.220333904777, + 17302.56909269589, + 17564.394041353666, + 17841.695179878116, + 18134.472508269224, + 18442.726026526998, + 18766.45573465145, + 19105.661632642554, + 19460.343720500332, + 19830.501998224783, + 20216.13646581589, + 20617.24712327366, + 21033.833970598116, + 21465.897007789226, + 21913.436234846995, + 22376.45165177145, + 22854.94325856256, + 23348.911055220327, + 23858.355041744784, + 24383.275218135885, + 24923.671584393676, + 25479.544140518115, + 26050.892886509228, + 26637.71782236699, + 15276.486709007999, + 15322.799285292442, + 15384.588051443552, + 15461.85300746133, + 15554.594153345775, + 15662.811489096886, + 15786.505014714663, + 15925.674730199107, + 16080.320635550223, + 16250.442730767996, + 16436.041015852446, + 16637.115490803557, + 16853.666155621333, + 17085.693010305775, + 17333.19605485689, + 17596.175289274666, + 17874.630713559112, + 18168.56232771022, + 18477.970131727994, + 18802.854125612444, + 19143.214309363553, + 19499.05068298133, + 19870.363246465782, + 20257.151999816888, + 20659.41694303466, + 21077.158076119114, + 21510.375399070224, + 21959.068911887993, + 22423.23861457245, + 22902.884507123556, + 23398.006589541328, + 23908.60486182578, + 24434.679323976885, + 24976.229975994676, + 25533.256817879115, + 26105.759849630223, + 26693.73907124799, + 15290.481170474999, + 15337.948032519442, + 15400.891084430556, + 15479.31032620833, + 15573.205757852775, + 15682.577379363887, + 15807.425190741666, + 15947.749191986108, + 16103.549383097225, + 16274.825764074996, + 16461.578334919446, + 16663.807095630556, + 16881.512046208332, + 17114.693186652774, + 17363.350516963892, + 17627.484037141665, + 17907.093747186114, + 18202.179647097222, + 18512.741736874992, + 18838.780016519442, + 19180.294486030558, + 19537.285145408325, + 19909.751994652783, + 20297.69503376389, + 20701.114262741663, + 21120.009681586114, + 21554.38129029722, + 22004.229088874996, + 22469.55307731945, + 22950.353255630558, + 23446.629623808327, + 23958.382181852783, + 24485.610929763887, + 25028.315867541674, + 25586.496995186117, + 26160.15431269722, + 26749.28782007499, + 15304.003131888003, + 15352.624279692445, + 15416.721617363559, + 15496.295144901334, + 15591.34486230578, + 15701.87076957689, + 15827.872866714668, + 15969.35115371911, + 16126.305630590228, + 16298.736297328001, + 16486.643153932448, + 16690.026200403558, + 16908.885436741337, + 17143.220862945775, + 17393.032479016892, + 17658.32028495467, + 17939.084280759118, + 18235.324466430226, + 18547.040841968, + 18874.233407372452, + 19216.90216264356, + 19575.047107781334, + 19948.668242785785, + 20337.765567656887, + 20742.339082394665, + 21162.38878699912, + 21597.91468147023, + 22048.916765807997, + 22515.395040012452, + 22997.34950408356, + 23494.78015802133, + 24007.687001825787, + 24536.070035496887, + 25079.929259034678, + 25639.26467243912, + 26214.07627571023, + 26804.364068847994, + 15317.052593247003, + 15366.828026811443, + 15432.079650242556, + 15512.807463540332, + 15609.011466704778, + 15720.691659735889, + 15847.848042633666, + 15990.480615398112, + 16148.589378029224, + 16322.174330526997, + 16511.23547289145, + 16715.772805122557, + 16935.786327220336, + 17171.276039184777, + 17422.24194101589, + 17688.684032713667, + 17970.602314278116, + 18267.996785709227, + 18580.867447006996, + 18909.21429817145, + 19253.03733920256, + 19612.33657010033, + 19987.111990864778, + 20377.363601495887, + 20783.09140199366, + 21204.29539235812, + 21640.975572589225, + 22093.131942687, + 22560.764502651447, + 23043.873252482554, + 23542.45819218033, + 24056.51932174479, + 24586.05664117589, + 25131.070150473683, + 25691.559849638117, + 26267.52573866922, + 26858.96781756699, + 15329.629554551999, + 15380.559273876444, + 15446.965183067556, + 15528.847282125333, + 15626.205571049777, + 15739.040049840889, + 15867.350718498667, + 16011.13757702311, + 16170.400625414224, + 16345.139863671999, + 16535.355291796444, + 16741.046909787558, + 16962.214717645336, + 17198.858715369777, + 17450.97890296089, + 17718.575280418667, + 18001.647847743116, + 18300.196604934223, + 18614.221551991996, + 18943.72268891645, + 19288.700015707556, + 19649.153532365333, + 20025.08323888978, + 20416.48913528089, + 20823.371221538666, + 21245.729497663116, + 21683.563963654226, + 22136.874619511997, + 22605.661465236448, + 23089.924500827557, + 23589.66372628533, + 24104.879141609785, + 24635.570746800884, + 25181.738541858682, + 25743.382526783116, + 26320.502701574227, + 26913.09906623199, + 15341.734015803, + 15393.818020887444, + 15461.378215838558, + 15544.414600656333, + 15642.92717534078, + 15756.91593989189, + 15886.380894309666, + 16031.32203859411, + 16191.739372745225, + 16367.632896762998, + 16559.002610647447, + 16765.84851439856, + 16988.17060801633, + 17225.968891500772, + 17479.24336485189, + 17747.99402806967, + 18032.220881154117, + 18331.923924105227, + 18647.103156923, + 18977.75857960745, + 19323.890192158557, + 19685.497994576333, + 20062.581986860783, + 20455.142169011888, + 20863.17854102966, + 21286.69110291412, + 21725.679854665224, + 22180.144796283, + 22650.08592776745, + 23135.503249118556, + 23636.396760336327, + 24152.766461420782, + 24684.612352371885, + 25231.934433189683, + 25794.732703874117, + 26373.007164425224, + 26966.75781484299, + 15353.365977, + 15406.604267844443, + 15475.318748555557, + 15559.50941913333, + 15659.176279577776, + 15774.319329888887, + 15904.938570066666, + 16051.034000111109, + 16212.605620022223, + 16389.6534298, + 16582.177429444448, + 16790.177618955557, + 17013.65399833333, + 17252.606567577775, + 17507.03532668889, + 17776.940275666668, + 18062.321414511112, + 18363.178743222223, + 18679.512261799995, + 19011.321970244444, + 19358.60786855556, + 19721.369956733335, + 20099.608234777785, + 20493.32270268889, + 20902.513360466663, + 21327.180208111116, + 21767.32324562222, + 22222.942473, + 22694.037890244454, + 23180.609497355563, + 23682.657294333327, + 24200.181281177785, + 24733.181457888888, + 25281.657824466678, + 25845.610380911115, + 26425.03912722222, + 27019.94406339999, + 15364.525438143, + 15418.918014747444, + 15488.786781218556, + 15574.131737556334, + 15674.952883760778, + 15791.250219831889, + 15923.023745769666, + 16070.273461574106, + 16232.999367245224, + 16411.201462783, + 16604.879748187446, + 16814.034223458555, + 17038.664888596333, + 17278.771743600773, + 17534.35478847189, + 17805.41402320967, + 18091.94944781412, + 18393.961062285223, + 18711.448866623, + 19044.41286082745, + 19392.85304489856, + 19756.76941883633, + 20136.161982640784, + 20531.030736311888, + 20941.37567984966, + 21367.19681325412, + 21808.494136525223, + 22265.267649662997, + 22737.517352667448, + 23225.243245538557, + 23728.44532827633, + 24247.123600880786, + 24781.278063351885, + 25330.908715689682, + 25896.015557894116, + 26476.598589965226, + 27072.657811902987, + 15365.736212566284, + 15420.257043246664, + 15490.254063793713, + 15575.727274207426, + 15676.676674487806, + 15793.102264634856, + 15925.00404464857, + 16072.382014528948, + 16235.236174276, + 16413.566523889713, + 16607.373063370098, + 16816.65579271714, + 17041.414711930855, + 17281.649821011237, + 17537.36111995829, + 17808.548608772, + 18095.212287452385, + 18397.35215599943, + 18714.968214413137, + 19048.060462693524, + 19396.628900840573, + 19760.673528854284, + 20140.194346734672, + 20535.19135448171, + 20945.664552095423, + 21371.61393957581, + 21813.03951692286, + 22269.941284136563, + 22742.319241216956, + 23230.173388164, + 23733.503724977705, + 24252.3102516581, + 24786.59296820514, + 25336.351874618867, + 25901.58697089924, + 26482.29825704629, + 27078.485733059988, + 15318.6466996, + 15430.881818177771, + 15558.593126622225, + 15701.780624933332, + 15860.444313111107, + 16034.584191155556, + 16224.200259066667, + 16429.29251684444, + 16649.86096448889, + 16885.905602, + 17137.426429377778, + 17404.423446622226, + 17686.896653733333, + 17984.846050711105, + 18298.271637555557, + 18627.173414266665, + 18971.55138084445, + 19331.405537288887, + 19706.735883599995, + 20097.542419777783, + 20503.825145822222, + 20925.58406173333, + 21362.819167511116, + 21815.530463155555, + 22283.717948666665, + 22767.38162404445, + 23266.52148928889, + 23781.137544399993, + 24311.229789377783, + 24856.798224222224, + 25417.842848933327, + 25994.363663511118, + 26586.36066795555, + 27193.833862266678, + 27816.783246444444, + 28455.20882048889, + 29109.11058439999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_20_MP.yaml b/examples/ColmacCxA_20_MP.yaml deleted file mode 100644 index fc6ae0e..0000000 --- a/examples/ColmacCxA_20_MP.yaml +++ /dev/null @@ -1,2157 +0,0 @@ ---- -central_system: - external_inlet_height: 0.2916666666666667 - external_outlet_height: 0 - heat_source_configurations: - - heat_distribution: - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSCONDENSERWATERHEATSOURCE - performance: - coil_configuration: EXTERNAL - compressor_lockout_temperature_hysteresis: 0 - maximum_refrigerant_temperature: 344.26111111111106 - maximum_temperature: 313.7055555555555 - minimum_temperature: 277.59444444444443 - performance_map: - grid_variables: - evaporator_environment_dry_bulb_temperature: - - 277.59444444444443 - - 277.65 - - 278.15 - - 278.65 - - 279.15 - - 279.65 - - 280.15 - - 280.3723 - - 280.65 - - 281.15 - - 281.65 - - 282.15 - - 282.65 - - 283.15 - - 283.65 - - 284.15 - - 284.65 - - 285.15 - - 285.65 - - 286.15 - - 286.65 - - 287.15 - - 287.65 - - 288.15 - - 288.65 - - 288.70555559999997 - - 313.7055555555555 - heat_source_temperature: - - 273.15 - - 275.12530864197527 - - 277.1006172839506 - - 279.0759259259259 - - 281.0512345679012 - - 283.02654320987654 - - 285.0018518518518 - - 286.9771604938271 - - 288.95246913580246 - - 290.92777777777775 - - 292.9030864197531 - - 294.8783950617284 - - 296.8537037037037 - - 298.82901234567896 - - 300.8043209876543 - - 302.7796296296296 - - 304.75493827160494 - - 306.73024691358023 - - 308.7055555555555 - - 310.68086419753087 - - 312.65617283950616 - - 314.63148148148144 - - 316.6067901234568 - - 318.5820987654321 - - 320.55740740740737 - - 322.5327160493827 - - 324.508024691358 - - 326.4833333333333 - - 328.45864197530864 - - 330.4339506172839 - - 332.4092592592592 - - 334.38456790123456 - - 336.35987654320985 - - 338.3351851851852 - - 340.3104938271605 - - 342.2858024691358 - - 344.26111111111106 - lookup_variables: - heating_capacity: - - 45131.56170437189 - - 44761.51731889293 - - 44423.88087242983 - - 44117.10556089237 - - 43839.57415079144 - - 43589.59897923905 - - 43365.421953948404 - - 43165.21455323387 - - 42987.0778260109 - - 42829.04239179617 - - 42689.068440707466 - - 42565.04573346374 - - 42454.793601385085 - - 42356.060946392754 - - 42266.52624100917 - - 42183.797528357856 - - 42105.41242216353 - - 42028.83810675206 - - 41951.47133705042 - - 41870.63843858681 - - 41783.59530749051 - - 41687.52741049199 - - 41579.549784922856 - - 41456.70703871589 - - 41315.97335040501 - - 41154.25246912524 - - 40968.377714612834 - - 40755.11197720515 - - 40511.147717840715 - - 40233.1069680592 - - 39917.541330001404 - - 39560.93197640931 - - 39159.68965062607 - - 38710.15466659594 - - 38208.59690886435 - - 37651.21583257785 - - 37034.140463484255 - - 45207.58125597329 - - 44836.42335032587 - - 44497.72541911425 - - 44189.93556160795 - - 43911.431447677525 - - 43660.52031779476 - - 43435.438983032596 - - 43234.353825065096 - - 43055.36079616745 - - 42896.48541921607 - - 42755.68278768846 - - 42630.83756566328 - - 42519.7639878204 - - 42420.20585944077 - - 42329.83655640652 - - 42246.25902520092 - - 42167.00578290842 - - 42089.5389172146 - - 42011.25008640619 - - 41929.460519371074 - - 41841.42101559829 - - 41744.31194517802 - - 41635.24324880162 - - 41511.25443776155 - - 41369.3145939515 - - 41206.322369866226 - - 41019.10598860166 - - 40804.423243854944 - - 40558.96149992427 - - 40279.33769170907 - - 39962.09832470989 - - 39603.71947502842 - - 39200.60678936752 - - 38749.0954850312 - - 38245.45034992463 - - 37685.86574255404 - - 37066.465592026965 - - 45893.65515598229 - - 45512.51695838051 - - 45164.30663472667 - - 44847.42641452781 - - 44560.20809789206 - - 44300.91305552871 - - 44067.73222874826 - - 43858.786129462314 - - 43672.12484018361 - - 43505.728014026055 - - 43357.504874704755 - - 43225.29421653588 - - 43106.86440443684 - - 42999.91337392611 - - 42902.06863112339 - - 42810.887252749504 - - 42723.85588612639 - - 42638.390749177204 - - 42551.83763042619 - - 42461.47188899882 - - 42364.49845462162 - - 42258.05182762237 - - 42139.19607892986 - - 42004.92485007423 - - 41852.16135318661 - - 41677.758370999334 - - 41478.49825684586 - - 41251.09293466089 - - 40992.18389898015 - - 40698.34221494059 - - 40366.068518280335 - - 39991.793015338575 - - 39571.87548305576 - - 39102.605268973384 - - 38580.20129123417 - - 38000.81203858191 - - 37360.51557036171 - - 46583.11309865278 - - 46192.070541237415 - - 45834.42300260105 - - 45508.52684248831 - - 45212.66799124484 - - 44945.061949817464 - - 44703.85378975424 - - 44487.11815320429 - - 44292.85925291791 - - 44119.01087224656 - - 43963.43636514285 - - 43823.928656160504 - - 43698.210240454486 - - 43583.93318378081 - - 43478.67912249671 - - 43379.95926356054 - - 43285.214384531784 - - 43191.81483357116 - - 43097.06052944044 - - 42998.18096150259 - - 42892.335189721765 - - 42776.611844663195 - - 42648.02912749331 - - 42503.53480997969 - - 42340.00623449107 - - 42154.250313997276 - - 41943.00353206937 - - 41702.93194287952 - - 41430.63117120105 - - 41122.626412408456 - - 40775.37243247734 - - 40385.25356798449 - - 39948.58372610784 - - 39461.60638462648 - - 38920.494591920695 - - 38321.350966971746 - - 37660.20769936228 - - 47275.90881312225 - - 46875.039861460384 - - 46508.032318727564 - - 46173.1966749059 - - 45868.77299057865 - - 45592.930896930135 - - 45343.76959574595 - - 45119.31785941277 - - 44917.53403091844 - - 44736.30602385195 - - 44573.45132240343 - - 44426.71698136421 - - 44293.77962612673 - - 44172.245452684554 - - 44059.650227632475 - - 43953.45928816637 - - 43851.0675420833 - - 43749.79946778146 - - 43646.909114260205 - - 43539.58010112006 - - 43424.92561856266 - - 43299.98842739083 - - 43161.74085900852 - - 43007.08481542086 - - 42832.851769234105 - - 42635.80276365563 - - 42412.62841249404 - - 42159.94890015905 - - 41874.31398166152 - - 41552.20298261347 - - 41190.02479922807 - - 40784.11789831964 - - 40330.75031730363 - - 39826.11966419672 - - 39266.353117616665 - - 38647.50742678234 - - 37965.56891151389 - - 47971.99544466004 - - 47561.38009774508 - - 47185.091795228145 - - 46841.39515732889 - - 46528.48437486809 - - 46244.48320926764 - - 45987.444992550656 - - 45755.35262734134 - - 45546.118586865094 - - 45357.58491494846 - - 45187.52322601909 - - 45033.63470510586 - - 44893.55010783873 - - 44764.829760448854 - - 44644.96355976851 - - 44531.37097323116 - - 44421.401038871365 - - 44312.3323653249 - - 44201.373131828645 - - 44085.66108822063 - - 43962.2635549401 - - 43828.17742302738 - - 43680.32915412393 - - 43515.57478047247 - - 43330.69990491677 - - 43122.41970090178 - - 42887.37891247361 - - 42622.15185427951 - - 42323.2424115679 - - 41987.08404018833 - - 41610.03976659154 - - 41188.40218782933 - - 40718.39347155479 - - 40196.16535602199 - - 39617.799150086335 - - 38979.30573320429 - - 38276.62555543341 - - 48671.325554667244 - - 48251.04584491894 - - 47865.55806035658 - - 47513.080951437354 - - 47191.76283921959 - - 46899.68161536272 - - 46634.844742127396 - - 46395.189252375385 - - 46178.5817495696 - - 45982.818407774124 - - 45805.624971654164 - - 45644.65675647612 - - 45497.49864810752 - - 45361.66510301703 - - 45234.60014827448 - - 45113.677381550864 - - 44996.199971118316 - - 44879.400655850106 - - 44760.44174522067 - - 44636.41511930562 - - 44504.34222878166 - - 44361.17409492671 - - 44203.791309619766 - - 44029.00403534109 - - 43833.552005171965 - - 43614.10452279492 - - 43367.26046249357 - - 43089.548269152765 - - 42777.42595825837 - - 42427.28111589755 - - 42035.430898758554 - - 41598.122034130756 - - 41111.53081990473 - - 40571.76312457214 - - 39974.85438722592 - - 39316.76961755999 - - 38593.40339586959 - - 48983.276769278316 - - 48558.72715937175 - - 48169.17591829526 - - 47812.82140280964 - - 47487.79154027684 - - 47192.143828659886 - - 46923.86533652305 - - 46680.872703031695 - - 46461.01213795237 - - 46262.059421652746 - - 46081.71990510166 - - 45917.62850986911 - - 45767.34972812622 - - 45628.377622645305 - - 45498.13582679977 - - 45373.97754456424 - - 45253.185550514434 - - 45132.972189827255 - - 45010.47937828075 - - 44882.778602254126 - - 44746.870918727735 - - 44599.68695528305 - - 44438.08691010274 - - 44258.86055197061 - - 44058.72722027163 - - 43834.335824991875 - - 43582.264846718586 - - 43299.022336640206 - - 42981.04591654628 - - 42624.70277882754 - - 42226.28968647582 - - 41782.03297308413 - - 41288.08854284664 - - 40740.54187055868 - - 40135.40800161672 - - 39468.63155201835 - - 38736.08670836236 - - 49373.8511206768 - - 48943.9911139412 - - 48549.387158498415 - - 48188.212135043184 - - 47858.56849487136 - - 47558.488259879916 - - 47285.93302256705 - - 47038.79394603208 - - 46814.89176397544 - - 46611.976780698766 - - 46427.72887110481 - - 46259.75748069748 - - 46105.60162558188 - - 45962.72989246421 - - 45828.540438651835 - - 45700.360992053276 - - 45575.44885117821 - - 45450.99088513751 - - 45324.10353364305 - - 45191.832807008046 - - 45051.154286146724 - - 44898.97312257457 - - 44732.12403840809 - - 44547.37132636508 - - 44341.40884976439 - - 44110.860042526074 - - 43852.27790917131 - - 43562.145024822436 - - 43236.87353520292 - - 42872.805156637434 - - 42466.21117605176 - - 42013.29245097282 - - 41510.179409528755 - - 40952.932050448726 - - 40337.539943063246 - - 39659.92222730377 - - 38915.927613703025 - - 50079.52353635351 - - 49640.16933190299 - - 49236.53455017112 - - 48866.746202090144 - - 48528.860869193486 - - 48220.86470361564 - - 47940.67342809237 - - 47686.132335960494 - - 47455.01629115801 - - 47245.02972822409 - - 47053.806652299034 - - 46878.9106391243 - - 46717.83483504249 - - 46568.00195699738 - - 46426.76429253387 - - 46291.40369979803 - - 46159.131607537056 - - 46027.08901509935 - - 45892.34649243438 - - 45751.90418009285 - - 45602.69178922656 - - 45441.5686015885 - - 45265.323469532756 - - 45070.674816014645 - - 44854.27063459057 - - 44612.688489418084 - - 44342.43551525596 - - 44039.948417464046 - - 43701.59347200336 - - 43323.666525436114 - - 42902.39299492562 - - 42433.927868236344 - - 41914.35570373397 - - 41339.69063038522 - - 40705.87634775811 - - 40008.78612602165 - - 39244.22280594614 - - 50788.29361149394 - - 50339.53334202722 - - 49926.95511202389 - - 49548.640062653794 - - 49202.59890568783 - - 48886.77192349809 - - 48599.028969057836 - - 48337.16946594145 - - 48098.92240832446 - - 47881.94636098359 - - 47683.82945929666 - - 47502.08940924268 - - 47334.1734874018 - - 47177.45854095533 - - 47029.25098768571 - - 46886.78681597654 - - 46747.23158481257 - - 46607.680423779726 - - 46465.15803306505 - - 46316.61868345673 - - 46158.94621634419 - - 45988.95404371787 - - 45803.38514816947 - - 45598.91208289178 - - 45372.1369716788 - - 45119.59150892564 - - 44837.73695962851 - - 44522.96415938491 - - 44171.593514393324 - - 43779.875001453525 - - 43343.988167966396 - - 42860.04213193392 - - 42324.07558195933 - - 41732.05677724684 - - 41079.883547602076 - - 40363.38329343156 - - 39578.31298574311 - - 51500.11157202649 - - 51042.0354036686 - - 50620.60313683781 - - 50233.850042941485 - - 49879.740963988115 - - 49556.17031258729 - - 49260.96207194981 - - 48991.86979588762 - - 48746.576608813804 - - 48522.695205742566 - - 48317.767852289326 - - 48129.266384670605 - - 47954.592209704104 - - 47791.07630480866 - - 47635.97921800425 - - 47486.49106791205 - - 47339.73154375432 - - 47192.74990535454 - - 47042.52498313728 - - 46885.965178128296 - - 46719.90846195448 - - 46541.12237684392 - - 46346.30403562574 - - 46132.08012173039 - - 45895.00688918932 - - 45631.570162635166 - - 45338.18533730179 - - 45011.19737902412 - - 44646.88082423826 - - 44241.439779981476 - - 43791.007923892204 - - 43291.64850420996 - - 42739.35433977551 - - 42130.04782003067 - - 41459.58090501853 - - 40723.735125383166 - - 39918.22158236998 - - 52214.92706001139 - - 51747.62719231367 - - 51317.43233352572 - - 50922.33188529243 - - 50560.24481985983 - - 50229.019680075064 - - 49926.434579386456 - - 49650.197201843504 - - 49397.94480209682 - - 49167.24420539816 - - 48955.59180760048 - - 48760.413575157836 - - 48579.06504512549 - - 48408.83132515979 - - 48246.92709351829 - - 48090.496599059654 - - 47936.61366124372 - - 47782.28167013152 - - 47624.4335863851 - - 47459.93194126784 - - 47285.56883664413 - - 47098.06594497959 - - 46894.0745093409 - - 46670.175343396055 - - 46422.87883141402 - - 46148.624928265024 - - 45843.78315942042 - - 45504.652620952664 - - 45127.46197953544 - - 44708.36947244355 - - 44243.46290755294 - - 43728.759663340716 - - 43160.20668888515 - - 42533.680503865595 - - 41844.98719856268 - - 41089.86243385805 - - 40263.97144123463 - - 52932.689133640684 - - 52456.25979958081 - - 52017.3958271323 - - 51614.040748177635 - - 51244.06766520031 - - 50905.27925128506 - - 50595.40775011775 - - 50312.11497598537 - - 50052.99231377615 - - 49815.5607189793 - - 49597.27071768538 - - 49395.502406585976 - - 49207.565452973875 - - 49030.69909474296 - - 48862.072140388336 - - 48698.78296900623 - - 48537.85953029398 - - 48376.259344550155 - - 48210.8695026744 - - 48038.50666616758 - - 47855.91706713164 - - 47659.77650826973 - - 47446.69036288614 - - 47213.19357488628 - - 46955.750658776764 - - 46670.75569966529 - - 46354.532353260794 - - 46003.333845873305 - - 45613.34297441396 - - 45180.67210639515 - - 44701.36317993038 - - 44171.387703734246 - - 43586.64675712258 - - 42942.970990012305 - - 42236.12062292156 - - 41461.78544696954 - - 40615.5848238767 - - 53653.34626723825 - - 53167.883733220224 - - 52720.44615883413 - - 52308.931206199944 - - 51931.16610803875 - - 51584.90766767279 - - 51267.8422590255 - - 50977.585826621405 - - 50711.68388558623 - - 50467.6115216468 - - 50242.77339113118 - - 50034.50372096847 - - 49840.06630868902 - - 49656.65452242426 - - 49481.39130090682 - - 49311.32915347048 - - 49143.450160050124 - - 48974.665971181836 - - 48801.81780800285 - - 48621.67646225152 - - 48430.94229626735 - - 48226.245242991026 - - 48004.14480596438 - - 47761.13005933038 - - 47493.61964783315 - - 47197.961786817956 - - 46870.43426223125 - - 46507.244430620616 - - 46104.529219134725 - - 45658.35512552354 - - 45164.71821813805 - - 44619.544135930424 - - 44018.68808845404 - - 43357.93485586334 - - 42632.99878891404 - - 41839.52380896284 - - 40973.08340796773 - - 54376.84635125972 - - 53882.448917113885 - - 53426.53528593945 - - 53006.95725009397 - - 52621.49617253607 - - 52267.86298682553 - - 51943.698197123296 - - 51646.57187819149 - - 51373.983675393334 - - 51123.36280469321 - - 50892.06805265671 - - 50677.38777645049 - - 50476.539903842444 - - 50286.671933201535 - - 50104.86093349792 - - 49928.113544302934 - - 49753.365975789005 - - 49577.48400872972 - - 49397.262994499906 - - 49209.427855075446 - - 49010.63308303336 - - 48797.46274155189 - - 48566.43046441042 - - 48313.97945598942 - - 48036.4824912706 - - 47730.24191583674 - - 47391.489645871836 - - 47016.38716816099 - - 46601.02554009047 - - 46141.425389647724 - - 45633.536915421326 - - 45073.23988660093 - - 44456.34364297752 - - 43778.58709494305 - - 43035.63872349074 - - 42223.09658021488 - - 41336.48828731099 - - 55103.136692292675 - - 54599.90469127562 - - 54135.61458188847 - - 53708.072286726216 - - 53315.013298985104 - - 52954.102682462406 - - 52622.93507155663 - - 52319.03467126741 - - 52039.85525719557 - - 51782.780175542975 - - 51545.12234311276 - - 51324.124247309155 - - 51116.957946137554 - - 50920.72506820451 - - 50732.45681271768 - - 50549.11394948596 - - 50367.58681891929 - - 50184.69533202886 - - 49997.188970426956 - - 49801.74678632704 - - 49594.97740254367 - - 49373.41901249265 - - 49133.539380190865 - - 48871.735840256384 - - 48584.33529790837 - - 48267.59422896723 - - 47917.69867985445 - - 47530.7642675927 - - 47102.83617980574 - - 46629.88917471862 - - 46107.8275811574 - - 45532.485298549334 - - 44899.625796922875 - - 44204.94211690758 - - 43444.05686973419 - - 42612.52223723454 - - 41705.819971841636 - - 55832.16401305636 - - 55320.199811851075 - - 54847.634836253084 - - 54412.22913909496 - - 54011.67234381043 - - 53643.58364443433 - - 53305.51180560272 - - 52994.93516255276 - - 52709.261621122794 - - 52445.828657752274 - - 52201.90331948186 - - 51974.68222395331 - - 51761.29155940955 - - 51558.78708469469 - - 51364.15412925393 - - 51174.30759313369 - - 50986.09194698147 - - 50796.28123204596 - - 50601.579060177064 - - 50398.61861382572 - - 50183.96264604405 - - 49954.103480485384 - - 49705.463011404165 - - 49434.39270365597 - - 49137.173592697545 - - 48810.0162845868 - - 48449.0609559828 - - 48050.37735414571 - - 47609.96479693688 - - 47123.752172818866 - - 46587.59794085529 - - 45997.290130710906 - - 45348.54634265176 - - 44637.01374754491 - - 43858.26908685866 - - 43007.818672662346 - - 42081.09838762659 - - 56563.87445240196 - - 56043.28245111775 - - 55562.546254737164 - - 55119.380046330334 - - 54711.4275795685 - - 54336.26217872409 - - 53991.38673867066 - - 53674.23372488294 - - 53382.1651734368 - - 53112.47269100919 - - 52862.377454878384 - - 52629.030212923644 - - 52409.51128362544 - - 52200.83055606542 - - 51999.92748992635 - - 51803.67111549213 - - 51608.86003364786 - - 51412.222415879754 - - 51210.41600427523 - - 51000.028111522784 - - 50777.575620912125 - - 50539.504986334025 - - 50282.19223228055 - - 50001.94295384479 - - 49694.992316721036 - - 49357.50505720472 - - 48985.57548219244 - - 48575.22746918196 - - 48122.41446627211 - - 47623.01949216302 - - 47072.85513615582 - - 46467.66355815285 - - 45803.11648865766 - - 45074.81522877486 - - 44278.29065021029 - - 43409.00319527084 - - 42462.342876864655 - - 57298.21356531245 - - 56769.10019748491 - - 56280.29845917631 - - 55829.476663694266 - - 55414.23269494762 - - 55032.09400744628 - - 54680.517626301385 - - 54356.89014722519 - - 54058.5277365311 - - 53782.67613113364 - - 53526.510638548556 - - 53287.1361368927 - - 53061.58707488411 - - 52846.8274718419 - - 52639.75091768642 - - 52437.18057293913 - - 52235.869168722624 - - 52032.499006760685 - - 51823.681959378264 - - 51605.9594695014 - - 51375.80255065731 - - 51129.61178697437 - - 50863.71733318212 - - 50574.37891461123 - - 50257.785827193555 - - 49910.05693746202 - - 49527.240682550786 - - 49105.31507019513 - - 48640.18767873147 - - 48127.69565709741 - - 47563.60572483169 - - 46943.614172074165 - - 46263.346859565914 - - 45518.35921864907 - - 44704.13625126707 - - 43816.0925299643 - - 42849.57219788645 - - 58035.12632290253 - - 57497.6000554936 - - 57000.84048753784 - - 56542.47006258043 - - 56120.040794767745 - - 55731.03426884721 - - 55372.861640167524 - - 55042.86363467846 - - 54738.310548931 - - 54456.402250077175 - - 54194.268175870326 - - 53948.96733466476 - - 53717.488305416104 - - 53496.74923768103 - - 53283.59785161739 - - 53074.8114379842 - - 52867.09685814162 - - 52657.09054405093 - - 52441.35849827465 - - 52216.39629397634 - - 51978.62907492078 - - 51724.41155547387 - - 51450.02802060267 - - 51151.692325875454 - - 50825.54789746155 - - 50467.667732131464 - - 50074.05439725689 - - 49640.640030810646 - - 49163.286341366635 - - 48637.784608100104 - - 48059.85568078728 - - 47425.14997980553 - - 46729.2474961335 - - 45967.65779135091 - - 45135.819997638646 - - 44229.102817778694 - - 43242.80452515428 - - 58774.55711241886 - - 58228.72844581684 - - 57724.12079392112 - - 57258.31073051451 - - 56828.80439998085 - - 56433.03751730517 - - 56068.375368073685 - - 55732.11280847372 - - 55421.47426529375 - - 55133.61373592343 - - 54865.61478835353 - - 54614.49056117604 - - 54377.183763584 - - 54150.56667537168 - - 53931.44114693446 - - 53716.5385992689 - - 53502.52002397269 - - 53285.975983244665 - - 53063.426609884875 - - 52831.321607294456 - - 52586.040249475656 - - 52323.891381031994 - - 52041.11341716803 - - 51733.874343689575 - - 51398.271717003496 - - 51030.33266411784 - - 50626.013882641855 - - 50181.20164078589 - - 49691.71177736143 - - 49153.289701781185 - - 48561.61039405895 - - 47912.27840480967 - - 47200.82785524952 - - 46422.72243719571 - - 45573.35541306671 - - 44648.04961588205 - - 43642.05744926248 - - 59516.44973723986 - - 58962.43120525928 - - 58450.08724855718 - - 57976.94857115382 - - 57540.475447670644 - - 57138.057723330174 - - 56767.01481395621 - - 56424.5957059736 - - 56107.978956408355 - - 55814.272692887665 - - 55540.514613639876 - - 55283.67198749447 - - 55040.64165388204 - - 54808.25002283442 - - 54583.25307498452 - - 54362.33636156645 - - 54142.115004415406 - - 53919.1336959678 - - 53689.866699261205 - - 53450.71784793427 - - 53198.02054622683 - - 52928.03776897992 - - 52636.96206163567 - - 52320.91554023737 - - 51975.94989142949 - - 51598.046372457604 - - 51183.11581116847 - - 50726.998606010005 - - 50225.46472603123 - - 49674.213710882366 - - 49068.8746708148 - - 48405.00628668098 - - 47678.09680993464 - - 46883.56406263052 - - 46016.75543742463 - - 45072.94789757405 - - 44047.34797693704 - - 60260.74741687575 - - 59698.65358675752 - - 59178.687137808854 - - 58698.33290428755 - - 58255.005291052585 - - 57846.048273564054 - - 57468.73539788325 - - 57120.269780672585 - - 56797.7841091956 - - 56498.340641317045 - - 56218.931205502784 - - 55956.47720081982 - - 55707.82959693635 - - 55469.76893412172 - - 55239.00532324635 - - 55012.17844578192 - - 54785.85755380115 - - 54556.541469978016 - - 54320.6585875876 - - 54074.56687050612 - - 53814.55385321098 - - 53536.836640780675 - - 53237.56190889492 - - 52912.80590383454 - - 52558.574442481535 - - 52170.80291231904 - - 51745.356271431345 - - 51278.02904850393 - - 50764.545342823316 - - 50200.55882427729 - - 49581.65273335475 - - 48903.339881145715 - - 48161.06264934146 - - 47350.19299023422 - - 46466.03242671762 - - 45503.81205228621 - - 44458.69253103586 - - 61007.392786968594 - - 60437.340259379955 - - 59909.8671641709 - - 59422.412465836795 - - 58972.344699474124 - - 58556.96197078052 - - 58173.49195605483 - - 57819.091902197004 - - 57490.84862670816 - - 57185.77851769053 - - 56900.827533847536 - - 56632.871204483745 - - 56378.71462950489 - - 56135.09247941781 - - 55898.668995330525 - - 55666.03798895222 - - 55433.7228425932 - - 55198.17650916489 - - 54955.781512180016 - - 54702.84994575228 - - 54435.62347459659 - - 54150.27333402908 - - 53842.90032996694 - - 53509.53483892855 - - 53146.13680803346 - - 52748.59575500232 - - 52312.73076815699 - - 51834.290506420446 - - 51308.95319931678 - - 50732.32664697134 - - 50099.94822011056 - - 49407.28486006195 - - 48649.73307875435 - - 47822.61895871757 - - 46921.19815308272 - - 45940.65588558194 - - 44876.106950548594 - - 61090.495857755304 - - 60519.56631564775 - - 59991.266387286894 - - 59503.02994052375 - - 59052.22041381045 - - 58636.130816200304 - - 58251.983727347775 - - 57896.931297508476 - - 57568.05524753915 - - 57262.36686889773 - - 56976.807023643254 - - 56708.24614443592 - - 56453.484234537136 - - 56209.25086780941 - - 55972.20518871637 - - 55738.93591232286 - - 55505.96132429483 - - 55269.72928089942 - - 55026.6172090049 - - 54772.93210608069 - - 54504.91054019737 - - 54218.71865002664 - - 53910.452144841394 - - 53576.13630451566 - - 53211.72597952463 - - 52813.10559094459 - - 52376.089130453074 - - 51896.42016032868 - - 51369.77181345119 - - 50791.74679330155 - - 50157.87737396186 - - 49463.62540011532 - - 48704.382287046385 - - 47875.4690206405 - - 46972.136157384455 - - 45989.56382436602 - - 44922.86171927423 - - 99980.60423340034 - - 99206.28651715042 - - 98496.23456409365 - - 97845.58875396205 - - 97249.41903708887 - - 96702.72493440854 - - 96200.43553745661 - - 95737.40950836978 - - 95308.4350798859 - - 94908.23005534396 - - 94531.44180868412 - - 94172.64728444775 - - 93826.35299777721 - - 93486.99503441618 - - 93148.93905070938 - - 92806.48027360276 - - 92453.84350064331 - - 92085.18309997932 - - 91694.58301036016 - - 91276.05674113632 - - 90823.54737225943 - - 90330.92755428236 - - 89791.99950835906 - - 89200.4950262447 - - 88550.0754702955 - - 87834.33177346888 - - 87046.78443932341 - - 86180.8835420189 - - 85230.0087263161 - - 84187.46920757716 - - 83046.50377176522 - - 81800.28077544458 - - 80441.89814578074 - - 78964.38338054031 - - 77360.6935480912 - - 75623.71528740221 - - 73746.26480804349 - input_power: - - 15007.498173600003 - - 15036.368209511113 - - 15080.71443528889 - - 15140.536850933333 - - 15215.835456444445 - - 15306.610251822223 - - 15412.861237066667 - - 15534.588412177776 - - 15671.791777155559 - - 15824.471332000001 - - 15992.627076711115 - - 16176.259011288892 - - 16375.367135733335 - - 16589.951450044442 - - 16820.011954222224 - - 17065.548648266667 - - 17326.56153217778 - - 17603.05060595556 - - 17895.0158696 - - 18202.457323111117 - - 18525.374966488893 - - 18863.76879973333 - - 19217.63882284445 - - 19586.98503582223 - - 19971.807438666667 - - 20372.10603137778 - - 20787.88081395556 - - 21219.131786399998 - - 21665.858948711124 - - 22128.062300888894 - - 22605.74184293333 - - 23098.89757484445 - - 23607.52949662222 - - 24131.637608266676 - - 24671.22190977778 - - 25226.282401155557 - - 25796.81908239999 - - 15009.869780522999 - - 15038.868070407443 - - 15083.342550158552 - - 15143.293219776333 - - 15218.720079260776 - - 15309.62312861189 - - 15416.002367829666 - - 15537.85779691411 - - 15675.189415865225 - - 15827.997224683 - - 15996.28122336745 - - 16180.041411918555 - - 16379.277790336331 - - 16593.990358620777 - - 16824.17911677189 - - 17069.844064789664 - - 17330.985202674114 - - 17607.60253042522 - - 17899.696048043 - - 18207.26575552745 - - 18530.311652878558 - - 18868.83374009633 - - 19222.832017180786 - - 19592.30648413189 - - 19977.257140949663 - - 20377.68398763412 - - 20793.58702418522 - - 21224.966250603004 - - 21671.821666887456 - - 22134.153273038555 - - 22611.96106905633 - - 23105.24505494078 - - 23614.005230691888 - - 24138.241596309676 - - 24677.954151794118 - - 25233.142897145222 - - 25803.807832362992 - - 15030.951742800002 - - 15061.104318444442 - - 15106.733083955556 - - 15167.838039333332 - - 15244.419184577777 - - 15336.47651968889 - - 15444.010044666666 - - 15567.01975951111 - - 15705.505664222226 - - 15859.467758799996 - - 16028.906043244448 - - 16213.820517555558 - - 16414.21118173333 - - 16630.078035777773 - - 16861.421079688887 - - 17108.240313466667 - - 17370.535737111117 - - 17648.30735062222 - - 17941.555153999994 - - 18250.279147244448 - - 18574.47933035556 - - 18914.155703333334 - - 19269.30826617778 - - 19639.93701888889 - - 20026.04196146666 - - 20427.62309391112 - - 20844.680416222218 - - 21277.213928399993 - - 21725.22363044445 - - 22188.709522355555 - - 22667.671604133327 - - 23162.10987577778 - - 23672.024337288884 - - 24197.41498866668 - - 24738.281829911117 - - 25294.624861022225 - - 25866.444081999995 - - 15051.561205023 - - 15082.868066427443 - - 15129.651117698553 - - 15191.910358836332 - - 15269.645789840777 - - 15362.857410711886 - - 15471.545221449665 - - 15595.70922205411 - - 15735.349412525224 - - 15890.465792862997 - - 16061.058363067448 - - 16247.127123138554 - - 16448.67207307633 - - 16665.69321288077 - - 16898.19054255189 - - 17146.164062089665 - - 17409.61377149411 - - 17688.53967076522 - - 17982.941759902995 - - 18292.820038907448 - - 18618.174507778556 - - 18959.00516651633 - - 19315.31201512078 - - 19687.09505359189 - - 20074.354281929664 - - 20477.089700134115 - - 20895.301308205224 - - 21328.989106143 - - 21778.153093947454 - - 22242.79327161856 - - 22722.909639156333 - - 23218.50219656078 - - 23729.570943831885 - - 24256.11588096967 - - 24798.137007974117 - - 25355.63432484522 - - 25928.607831582984 - - 15071.698167192 - - 15104.159314356444 - - 15152.096651387556 - - 15215.51017828533 - - 15294.399895049779 - - 15388.76580168089 - - 15498.607898178667 - - 15623.926184543108 - - 15764.720660774226 - - 15920.991326872 - - 16092.738182836445 - - 16279.961228667556 - - 16482.660464365334 - - 16700.835889929775 - - 16934.48750536089 - - 17183.615310658668 - - 17448.219305823117 - - 17728.299490854224 - - 18023.855865751997 - - 18334.88843051645 - - 18661.397185147558 - - 19003.38212964533 - - 19360.84326400978 - - 19733.78058824089 - - 20122.194102338664 - - 20526.08380630311 - - 20945.44970013422 - - 21380.291783831995 - - 21830.610057396454 - - 22296.404520827557 - - 22777.67517412533 - - 23274.422017289784 - - 23786.645050320883 - - 24314.344273218678 - - 24857.519685983116 - - 25416.171288614223 - - 25990.299081111993 - - 15091.362629307 - - 15124.978062231445 - - 15174.069685022556 - - 15238.63749768033 - - 15318.681500204779 - - 15414.201692595889 - - 15525.198074853666 - - 15651.670646978107 - - 15793.619408969224 - - 15951.044360826998 - - 16123.945502551447 - - 16312.322834142557 - - 16516.17635560033 - - 16735.506066924776 - - 16970.31196811589 - - 17220.594059173665 - - 17486.352340098114 - - 17767.586810889225 - - 18064.297471546997 - - 18376.484322071447 - - 18704.147362462558 - - 19047.286592720335 - - 19405.90201284478 - - 19779.993622835893 - - 20169.561422693663 - - 20574.605412418117 - - 20995.125592009223 - - 21431.121961466997 - - 21882.59452079145 - - 22349.543269982558 - - 22831.96820904033 - - 23329.86933796478 - - 23843.246656755888 - - 24372.100165413674 - - 24916.429863938112 - - 25476.235752329223 - - 26051.517830586992 - - 15110.554591368 - - 15145.324310052445 - - 15195.570218603558 - - 15261.292317021333 - - 15342.490605305778 - - 15439.16508345689 - - 15551.315751474665 - - 15678.942609359108 - - 15822.045657110226 - - 15980.624894727998 - - 16154.680322212445 - - 16344.211939563556 - - 16549.21974678133 - - 16769.703743865775 - - 17005.66393081689 - - 17257.100307634664 - - 17524.01287431912 - - 17806.401630870223 - - 18104.266577288 - - 18417.607713572448 - - 18746.42503972356 - - 19090.718555741332 - - 19450.488261625782 - - 19825.73415737689 - - 20216.45624299466 - - 20622.654518479118 - - 21044.328983830223 - - 21481.479639047997 - - 21934.106484132448 - - 22402.209519083557 - - 22885.78874390133 - - 23384.844158585787 - - 23899.375763136886 - - 24429.38355755468 - - 24974.867541839118 - - 25535.827715990225 - - 26112.26408000799 - - 15118.93560159393 - - 15154.21851572727 - - 15204.97761972728 - - 15271.21291359395 - - 15352.924397327293 - - 15450.1120709273 - - 15562.775934393974 - - 15690.915987727312 - - 15834.532230927325 - - 15993.624663993993 - - 16168.193286927337 - - 16358.238099727345 - - 16563.759102394015 - - 16784.756294927356 - - 17021.229677327367 - - 17273.17924959404 - - 17540.605011727384 - - 17823.506963727385 - - 18121.885105594058 - - 18435.739437327404 - - 18765.06995892741 - - 19109.87667039408 - - 19470.159571727425 - - 19845.91866292743 - - 20237.153943994097 - - 20643.86541492745 - - 21066.05307572745 - - 21503.71692639412 - - 21956.856966927473 - - 22425.473197327472 - - 22909.565617594144 - - 23409.134227727493 - - 23924.179027727492 - - 24454.70001759418 - - 25000.69719732751 - - 25562.170566927518 - - 26139.12012639418 - - 15129.274053374998 - - 15165.198057819442 - - 15216.598252130556 - - 15283.47463630833 - - 15365.827210352776 - - 15463.655974263887 - - 15576.960928041663 - - 15705.742071686107 - - 15849.999405197224 - - 16009.732928574998 - - 16184.942641819447 - - 16375.628544930556 - - 16581.790637908332 - - 16803.428920752773 - - 17040.54339346389 - - 17293.134056041665 - - 17561.200908486113 - - 17844.743950797223 - - 18143.763182974995 - - 18458.258605019448 - - 18788.23021693056 - - 19133.67801870833 - - 19494.602010352784 - - 19871.002191863892 - - 20262.878563241662 - - 20670.231124486116 - - 21093.059875597224 - - 21531.364816574995 - - 21985.14594741945 - - 22454.403268130558 - - 22939.13677870833 - - 23439.34647915278 - - 23955.032369463886 - - 24486.194449641673 - - 25032.832719686114 - - 25594.947179597224 - - 26172.53782937499 - - 15147.521015328 - - 15184.599305532442 - - 15237.153785603556 - - 15305.184455541332 - - 15388.691315345777 - - 15487.674365016886 - - 15602.133604554665 - - 15732.069033959107 - - 15877.480653230225 - - 16038.368462367998 - - 16214.732461372445 - - 16406.572650243557 - - 16613.88902898133 - - 16836.68159758577 - - 17074.95035605689 - - 17328.695304394667 - - 17597.916442599115 - - 17882.61377067022 - - 18182.787288607997 - - 18498.43699641245 - - 18829.56289408356 - - 19176.16498162133 - - 19538.24325902578 - - 19915.797726296893 - - 20308.828383434666 - - 20717.335230439112 - - 21141.318267310224 - - 21580.777494047998 - - 22035.712910652448 - - 22506.12451712356 - - 22992.012313461328 - - 23493.37629966578 - - 24010.216475736885 - - 24542.532841674674 - - 25090.325397479108 - - 25653.59414315022 - - 26232.33907868799 - - 15165.295477227 - - 15203.528053191445 - - 15257.236819022555 - - 15326.421774720331 - - 15411.082920284774 - - 15511.220255715885 - - 15626.833781013665 - - 15757.923496178108 - - 15904.489401209225 - - 16066.531496106996 - - 16244.049780871446 - - 16437.044255502555 - - 16645.514920000332 - - 16869.461774364776 - - 17108.88481859589 - - 17363.784052693667 - - 17634.159476658115 - - 17920.01109048922 - - 18221.338894186996 - - 18538.142887751445 - - 18870.42307118256 - - 19218.179444480324 - - 19581.412007644783 - - 19960.120760675887 - - 20354.305703573657 - - 20763.966836338117 - - 21189.10415896922 - - 21629.717671467 - - 22085.80737383145 - - 22557.373266062554 - - 23044.415348160328 - - 23546.933620124782 - - 24064.92808195589 - - 24598.39873365367 - - 25147.34557521811 - - 25711.768606649224 - - 26291.667827946992 - - 15182.597439072002 - - 15221.984300796445 - - 15276.847352387558 - - 15347.186593845332 - - 15433.002025169779 - - 15534.29364636089 - - 15651.061457418667 - - 15783.30545834311 - - 15931.025649134226 - - 16094.222029792 - - 16272.894600316447 - - 16467.043360707557 - - 16676.66831096533 - - 16901.769451089775 - - 17142.346781080887 - - 17398.40030093867 - - 17669.930010663116 - - 17956.935910254222 - - 18259.417999712 - - 18577.37627903645 - - 18910.81074822756 - - 19259.721407285335 - - 19624.108256209784 - - 20003.97129500089 - - 20399.310523658667 - - 20810.125942183116 - - 21236.417550574224 - - 21678.185348831998 - - 22135.42933695645 - - 22608.14951494756 - - 23096.34588280533 - - 23600.018440529784 - - 24119.167188120886 - - 24653.792125578675 - - 25203.89325290312 - - 25769.470570094225 - - 26350.524077151997 - - 15199.426900863002 - - 15239.968048347444 - - 15295.98538569856 - - 15367.478912916333 - - 15454.448630000777 - - 15556.894536951891 - - 15674.816633769666 - - 15808.21492045411 - - 15957.089397005226 - - 16121.440063422999 - - 16301.266919707448 - - 16496.569965858558 - - 16707.34920187633 - - 16933.604627760775 - - 17175.336243511894 - - 17432.54404912967 - - 17705.228044614116 - - 17993.388229965225 - - 18297.024605182996 - - 18616.137170267448 - - 18950.725925218558 - - 19300.790870036333 - - 19666.33200472078 - - 20047.34932927189 - - 20443.84284368966 - - 20855.812547974117 - - 21283.258442125232 - - 21726.180526142994 - - 22184.578800027448 - - 22658.45326377856 - - 23147.803917396326 - - 23652.630760880784 - - 24172.933794231885 - - 24708.713017449678 - - 25259.968430534114 - - 25826.700033485227 - - 26408.90782630299 - - 15215.783862600001 - - 15257.479295844445 - - 15314.650918955555 - - 15387.298731933332 - - 15475.422734777776 - - 15579.02292748889 - - 15698.09931006667 - - 15832.651882511107 - - 15982.680644822227 - - 16148.185596999998 - - 16329.166739044445 - - 16525.624070955557 - - 16737.557592733334 - - 16964.967304377777 - - 17207.853205888892 - - 17466.21529726667 - - 17740.053578511117 - - 18029.368049622226 - - 18334.158710599997 - - 18654.42556144445 - - 18990.168602155558 - - 19341.387832733333 - - 19708.083253177785 - - 20090.25486348889 - - 20487.902663666664 - - 20901.026653711113 - - 21329.626833622224 - - 21773.703203399997 - - 22233.255763044446 - - 22708.284512555558 - - 23198.78945193333 - - 23704.770581177785 - - 24226.227900288883 - - 24763.16140926668 - - 25315.571108111115 - - 25883.456996822224 - - 26466.819075399988 - - 15231.668324283002 - - 15274.518043287444 - - 15332.843952158557 - - 15406.646050896332 - - 15495.924339500776 - - 15600.67881797189 - - 15720.909486309669 - - 15856.616344514108 - - 16007.799392585222 - - 16174.458630522999 - - 16356.59405832745 - - 16554.205675998557 - - 16767.293483536334 - - 16995.857480940776 - - 17239.897668211892 - - 17499.414045349666 - - 17774.406612354116 - - 18064.875369225225 - - 18370.820315963 - - 18692.241452567447 - - 19029.13877903856 - - 19381.51229537633 - - 19749.362001580786 - - 20132.687897651893 - - 20531.489983589665 - - 20945.768259394117 - - 21375.522725065224 - - 21820.753380603 - - 22281.460226007453 - - 22757.64326127856 - - 23249.30248641633 - - 23756.43790142078 - - 24279.04950629189 - - 24817.137301029677 - - 25370.701285634117 - - 25939.741460105226 - - 26524.257824442993 - - 15247.080285912 - - 15291.084290676445 - - 15350.564485307556 - - 15425.52086980533 - - 15515.953444169776 - - 15621.862208400888 - - 15743.247162498665 - - 15880.108306463108 - - 16032.445640294223 - - 16200.259163991997 - - 16383.548877556446 - - 16582.314780987555 - - 16796.556874285332 - - 17026.275157449774 - - 17271.46963048089 - - 17532.140293378667 - - 17808.287146143117 - - 18099.91018877422 - - 18407.009421271992 - - 18729.584843636447 - - 19067.636455867556 - - 19421.164257965334 - - 19790.168249929786 - - 20174.64843176089 - - 20574.604803458664 - - 20990.037365023116 - - 21420.946116454226 - - 21867.331057751995 - - 22329.19218891645 - - 22806.529509947555 - - 23299.34302084533 - - 23807.63272160978 - - 24331.398612240886 - - 24870.640692738674 - - 25425.358963103114 - - 25995.553423334226 - - 26581.22407343199 - - 15262.019747487002 - - 15307.178038011443 - - 15367.812518402558 - - 15443.923188660332 - - 15535.510048784778 - - 15642.573098775889 - - 15765.112338633666 - - 15903.127768358107 - - 16056.619387949226 - - 16225.587197406998 - - 16410.031196731445 - - 16609.951385922555 - - 16825.34776498033 - - 17056.220333904777 - - 17302.56909269589 - - 17564.394041353666 - - 17841.695179878116 - - 18134.472508269224 - - 18442.726026526998 - - 18766.45573465145 - - 19105.661632642554 - - 19460.343720500332 - - 19830.501998224783 - - 20216.13646581589 - - 20617.24712327366 - - 21033.833970598116 - - 21465.897007789226 - - 21913.436234846995 - - 22376.45165177145 - - 22854.94325856256 - - 23348.911055220327 - - 23858.355041744784 - - 24383.275218135885 - - 24923.671584393676 - - 25479.544140518115 - - 26050.892886509228 - - 26637.71782236699 - - 15276.486709007999 - - 15322.799285292442 - - 15384.588051443552 - - 15461.85300746133 - - 15554.594153345775 - - 15662.811489096886 - - 15786.505014714663 - - 15925.674730199107 - - 16080.320635550223 - - 16250.442730767996 - - 16436.041015852446 - - 16637.115490803557 - - 16853.666155621333 - - 17085.693010305775 - - 17333.19605485689 - - 17596.175289274666 - - 17874.630713559112 - - 18168.56232771022 - - 18477.970131727994 - - 18802.854125612444 - - 19143.214309363553 - - 19499.05068298133 - - 19870.363246465782 - - 20257.151999816888 - - 20659.41694303466 - - 21077.158076119114 - - 21510.375399070224 - - 21959.068911887993 - - 22423.23861457245 - - 22902.884507123556 - - 23398.006589541328 - - 23908.60486182578 - - 24434.679323976885 - - 24976.229975994676 - - 25533.256817879115 - - 26105.759849630223 - - 26693.73907124799 - - 15290.481170474999 - - 15337.948032519442 - - 15400.891084430556 - - 15479.31032620833 - - 15573.205757852775 - - 15682.577379363887 - - 15807.425190741666 - - 15947.749191986108 - - 16103.549383097225 - - 16274.825764074996 - - 16461.578334919446 - - 16663.807095630556 - - 16881.512046208332 - - 17114.693186652774 - - 17363.350516963892 - - 17627.484037141665 - - 17907.093747186114 - - 18202.179647097222 - - 18512.741736874992 - - 18838.780016519442 - - 19180.294486030558 - - 19537.285145408325 - - 19909.751994652783 - - 20297.69503376389 - - 20701.114262741663 - - 21120.009681586114 - - 21554.38129029722 - - 22004.229088874996 - - 22469.55307731945 - - 22950.353255630558 - - 23446.629623808327 - - 23958.382181852783 - - 24485.610929763887 - - 25028.315867541674 - - 25586.496995186117 - - 26160.15431269722 - - 26749.28782007499 - - 15304.003131888003 - - 15352.624279692445 - - 15416.721617363559 - - 15496.295144901334 - - 15591.34486230578 - - 15701.87076957689 - - 15827.872866714668 - - 15969.35115371911 - - 16126.305630590228 - - 16298.736297328001 - - 16486.643153932448 - - 16690.026200403558 - - 16908.885436741337 - - 17143.220862945775 - - 17393.032479016892 - - 17658.32028495467 - - 17939.084280759118 - - 18235.324466430226 - - 18547.040841968 - - 18874.233407372452 - - 19216.90216264356 - - 19575.047107781334 - - 19948.668242785785 - - 20337.765567656887 - - 20742.339082394665 - - 21162.38878699912 - - 21597.91468147023 - - 22048.916765807997 - - 22515.395040012452 - - 22997.34950408356 - - 23494.78015802133 - - 24007.687001825787 - - 24536.070035496887 - - 25079.929259034678 - - 25639.26467243912 - - 26214.07627571023 - - 26804.364068847994 - - 15317.052593247003 - - 15366.828026811443 - - 15432.079650242556 - - 15512.807463540332 - - 15609.011466704778 - - 15720.691659735889 - - 15847.848042633666 - - 15990.480615398112 - - 16148.589378029224 - - 16322.174330526997 - - 16511.23547289145 - - 16715.772805122557 - - 16935.786327220336 - - 17171.276039184777 - - 17422.24194101589 - - 17688.684032713667 - - 17970.602314278116 - - 18267.996785709227 - - 18580.867447006996 - - 18909.21429817145 - - 19253.03733920256 - - 19612.33657010033 - - 19987.111990864778 - - 20377.363601495887 - - 20783.09140199366 - - 21204.29539235812 - - 21640.975572589225 - - 22093.131942687 - - 22560.764502651447 - - 23043.873252482554 - - 23542.45819218033 - - 24056.51932174479 - - 24586.05664117589 - - 25131.070150473683 - - 25691.559849638117 - - 26267.52573866922 - - 26858.96781756699 - - 15329.629554551999 - - 15380.559273876444 - - 15446.965183067556 - - 15528.847282125333 - - 15626.205571049777 - - 15739.040049840889 - - 15867.350718498667 - - 16011.13757702311 - - 16170.400625414224 - - 16345.139863671999 - - 16535.355291796444 - - 16741.046909787558 - - 16962.214717645336 - - 17198.858715369777 - - 17450.97890296089 - - 17718.575280418667 - - 18001.647847743116 - - 18300.196604934223 - - 18614.221551991996 - - 18943.72268891645 - - 19288.700015707556 - - 19649.153532365333 - - 20025.08323888978 - - 20416.48913528089 - - 20823.371221538666 - - 21245.729497663116 - - 21683.563963654226 - - 22136.874619511997 - - 22605.661465236448 - - 23089.924500827557 - - 23589.66372628533 - - 24104.879141609785 - - 24635.570746800884 - - 25181.738541858682 - - 25743.382526783116 - - 26320.502701574227 - - 26913.09906623199 - - 15341.734015803 - - 15393.818020887444 - - 15461.378215838558 - - 15544.414600656333 - - 15642.92717534078 - - 15756.91593989189 - - 15886.380894309666 - - 16031.32203859411 - - 16191.739372745225 - - 16367.632896762998 - - 16559.002610647447 - - 16765.84851439856 - - 16988.17060801633 - - 17225.968891500772 - - 17479.24336485189 - - 17747.99402806967 - - 18032.220881154117 - - 18331.923924105227 - - 18647.103156923 - - 18977.75857960745 - - 19323.890192158557 - - 19685.497994576333 - - 20062.581986860783 - - 20455.142169011888 - - 20863.17854102966 - - 21286.69110291412 - - 21725.679854665224 - - 22180.144796283 - - 22650.08592776745 - - 23135.503249118556 - - 23636.396760336327 - - 24152.766461420782 - - 24684.612352371885 - - 25231.934433189683 - - 25794.732703874117 - - 26373.007164425224 - - 26966.75781484299 - - 15353.365977 - - 15406.604267844443 - - 15475.318748555557 - - 15559.50941913333 - - 15659.176279577776 - - 15774.319329888887 - - 15904.938570066666 - - 16051.034000111109 - - 16212.605620022223 - - 16389.6534298 - - 16582.177429444448 - - 16790.177618955557 - - 17013.65399833333 - - 17252.606567577775 - - 17507.03532668889 - - 17776.940275666668 - - 18062.321414511112 - - 18363.178743222223 - - 18679.512261799995 - - 19011.321970244444 - - 19358.60786855556 - - 19721.369956733335 - - 20099.608234777785 - - 20493.32270268889 - - 20902.513360466663 - - 21327.180208111116 - - 21767.32324562222 - - 22222.942473 - - 22694.037890244454 - - 23180.609497355563 - - 23682.657294333327 - - 24200.181281177785 - - 24733.181457888888 - - 25281.657824466678 - - 25845.610380911115 - - 26425.03912722222 - - 27019.94406339999 - - 15364.525438143 - - 15418.918014747444 - - 15488.786781218556 - - 15574.131737556334 - - 15674.952883760778 - - 15791.250219831889 - - 15923.023745769666 - - 16070.273461574106 - - 16232.999367245224 - - 16411.201462783 - - 16604.879748187446 - - 16814.034223458555 - - 17038.664888596333 - - 17278.771743600773 - - 17534.35478847189 - - 17805.41402320967 - - 18091.94944781412 - - 18393.961062285223 - - 18711.448866623 - - 19044.41286082745 - - 19392.85304489856 - - 19756.76941883633 - - 20136.161982640784 - - 20531.030736311888 - - 20941.37567984966 - - 21367.19681325412 - - 21808.494136525223 - - 22265.267649662997 - - 22737.517352667448 - - 23225.243245538557 - - 23728.44532827633 - - 24247.123600880786 - - 24781.278063351885 - - 25330.908715689682 - - 25896.015557894116 - - 26476.598589965226 - - 27072.657811902987 - - 15365.736212566284 - - 15420.257043246664 - - 15490.254063793713 - - 15575.727274207426 - - 15676.676674487806 - - 15793.102264634856 - - 15925.00404464857 - - 16072.382014528948 - - 16235.236174276 - - 16413.566523889713 - - 16607.373063370098 - - 16816.65579271714 - - 17041.414711930855 - - 17281.649821011237 - - 17537.36111995829 - - 17808.548608772 - - 18095.212287452385 - - 18397.35215599943 - - 18714.968214413137 - - 19048.060462693524 - - 19396.628900840573 - - 19760.673528854284 - - 20140.194346734672 - - 20535.19135448171 - - 20945.664552095423 - - 21371.61393957581 - - 21813.03951692286 - - 22269.941284136563 - - 22742.319241216956 - - 23230.173388164 - - 23733.503724977705 - - 24252.3102516581 - - 24786.59296820514 - - 25336.351874618867 - - 25901.58697089924 - - 26482.29825704629 - - 27078.485733059988 - - 15318.6466996 - - 15430.881818177771 - - 15558.593126622225 - - 15701.780624933332 - - 15860.444313111107 - - 16034.584191155556 - - 16224.200259066667 - - 16429.29251684444 - - 16649.86096448889 - - 16885.905602 - - 17137.426429377778 - - 17404.423446622226 - - 17686.896653733333 - - 17984.846050711105 - - 18298.271637555557 - - 18627.173414266665 - - 18971.55138084445 - - 19331.405537288887 - - 19706.735883599995 - - 20097.542419777783 - - 20503.825145822222 - - 20925.58406173333 - - 21362.819167511116 - - 21815.530463155555 - - 22283.717948666665 - - 22767.38162404445 - - 23266.52148928889 - - 23781.137544399993 - - 24311.229789377783 - - 24856.798224222224 - - 25417.842848933327 - - 25994.363663511118 - - 26586.36066795555 - - 27193.833862266678 - - 27816.783246444444 - - 28455.20882048889 - - 29109.11058439999 - use_defrost_map: true - heat_source_type: CONDENSER - id: compressor - shut_off_logic: - - comparison_type: GREATER_THAN - heating_logic: - differential_temperature: 0 - temperature_weight_distribution: - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 2.7777777777777777 - temperature_weight_distribution: - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - multipass_flow_rate: 0.002271246 - primary_heat_source_id: compressor - tank: - metadata: - schema: RSTANK - performance: - bottom_fraction_of_tank_mixing_on_draw: 0 - fittings_ua: 0 - ua: 8.791381193505783 - volume: 3.028328 -depresses_temperature: false -fixed_volume: false -metadata: - schema_author: Big Ladder Software - schema_name: HPWHSimInput - schema_version: 1.0.0 - author: None - id: 6998e64f-7824-414c-9d48-57e43ee47071 - time_of_creation: 2022-11-23T11:45Z -number_of_nodes: 24 -standard_setpoint: 330.3722222222222 -system_type: CENTRAL diff --git a/examples/ColmacCxA_20_SP.json b/examples/ColmacCxA_20_SP.json new file mode 100644 index 0000000..ccda354 --- /dev/null +++ b/examples/ColmacCxA_20_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 41192.99923874628, + 41213.895875682894, + 41232.70437061287, + 41249.40659204656, + 41263.96029521189, + 41276.29912205447, + 41286.33260123763, + 41293.946148142306, + 41299.00106486717, + 41301.33454022845, + 41300.759649760126, + 41297.0653557138, + 41290.01650705879, + 41279.353839482035, + 41264.793975388115, + 41246.02942389937, + 41222.728580855735, + 41194.53572881478, + 41161.07103705184, + 41121.93056155985, + 41076.68624504939, + 41024.88591694876, + 40966.05329340391, + 40899.6879772784, + 40825.265458153575, + 40742.237112328316, + 40650.03020281923, + 40548.04787936061, + 40435.669178404365, + 40312.24902312013, + 40177.11822339513, + 40029.58347583431, + 39868.9273637603, + 39694.408357213324, + 39505.26081295132, + 39300.694974449885, + 39079.89697190226, + 41150.99741036255, + 41212.74656646111, + 41271.121216306994, + 41326.10758801254, + 41377.66779640774, + 41425.739843040275, + 41470.23761617547, + 41511.050890796374, + 41548.0453286036, + 41581.0624780155, + 41609.91977416808, + 41634.41053891501, + 41654.30398082761, + 41669.34519519489, + 41679.255164023496, + 41683.73075603775, + 41682.444726679685, + 41675.04571810893, + 41661.15825920282, + 41640.38276555633, + 41612.295539482104, + 41576.448770010495, + 41532.3705328895, + 41479.564790584715, + 41417.51139227952, + 41345.66607387484, + 41263.46045798938, + 41170.30205395941, + 41065.574257838896, + 40948.63635239957, + 40818.823507130655, + 40675.44677823916, + 40517.79310864973, + 40345.12532800466, + 40156.68215266392, + 39951.678185705176, + 39729.303916923694, + 41251.21670011293, + 41271.847843703414, + 41290.39856781561, + 41306.85037169446, + 41321.16064130269, + 41333.262649320626, + 41343.06555514624, + 41350.45440489527, + 41355.29013140097, + 41357.40955421441, + 41356.62537960422, + 41352.72620055674, + 41345.47649677594, + 41334.616634683545, + 41319.86286741884, + 41300.90733483879, + 41277.418063518126, + 41249.03896674913, + 41215.38984454179, + 41176.06638362379, + 41130.64015744042, + 41078.65862615468, + 41019.64513664724, + 40953.09892251638, + 40878.49510407813, + 40795.2846883661, + 40702.89456913162, + 40600.72752684367, + 40488.16222868889, + 40364.5532285716, + 40229.230967113785, + 40081.50177165505, + 39920.64785625275, + 39745.92732168183, + 39556.57415543492, + 39351.79823172236, + 39130.78531147209, + 41204.67161170059, + 41266.14813016175, + 41324.25482432621, + 41378.97750378382, + 41430.27786484207, + 41478.09349052625, + 41522.337850579155, + 41562.90030146136, + 41599.64608635109, + 41632.41633514416, + 41661.02806445411, + 41685.27417761219, + 41704.92346466719, + 41719.7206023857, + 41729.386154251886, + 41733.61657046761, + 41732.0841879524, + 41724.437230343465, + 41710.29980799562, + 41689.27191798143, + 41660.92944409106, + 41624.82415683238, + 41580.48371343089, + 41527.41165782977, + 41465.0874206899, + 41392.966319389765, + 41310.479558025574, + 41217.034227411146, + 41112.013305078, + 40994.77565527533, + 40864.65602896997, + 40720.96506384643, + 40562.98928430687, + 40389.99110147115, + 40201.20881317677, + 39995.85660397888, + 39773.124545150335, + 41777.71064640568, + 41795.94854881833, + 41812.17637735077, + 41826.37230786047, + 41838.49040292248, + 41848.46061182953, + 41856.18877059202, + 41861.55660193804, + 41864.421715313336, + 41864.617606881286, + 41861.95365952296, + 41856.2151428371, + 41847.163213140084, + 41834.53491346601, + 41818.04317356658, + 41797.376809911206, + 41772.200525686945, + 41742.1549107985, + 41706.85644186829, + 41665.89748223636, + 41618.84628196045, + 41565.24697781592, + 41504.61959329586, + 41436.460038610945, + 41360.2401106896, + 41275.40749317786, + 41181.385756439435, + 41077.57435755572, + 40963.34864032572, + 40838.059835266205, + 40701.0350596115, + 40551.5773173137, + 40388.96549904248, + 40212.45438218522, + 40021.27463084697, + 39814.63279585044, + 39591.71131473598, + 41690.36323140596, + 41749.38076695967, + 41805.071411188415, + 41857.41720697987, + 41906.3760839393, + 41951.881858389745, + 41993.844233371856, + 42032.148798643975, + 42066.6570306821, + 42097.20629267987, + 42123.60983454863, + 42145.65679291734, + 42163.1121911327, + 42175.716939259, + 42183.187834078235, + 42185.21755909006, + 42181.47468451181, + 42171.60366727845, + 42155.224851042614, + 42131.93446617465, + 42101.30462976252, + 42062.883345611874, + 42016.194504246036, + 41960.737882905945, + 41895.9891455503, + 41821.39984285535, + 41736.39741221512, + 41640.38517774125, + 41532.742350262975, + 41412.82402732735, + 41279.96119319894, + 41133.460718860115, + 40972.60536201078, + 40796.653767068616, + 40604.84046516888, + 40396.375874164565, + 40170.44629862631, + 42308.75980816113, + 42324.598027970496, + 42338.49803661611, + 42350.43468656784, + 42360.3587170131, + 42368.19675385706, + 42373.85130972254, + 42377.200783949964, + 42378.09946259751, + 42376.377518440975, + 42371.841010973825, + 42364.27188640718, + 42353.42797766987, + 42339.04300440832, + 42320.82657298669, + 42298.46417648678, + 42271.617194708015, + 42239.92289416757, + 42202.99442810019, + 42160.420836458376, + 42111.76704591222, + 42056.57386984953, + 41994.35800837577, + 41924.612048314026, + 41846.80446320514, + 41760.37961330749, + 41664.75774559722, + 41559.33499376817, + 41443.48337823169, + 41316.55080611698, + 41177.86107127077, + 41026.7138542575, + 40862.384722359326, + 40684.125129575965, + 40491.16241662492, + 40282.699810941245, + 40057.91642667774, + 42180.776177508626, + 42237.32575672607, + 42290.592809252936, + 42340.55561127467, + 42387.16832569435, + 42430.36100213285, + 42470.039576928546, + 42506.08587313761, + 42538.357600533796, + 42566.68835560859, + 42590.887621571084, + 42610.74076834808, + 42626.009052584, + 42636.42961764099, + 42641.71549359882, + 42641.55559725491, + 42635.614732124406, + 42623.533588440085, + 42604.92874315238, + 42579.392659929385, + 42546.49368915688, + 42505.77606793831, + 42456.75992009479, + 42398.94125616506, + 42331.7919734056, + 42254.759855790464, + 42167.268574011454, + 42068.71768547797, + 41958.482634317115, + 41835.91475137371, + 41700.341254210114, + 41551.06524710644, + 41387.365721060465, + 41208.49755378761, + 41013.691509720935, + 40802.154240011216, + 40573.068282526896, + 42844.34777187292, + 42857.78043676775, + 42869.3482703336, + 42879.02280165269, + 42886.751446524875, + 42892.45750746769, + 42896.04017371637, + 42897.37452122377, + 42896.31151266044, + 42892.677997414576, + 42886.27671159206, + 42876.886278016405, + 42864.26120622882, + 42848.131892488185, + 42828.20461977101, + 42804.16155777151, + 42775.66076290155, + 42742.33617829065, + 42703.79763378602, + 42659.63084595246, + 42609.39741807256, + 42552.634840146486, + 42488.85648889211, + 42417.55162774489, + 42338.185406858116, + 42250.19886310256, + 42153.00892006678, + 42046.00838805695, + 41928.56596409689, + 41800.02623192816, + 41659.70966200995, + 41506.91261151903, + 41340.90732434999, + 41160.94193111494, + 40966.24044914376, + 40756.00278248398, + 40529.40472190073, + 42675.90751707449, + 42729.980828849286, + 42780.81741023052, + 42828.39177070144, + 42872.654306462944, + 42913.53130043364, + 42950.92492224977, + 42984.713228265224, + 43014.750161551616, + 43040.86555189817, + 43062.86511581183, + 43080.53045651713, + 43093.61906395632, + 43101.86431478934, + 43104.97547239373, + 43102.63768686471, + 43094.51199501525, + 43080.235320375876, + 43059.42047319481, + 43031.65615043797, + 42996.50693578895, + 42953.51329964894, + 42902.19159913688, + 42842.03407808925, + 42772.5088670604, + 42693.05998332211, + 42603.10733086399, + 42502.04670039331, + 42389.24976933485, + 42264.06410183127, + 42125.813148742745, + 41973.79624764717, + 41807.2886228401, + 41625.54138533472, + 41427.78153286194, + 41213.21194987034, + 40981.01140752609, + 43384.45714377461, + 43395.478950557845, + 43404.7108229651, + 43412.12096669105, + 43417.653474147955, + 43421.228324465745, + 43422.74138349204, + 43422.06440379212, + 43419.04502464894, + 43413.50677206308, + 43405.24905875281, + 43394.04718415406, + 43379.65233442043, + 43361.791582423226, + 43340.16788775135, + 43314.4600967114, + 43284.32294232764, + 43249.38704434204, + 43209.2589092141, + 43163.52093012118, + 43111.731386958156, + 43053.42444633762, + 42988.110161589844, + 42915.27447276276, + 42834.37920662194, + 42744.862076650636, + 42646.13668304977, + 42537.592512737916, + 42418.59493935134, + 42288.485223243944, + 42146.58051148733, + 41992.173837870716, + 41824.53412290106, + 41642.90617380288, + 41446.51068451846, + 41234.544235707705, + 41006.17929474818, + 43175.753336909394, + 43227.34273245759, + 43275.74262557188, + 43320.92375903336, + 43362.83276234066, + 43401.3921517102, + 43436.50033007602, + 43468.031587089805, + 43495.83609912096, + 43519.73992925652, + 43539.54502730117, + 43555.02922977726, + 43565.94625992486, + 43572.02572770167, + 43572.973129783044, + 43568.46984956199, + 43558.17315714928, + 43541.7162093732, + 43518.70804977981, + 43488.73360863279, + 43451.3537029135, + 43406.105036320994, + 43352.50019927192, + 43290.02766890065, + 43218.15180905924, + 43136.31287031733, + 43043.92698996228, + 42940.386191999125, + 42825.05838715051, + 42697.28737285684, + 42556.3928332761, + 42401.67033928397, + 42232.391348473786, + 42047.80320515658, + 41847.12914036101, + 41629.568271833436, + 41394.29560403785, + 43929.06954983972, + 43937.67576442836, + 43944.568458712405, + 43949.7125149989, + 43953.04870231248, + 43954.49367639551, + 43953.93997970802, + 43951.25604142766, + 43946.28617744975, + 43938.85059038737, + 43928.74536957111, + 43915.74249104934, + 43899.58981758808, + 43880.01109867097, + 43856.70597049935, + 43829.34995599225, + 43797.5944647863, + 43761.066793235834, + 43719.37012441286, + 43672.08352810705, + 43618.76196082567, + 43558.936265793796, + 43492.113172954065, + 43417.77529896675, + 43335.38114720991, + 43244.36510777913, + 43144.13745748776, + 43034.08435986682, + 42913.56786516491, + 42781.92591034837, + 42638.472319101194, + 42482.496801825, + 42313.26495563913, + 42130.01826438054, + 41931.97409860388, + 41718.32571558147, + 41488.24225930329, + 43680.30874355901, + 43729.40723641912, + 43775.36488646767, + 43818.14866978345, + 43857.701449162996, + 43893.94197412047, + 43926.76488088769, + 43956.04069241421, + 43981.615818367136, + 44003.31255513131, + 44020.92908580925, + 44034.2394802211, + 44042.99369490469, + 44046.91757311552, + 44045.71284482677, + 44039.0571267292, + 44026.60392223136, + 44007.9826214594, + 43982.798501257115, + 43950.632725186, + 43911.04234352518, + 43863.56029327153, + 43807.69539813951, + 43742.93236856125, + 43668.731801686576, + 43584.53018138297, + 43489.73987823558, + 43383.749149547206, + 43265.92213933833, + 43135.59887834708, + 42992.0952840293, + 42834.70316055842, + 42662.69019882561, + 42475.29997643965, + 42271.75195772701, + 42051.24149373184, + 41812.93982221593, + 44172.64527651253, + 44180.176147460574, + 44186.027958999315, + 44190.16411585762, + 44192.52390948206, + 44193.02251803684, + 44191.55100640383, + 44187.976326182616, + 44182.14131569037, + 44173.86469996203, + 44162.941090750064, + 44149.14098652473, + 44132.2107724739, + 44111.87272050312, + 44087.82498923558, + 44059.74162401217, + 44027.27255689141, + 43990.043606649524, + 43947.65647878035, + 43899.68876549548, + 43845.69394572406, + 43785.20138511298, + 43717.71633602678, + 43642.71993754761, + 43559.66921547542, + 43467.997082327645, + 43367.112337339546, + 43256.399666463956, + 43135.21964237137, + 43002.908724450026, + 42858.779258805764, + 42702.119478262095, + 42532.19350236023, + 42348.241337358995, + 42149.478876234905, + 41935.09789868219, + 41704.26607111265, + 43906.14498711192, + 43954.133954360295, + 43999.00417262156, + 44040.72094329877, + 44079.22545451255, + 44114.43478110135, + 44146.241884621166, + 44174.5156133457, + 44199.1007022663, + 44219.81777309202, + 44236.463334249565, + 44248.80978088326, + 44256.605394855156, + 44259.574344744935, + 44257.41668584995, + 44249.80836018523, + 44236.401196483486, + 44216.82291019504, + 44190.67710348794, + 44157.54326524783, + 44116.97677107808, + 44068.50888329972, + 44011.64675095142, + 43945.87340978951, + 43870.64778228803, + 43785.40467763865, + 43689.554791750714, + 43582.48470725125, + 43463.556893484856, + 43332.10970651399, + 43187.457389118565, + 43028.89007079628, + 42855.67376776249, + 42667.05038295018, + 42462.23770601002, + 42240.42941331031, + 42000.795067937135, + 44478.16563578153, + 44484.352093206835, + 44488.90296151718, + 44491.779799632044, + 44492.92005318843, + 44492.23705454114, + 44489.620022762545, + 44484.93406364276, + 44478.02016968952, + 44468.6952201282, + 44456.75198090191, + 44441.95910467136, + 44424.06113081496, + 44402.77848542881, + 44377.80748132663, + 44348.82031803979, + 44315.46508181739, + 44277.365745626164, + 44234.12216915046, + 44185.31009879238, + 44130.48116767167, + 44069.16289562567, + 44000.85868920949, + 43925.047841695814, + 43841.18553307509, + 43748.70283005533, + 43647.00668606224, + 43535.47994123925, + 43413.481322447384, + 43280.34544326536, + 43135.38280398961, + 42977.8797916341, + 42807.09867993058, + 42622.27762932846, + 42422.63068699474, + 42207.34778681416, + 41975.594749389114, + 44189.56786330892, + 44236.1691293419, + 44279.679643848256, + 44320.06261620465, + 44357.2571425053, + 44391.17820556224, + 44421.71667490505, + 44448.73930678106, + 44472.08874415522, + 44491.583516710154, + 44507.018040846124, + 44518.162619681105, + 44524.76344305074, + 44526.54258750827, + 44523.19801632468, + 44514.40357948857, + 44499.80901370624, + 44479.039942401636, + 44451.69787571635, + 44417.360210509665, + 44375.58023035852, + 44325.88710555756, + 44267.785893119035, + 44200.75753677287, + 44124.25886696672, + 44037.722600865796, + 43940.55734235312, + 43832.14758202922, + 43711.85369721236, + 43579.01195193854, + 43432.93449696132, + 43272.90936975196, + 43098.200494499404, + 42908.047682110235, + 42701.66663020871, + 42478.248923136794, + 42236.96203195405, + 45031.72506705341, + 45035.48817146076, + 45037.69513506109, + 45038.30419338626, + 45037.24946868575, + 45034.4409699267, + 45029.76459279393, + 45023.0821196899, + 45014.231219734786, + 45003.02544876638, + 44989.25424934014, + 44972.68295072919, + 44953.0527689244, + 44930.08080663417, + 44903.460053284696, + 44872.85938501974, + 44837.92356470078, + 44798.27324190694, + 44753.50495293503, + 44703.19112079953, + 44646.880055232534, + 44584.095952683856, + 44514.338896320965, + 44437.08485602897, + 44351.78568841069, + 44257.86913678652, + 44154.73883119467, + 44041.774288390836, + 43918.33091184852, + 43783.73999175886, + 43637.308705030606, + 43478.320115290204, + 43306.03317288181, + 43119.682714867165, + 42918.47946502573, + 42701.61003385463, + 42468.236918568626, + 44703.52384218468, + 44747.62221957393, + 44788.681368384176, + 44826.6607312898, + 44861.495637682914, + 44893.097303673305, + 44921.352832088334, + 44946.12521247313, + 44967.253321090415, + 44984.551920920625, + 44997.81166166186, + 45006.79907972982, + 45011.25659825794, + 45010.90252709731, + 45005.43106281667, + 44994.5122887024, + 44977.79217475863, + 44954.89257770705, + 44925.411240987116, + 44888.921794755835, + 44844.97375588801, + 44793.09252797599, + 44732.77940132988, + 44663.51155297741, + 44584.742046663974, + 44495.89983285259, + 44396.389748724076, + 44285.59251817678, + 44162.864751826746, + 44027.538947007735, + 43878.92348777115, + 43716.302644886004, + 43538.93657583904, + 43346.06132483466, + 43136.88882279491, + 42910.60688735951, + 42666.37922288584, + 45589.72652884855, + 45591.06325349745, + 45590.92480276561, + 45589.26608879726, + 45586.01791045429, + 45581.086953316226, + 45574.35578968031, + 45565.68287856138, + 45554.902565692035, + 45541.82508352245, + 45526.236551220514, + 45507.898974671756, + 45486.55024647936, + 45461.904145964254, + 45433.65033916494, + 45401.45437883761, + 45364.95770445618, + 45323.77764221213, + 45277.50740501469, + 45225.71609249069, + 45167.94869098471, + 45103.72607355892, + 45032.54499999318, + 44953.878116785, + 44867.17395714962, + 44771.85694101987, + 44667.32737504626, + 44552.96145259702, + 44428.11125375794, + 44292.1047453326, + 44144.2457808422, + 43983.81410052549, + 43810.06533133908, + 43622.23098695712, + 43419.51846777144, + 43201.1110608916, + 42966.167940144755, + 45222.168845951725, + 45263.75933520307, + 45302.36355048567, + 45337.937167771706, + 45370.411749751074, + 45399.6947458313, + 45425.66949213762, + 45448.1952115129, + 45467.10701351769, + 45482.2158944302, + 45493.30873724629, + 45500.14831167953, + 45502.47327416107, + 45499.998167839854, + 45492.41342258236, + 45479.38535497284, + 45460.55616831307, + 45435.54395262273, + 45403.9426846389, + 45365.32222781647, + 45319.228332328006, + 45265.18263506368, + 45202.68265963135, + 45131.20181635653, + 45050.18940228246, + 44959.07060116992, + 44857.24648349752, + 44744.09400646138, + 44618.96601397541, + 44481.19123667109, + 44330.07429189763, + 44164.89568372185, + 43984.9118029283, + 43789.354927019136, + 43577.4332202142, + 43348.330733451054, + 43101.20740438483, + 46152.14772610006, + 46151.05561336421, + 46148.5708077922, + 46144.64489814063, + 46139.20535988379, + 46132.15555521361, + 46123.37473303975, + 46112.71802898945, + 46100.016465407665, + 46085.07695135701, + 46067.68228261779, + 46047.5911416879, + 46024.53809778296, + 45998.233606836264, + 45968.36401149873, + 45934.591541138965, + 45896.55431184327, + 45853.866326415526, + 45806.11747437734, + 45752.873531968005, + 45693.67616214447, + 45628.04291458126, + 45555.46722567071, + 45475.418418522706, + 45387.34170296487, + 45290.65817554244, + 45184.76481951834, + 45069.03450487318, + 44942.81598830521, + 44805.433913230336, + 44656.18880978217, + 44494.35709481193, + 44319.19107188856, + 44129.91893129862, + 43925.744750046375, + 43705.848491853736, + 43469.38600716031, + 45745.494060115336, + 45784.5723240571, + 45820.71870030304, + 45853.885098123064, + 45883.99931350491, + 45910.96502915387, + 45934.66181449299, + 45954.94512566291, + 45971.646305521965, + 45984.572583646215, + 45993.507076329275, + 45998.20878658248, + 45998.41260413485, + 45993.829305433035, + 45984.145553641385, + 45969.023898641855, + 45948.10277703413, + 45920.99651213556, + 45887.29531398111, + 45846.565279323404, + 45798.34839163282, + 45742.16252109732, + 45677.50142462258, + 45603.83474583188, + 45520.60801506626, + 45427.242649384316, + 45323.1359525624, + 45207.66111509448, + 45080.16721419219, + 44939.979213784885, + 44786.39796451952, + 44618.7002037607, + 44436.13855559081, + 44237.941530809745, + 44023.31352693518, + 43791.43482820246, + 43541.46160556448, + 46718.96538348095, + 46715.44254484821, + 46710.61101304216, + 46704.419053431804, + 46696.79081810387, + 46687.62634586264, + 46676.80156223017, + 46664.16827944616, + 46649.55419646793, + 46632.762898970475, + 46613.57385934653, + 46591.74243670639, + 46566.99987687805, + 46539.05331240724, + 46507.585762557275, + 46472.25613330913, + 46432.69921736153, + 46388.52569413077, + 46339.32212975085, + 46284.650977073456, + 46224.05057566791, + 46157.03515182123, + 46083.09481853804, + 46001.69557554069, + 45912.279309269186, + 45814.26379288117, + 45707.04268625198, + 45589.98553597465, + 45462.43777535972, + 45323.72072443562, + 45173.13158994834, + 45009.94346536143, + 44833.4053308563, + 44642.7420533319, + 44437.15438640488, + 44215.81897040957, + 43977.88833239796, + 46273.48968992081, + 46310.052053703774, + 46343.738347726394, + 46374.49671455643, + 46402.25118347941, + 46426.90167049843, + 46448.32397833429, + 46466.369796425475, + 46480.8667009281, + 46491.61815471597, + 46498.40350738053, + 46500.9779952309, + 46499.07274129391, + 46492.39475531398, + 46480.626933753265, + 46463.42805979146, + 46440.432803326185, + 46411.25172097241, + 46375.47125606301, + 46332.65373864837, + 46282.337385496634, + 46224.03630009358, + 46157.24047264269, + 46081.41578006502, + 45996.00398599941, + 45900.42274080223, + 45794.06558154761, + 45676.301932027396, + 45546.47710275091, + 45403.91229094538, + 45247.90458055548, + 45077.72694224369, + 44892.62823339011, + 44691.8331980925, + 44474.54246716626, + 44239.932558144574, + 43987.15587527814, + 47290.15524540418, + 47284.20036147654, + 47277.02230115677, + 47268.56600642626, + 47258.75230598412, + 47247.477915247066, + 47234.61543634953, + 47220.013358143595, + 47203.49605619903, + 47184.86379280323, + 47163.89271696127, + 47140.33486439591, + 47113.918157547516, + 47084.34640557422, + 47051.29930435172, + 47014.43243647347, + 46973.3772712505, + 46927.741164711566, + 46877.10735960304, + 46821.03498538902, + 46759.05905825122, + 46690.69048108907, + 46615.41604351961, + 46532.698421877554, + 46441.97617921536, + 46342.66376530301, + 46234.1515166283, + 46115.80565639659, + 45986.96829453091, + 45846.957427672045, + 45695.06693917835, + 45530.56659912589, + 45352.70206430836, + 45160.69487823716, + 44953.74247114132, + 44731.018159967614, + 44491.67114838038, + 46806.144960353355, + 46840.18841145064, + 46871.4130423858, + 46899.76322902435, + 46925.159233949584, + 46947.49720646243, + 46966.64918258146, + 46982.46308504296, + 46994.7627233008, + 47003.34779352666, + 47007.99387860969, + 47008.452448156895, + 47004.45085849276, + 46995.692352659644, + 46981.85606041737, + 46962.5969982436, + 46937.54606933351, + 46906.310063600074, + 46868.471657673836, + 46823.58941490302, + 46771.19778535356, + 46710.80710580905, + 46641.90359977069, + 46563.949377457386, + 46476.38243580577, + 46378.616658469975, + 46270.04181582199, + 46150.02356495132, + 46017.90344966528, + 45872.99890048867, + 45714.60323466413, + 45541.98565615183, + 45354.391255629744, + 45151.04101049334, + 44931.13178485589, + 44693.83632954831, + 44438.30328211908, + 47865.69207602258, + 47857.30439651623, + 47847.78057451719, + 47837.06222861928, + 47825.066864134016, + 47811.68787309048, + 47796.794534235574, + 47780.23201303372, + 47761.8213616671, + 47741.3595190355, + 47718.619310756425, + 47693.34944916501, + 47665.27453331407, + 47634.095048974086, + 47599.48736863317, + 47561.103751497154, + 47518.57234348953, + 47471.49717725137, + 47419.45817214156, + 47362.011134236534, + 47298.68775633038, + 47228.995617934954, + 47152.41818527972, + 47068.41481131179, + 46976.42073569597, + 46875.84708481471, + 46766.08087176817, + 46646.484996374114, + 46516.39824516801, + 46375.13529140296, + 46221.98669504981, + 46056.21890279697, + 45877.07424805058, + 45683.770950934406, + 45475.5031182899, + 45251.440743676205, + 45010.72970737009, + 47343.44811613796, + 47374.97030434527, + 47403.73235365121, + 47429.674873219206, + 47452.71435893027, + 47472.74319338314, + 47489.6296458942, + 47503.2178724975, + 47513.32791594475, + 47519.75570570531, + 47522.273057966304, + 47520.62767563231, + 47514.54314832586, + 47503.71895238687, + 47487.83045087313, + 47466.52889355995, + 47439.44141694043, + 47406.17104422523, + 47366.29668534269, + 47319.37313693895, + 47264.93108237764, + 47202.47709174015, + 47131.49362182546, + 47051.43901615034, + 46961.747504949126, + 46861.82920517383, + 46751.070120494136, + 46628.83214129749, + 46494.45304468879, + 46347.246494490835, + 46186.502041243926, + 46011.48512220609, + 45821.43706135304, + 45615.57506937809, + 45393.09224369227, + 45153.157568424314, + 44894.91591442048, + 48445.54965922888, + 48434.72900297415, + 48422.86075524448, + 48409.8832112461, + 48395.71055290293, + 48380.23284885648, + 48363.31605446599, + 48344.802011808366, + 48324.50844967811, + 48302.22898358749, + 48277.73311576635, + 48250.76623516224, + 48221.04961744035, + 48188.28042498362, + 48152.13170689252, + 48112.252398985336, + 48068.26732379789, + 48019.777190583714, + 47966.35859531401, + 47907.564020677695, + 47842.921836081296, + 47771.936297648965, + 47694.08754822261, + 47608.83161736175, + 47515.60042134362, + 47413.801763163014, + 47302.81933253252, + 47182.01270588228, + 47050.71734636019, + 46908.24460383179, + 46753.88171488024, + 46586.89180280639, + 46406.513877628786, + 46211.96283608362, + 46002.42946162471, + 45777.080424423635, + 45535.05828136953, + 47885.386421739655, + 47914.38565917504, + 47940.684870632555, + 47964.22089857333, + 47984.90647217624, + 48002.63020733783, + 48017.25660667218, + 48028.626059511254, + 48036.554841904464, + 48040.83511661903, + 48041.2349331398, + 48037.49822766924, + 48029.34482312753, + 48016.47042915253, + 47998.546642099696, + 47975.22094504226, + 47946.116707770976, + 47910.8331867944, + 47868.94552533867, + 47820.00475334764, + 47763.537787482805, + 47699.04743112324, + 47626.01237436589, + 47543.88719402515, + 47452.10235363324, + 47350.06420343995, + 47237.15498041278, + 47112.73280823689, + 46976.131697315046, + 46826.66154476782, + 46663.6081344333, + 46486.23313686731, + 46293.77410934331, + 46085.44449585251, + 45860.43362710363, + 45617.90672052326, + 45357.004880255416, + 49029.7007986558, + 49016.44755359715, + 49002.23678519967, + 48987.0034652819, + 48970.65845238023, + 48953.08849174855, + 48934.15621535849, + 48913.70014189937, + 48891.534676778094, + 48867.4501121193, + 48841.21262676529, + 48812.56428627597, + 48781.22304292898, + 48746.882735719606, + 48709.21309036074, + 48667.85971928308, + 48622.444121634806, + 48572.563683281915, + 48517.79167680798, + 48457.67726151432, + 48391.74548341984, + 48319.49727526113, + 48240.409456492474, + 48153.93473328581, + 48059.50169853076, + 47956.51483183453, + 47844.35449952211, + 47722.37695463603, + 47589.91433693661, + 47446.27467290174, + 47290.74187572705, + 47122.57574532574, + 46941.01196832879, + 46745.262118084764, + 46534.51365465992, + 46307.929924838165, + 46064.650162121114, + 48431.94616136335, + 48458.42142246734, + 48482.25820217958, + 48503.38957625901, + 48521.72450718222, + 48537.147844143605, + 48549.520323055054, + 48558.67856654628, + 48564.43508396448, + 48566.57827137474, + 48564.87241155961, + 48559.057674019416, + 48548.850114972076, + 48533.9416773533, + 48514.00019081633, + 48488.669371732125, + 48457.56882318933, + 48420.29403499421, + 48376.41638367075, + 48325.4831324605, + 48267.01743132288, + 48200.51831693473, + 48125.46071269067, + 48041.29542870303, + 47947.449161801786, + 47843.32449553446, + 47728.299900166414, + 47601.72973268056, + 47462.9442367775, + 47311.24954287553, + 47145.927668110584, + 46966.23651633627, + 46771.40987812382, + 46560.657430762265, + 46333.16473825811, + 46088.093251335726, + 45824.58030743695, + 49618.11731767587, + 49602.43244087196, + 49585.881625983566, + 49568.396521441675, + 49549.88466239504, + 49530.22947070998, + 49509.29025497052, + 49486.90221047833, + 49462.87641925279, + 49436.999850030916, + 49409.035358267385, + 49378.72168613454, + 49345.77346252237, + 49309.88120303862, + 49270.71131000855, + 49227.90607247527, + 49181.083666199345, + 49129.8381536592, + 49073.73948405081, + 49012.33349328785, + 48945.1419040017, + 48871.66232554127, + 48791.3682539733, + 48703.709072082114, + 48608.11004936972, + 48503.972342055764, + 48390.67299307758, + 48267.564932090165, + 48133.976975466176, + 47989.21382629595, + 47832.556074387496, + 47663.26019626644, + 47480.55855517613, + 47283.65940107753, + 47071.74687064934, + 46843.98098728783, + 46599.49766110704, + 48983.11263895379, + 49007.06356048938, + 49028.43897688198, + 49047.16819718828, + 49063.15641718277, + 49076.28471935747, + 49086.41007292221, + 49093.365333804395, + 49096.95924464913, + 49096.97643481917, + 49093.17742039493, + 49085.29860417451, + 49073.052275673646, + 49056.12661112578, + 49034.185673482, + 49006.869412411055, + 48973.79366429932, + 48934.55015225096, + 48888.70648608762, + 48835.80616234883, + 48775.368564291566, + 48706.888961890654, + 48629.838511838425, + 48543.66425754506, + 48447.7891291382, + 48341.61194346331, + 48224.507404083415, + 48095.826101279315, + 47954.89451204936, + 47801.015000109655, + 47633.46581589396, + 47451.50109655353, + 47254.35086595764, + 47041.22103469287, + 46811.29340006367, + 46563.7256460921, + 46297.65134351791, + 50210.77005940161, + 50192.65507702523, + 50173.76725893702, + 50154.034930180445, + 50133.36230251655, + 50111.62947442411, + 50088.69243109952, + 50064.38304445692, + 50038.50907312801, + 50010.85416246226, + 49981.177844526705, + 49949.21553810615, + 49914.67854870295, + 49877.25406853721, + 49836.605176546684, + 49792.370838386785, + 49744.165906430586, + 49691.58111976882, + 49634.18310420989, + 49571.51437227988, + 49503.09332322259, + 49428.4142429993, + 49346.94730428914, + 49258.13856648887, + 49161.40997571283, + 49056.1593647932, + 48941.76045327959, + 48817.5628474395, + 48682.89204025788, + 48537.04941143757, + 48379.3122273989, + 48208.93364127994, + 48025.14269293643, + 47827.14430894175, + 47614.11930258693, + 47385.22437388075, + 47139.59210954957, + 49538.87017819573, + 49560.29705924836, + 49579.21284306938, + 49595.543072013315, + 49609.18917515237, + 49620.028468276454, + 49627.914153893114, + 49632.675321227594, + 49634.116946222755, + 49632.01989153916, + 49626.14090655503, + 49616.21262736624, + 49601.94357678635, + 49583.018164346555, + 49559.09668629574, + 49529.815325600466, + 49494.786151944914, + 49453.59712173101, + 49405.81207807823, + 49350.97075082381, + 49288.58875652265, + 49218.157598447244, + 49139.144666587796, + 49050.99323765224, + 48953.122475066004, + 48844.92742897241, + 48725.779036232205, + 48595.02412042401, + 48451.98539184397, + 48295.96144750599, + 48126.22677114157, + 47942.03173319989, + 47742.602590847804, + 47527.1414879699, + 47294.826455168295, + 47044.811409762864, + 46776.22615579116, + 50807.62888668537, + 50787.085894023476, + 50765.864685140776, + 50743.890261693006, + 50721.06351205372, + 50697.26121131407, + 50672.33602128285, + 50646.11649048657, + 50618.407054169395, + 50588.98803429313, + 50557.61563953727, + 50524.021965298925, + 50487.91499369296, + 50448.97859355186, + 50406.872520425735, + 50361.23241658243, + 50311.66981100739, + 50257.77211940382, + 50199.10264419241, + 50135.20057451176, + 50065.580986217945, + 49989.7348418848, + 49907.12899080377, + 49817.206168984005, + 49719.3849991523, + 49613.05999075316, + 49497.60153994866, + 49372.35592961863, + 49236.645329360515, + 49089.767795489504, + 48930.99727103835, + 48759.583585757486, + 48574.75245611508, + 48375.705485296894, + 48161.62016320642, + 47931.64986646474, + 47684.92385841069, + 50099.2021225138, + 50118.10592449134, + 50134.56446881131, + 50148.499531126, + 50159.80877380545, + 50168.365745937364, + 50174.019883327026, + 50176.59650849754, + 50175.896830689504, + 50171.697945861306, + 50163.75283668898, + 50151.79037256612, + 50135.51530960413, + 50114.60829063203, + 50088.72584519644, + 50057.50038956173, + 50020.54022670987, + 49977.42954634057, + 49927.728424871144, + 49870.972825436605, + 49806.67459788959, + 49734.32147880046, + 49653.37709145719, + 49563.28094586546, + 49463.448438748565, + 49353.27085354753, + 49232.11536042101, + 49099.32501624532, + 48954.21876461443, + 48796.091435840055, + 48624.21374695148, + 48437.83230169565, + 48236.16959053728, + 48018.42399065866, + 47783.76976595974, + 47531.35706705823, + 47260.31193128942, + 51408.662682119495, + 51385.69434357322, + 51362.14392541537, + 51337.93310591418, + 51312.95945005553, + 51287.096409542966, + 51260.19332279773, + 51232.07541495872, + 51202.54379788246, + 51171.37547014324, + 51138.323317032875, + 51103.116110560935, + 51065.45850945464, + 51025.03105915889, + 50981.49019183621, + 50934.46822636683, + 50883.573368348625, + 50828.3897100971, + 50768.47723064552, + 50703.37179574474, + 50632.585157863345, + 50555.60495618745, + 50471.894716620984, + 50380.89385178549, + 50282.017661020174, + 50174.657330381866, + 50058.179932645144, + 49931.92842730218, + 49795.22166056285, + 49647.354365354666, + 49487.597161322854, + 49315.19655483026, + 49129.374938957444, + 48929.330593502535, + 48714.237684981446, + 48483.24626662769, + 48235.482278392454, + 50664.09083507251, + 50680.47318170528, + 50694.477541917164, + 50706.02192465821, + 50715.000225596355, + 50721.282227116935, + 50724.71359832321, + 50725.11589503588, + 50722.28655979352, + 50715.99892185217, + 50706.002197185735, + 50692.02148848561, + 50673.75778516093, + 50650.88796333853, + 50623.06478586284, + 50589.916902296034, + 50551.04884891786, + 50506.04104872581, + 50454.44981143498, + 50395.8073334782, + 50329.6216980059, + 50255.37687488625, + 50172.53272070494, + 50080.524978765556, + 49978.765279089115, + 49866.64113841444, + 49743.51596019797, + 49608.72903461386, + 49461.59553855382, + 49301.40653562739, + 49127.428976161624, + 48938.90569720128, + 48735.05542250886, + 48515.07276256442, + 48278.128214565804, + 48023.36816242838, + 47749.914876785304, + 52013.839348036214, + 51988.44889712082, + 51962.57402032143, + 51936.13307251867, + 51909.02029531085, + 51881.10581701387, + 51852.23565266139, + 51822.23170400477, + 51790.89175951282, + 51757.98949437231, + 51723.27447048743, + 51686.47213648018, + 51647.28382769016, + 51605.38676617466, + 51560.4340607086, + 51512.054706784664, + 51459.85358661306, + 51403.41146912176, + 51342.28500995639, + 51276.0067514802, + 51204.08512277419, + 51126.004439636876, + 51041.22490458459, + 50949.182606851275, + 50849.2895223885, + 50740.93351386559, + 50623.47833066944, + 50496.26360890466, + 50358.60487139348, + 50209.79352767591, + 50049.09687400952, + 49875.75809336951, + 49688.99625544888, + 49488.00631665821, + 49271.959120125735, + 49040.00139569743, + 48791.25575993683, + 51233.51769877634, + 51247.38087611714, + 51258.93476993633, + 51268.09362248186, + 51274.74756271932, + 51278.76260633197, + 51279.98065572077, + 51278.21950000429, + 51273.27281501884, + 51264.9101633183, + 51252.8769941743, + 51236.89464357608, + 51216.660334230575, + 51191.84717556239, + 51162.10416371375, + 51127.0561815446, + 51086.30399863253, + 51039.42427127278, + 50985.96954247827, + 50925.46824197961, + 50857.42468622505, + 50781.31907838046, + 50696.60750832945, + 50602.721952673295, + 50499.07027473087, + 50385.03622453879, + 50259.979438851224, + 50123.23544114019, + 49974.11564159515, + 49811.90733712344, + 49635.87371134992, + 49445.25383461714, + 49239.262663985384, + 49017.091043232525, + 48777.905702854136, + 48520.8492600635, + 48245.04021879143, + 52623.12580650763, + 52595.31704585255, + 52567.123030159375, + 52538.45879092106, + 52509.21524634839, + 52479.259201369634, + 52448.43334763089, + 52416.55626349581, + 52383.42241404577, + 52348.802151079806, + 52312.44171311459, + 52274.063225384474, + 52233.36469984145, + 52190.020035155256, + 52143.67901671321, + 52093.96731662036, + 52040.486493699325, + 51982.8139934905, + 51920.503148251875, + 51853.08317695914, + 51780.05918530568, + 51700.91216570242, + 51615.098997278095, + 51522.052445879024, + 51421.18116406924, + 51311.86969113037, + 51193.478453061754, + 51065.34376258042, + 50926.77781912104, + 50777.06870883592, + 50615.48040459509, + 50441.25276598616, + 50253.60153931455, + 50051.71835760317, + 49834.77074059271, + 49601.9020947415, + 49352.23171322555, + 51807.46311626966, + 51818.81007269367, + 51827.91788015806, + 51834.69701420851, + 51839.03383710847, + 51840.79059783899, + 51839.80543209878, + 51835.89236230423, + 51828.84129758941, + 51818.41803380602, + 51804.36425352349, + 51786.39752602883, + 51764.21130732678, + 51737.474940139735, + 51705.83365390771, + 51668.908564788486, + 51626.29667565738, + 51577.57087610745, + 51522.2799424494, + 51459.94853771169, + 51390.07721164024, + 51312.142400698875, + 51225.59642806886, + 51129.86750364933, + 51024.35972405692, + 50908.453072626064, + 50781.50341940875, + 50642.842521174694, + 50491.77802141126, + 50327.593450323504, + 50149.54822483412, + 49956.87764858342, + 49748.7929119295, + 49524.48109194803, + 49283.10515243235, + 49023.803943893516, + 48745.69220356023, + 53236.48799934578, + 53206.26530069462, + 53175.75803496953, + 53144.87791027589, + 53113.51252143682, + 53081.52534999313, + 53048.75576420318, + 53015.01901904311, + 52980.10625620665, + 52943.78450410525, + 52905.79667786797, + 52865.86157934159, + 52823.67389709049, + 52778.90420639682, + 52731.19896926029, + 52680.18053439832, + 52625.44713724598, + 52566.57289995607, + 52503.107831398935, + 52434.57782716267, + 52360.484669553094, + 52280.30602759349, + 52193.49545702505, + 52099.48240030647, + 51997.67218661413, + 51887.446031842155, + 51768.16103860224, + 51639.15019622381, + 51499.7223807539, + 51349.162354957305, + 51186.73076831638, + 51011.664157031206, + 50823.17494401949, + 50620.45143891669, + 50402.65783807577, + 50168.934224567565, + 49918.3965681804, + 52385.906509936656, + 52394.740856141565, + 52401.40761961147, + 52405.813509189866, + 52407.84112043788, + 52407.348935634494, + 52404.17132377612, + 52398.11854057703, + 52388.976728468995, + 52376.507916601586, + 52360.45002084197, + 52340.516843774996, + 52316.39807470315, + 52287.75928964663, + 52254.241951343276, + 52215.46340924861, + 52171.016899535796, + 52120.47154509564, + 52063.37235553671, + 51999.2402271851, + 51927.57194308477, + 51847.84017299707, + 51759.49347340128, + 51661.956287494155, + 51554.62894519027, + 51436.887663121735, + 51308.08454463839, + 51167.547579807746, + 51014.580645414935, + 50848.463504962805, + 50668.45180867189, + 50473.77709348021, + 50263.646783043776, + 50037.244187735894, + 49793.72850464784, + 49532.23481758838, + 49251.874097084044, + 53853.89088810264, + 53821.25919231314, + 53788.44513453216, + 53755.35709947757, + 53721.87935858485, + 53687.8720700071, + 53653.17127861522, + 53617.588915997694, + 53580.912800460675, + 53542.906637028, + 53503.31001744113, + 53461.83842015925, + 53418.18321035915, + 53372.01163993537, + 53322.9668475, + 53270.66785838291, + 53214.709584631564, + 53154.6628250111, + 53090.07426500432, + 53020.466476811744, + 52945.3379193515, + 52864.1629382594, + 52776.39176588891, + 52681.4505213112, + 52578.741210315005, + 52467.64172540693, + 52347.50584581098, + 52217.66323746902, + 52077.41945304054, + 51926.05593190262, + 51762.830000150134, + 51586.97487059548, + 51397.69964276884, + 51194.18930291797, + 50975.604724008335, + 50741.0826657231, + 50489.73577446303, + 52968.82632190159, + 52975.152330907506, + 52979.38375506567, + 52981.42353651734, + 52981.15050412155, + 52978.419373454926, + 52973.06074681176, + 52964.88111320407, + 52953.662848361484, + 52939.16421473129, + 52921.11936147849, + 52899.23832448575, + 52873.20702635327, + 52842.68727639915, + 52807.316770658916, + 52766.70909188594, + 52720.45370955117, + 52668.11597984323, + 52609.23714566841, + 52543.33433665069, + 52469.9005691317, + 52388.40474617073, + 52298.29165754472, + 52198.981979748336, + 52089.87227599381, + 51970.334996211204, + 51839.71847704803, + 51697.34694186962, + 51542.52050075891, + 51374.51515051657, + 51192.58277466086, + 50995.95114342769, + 50783.8239137707, + 50555.38062936119, + 50309.77672058807, + 50046.14350455801, + 49763.588185095214, + 53922.739134711686, + 53889.84010207234, + 53856.77015722023, + 53823.437315607625, + 53789.725479404435, + 53755.49443749822, + 53720.57986549424, + 53684.79332571542, + 53647.92226720231, + 53609.73002571316, + 53569.955823723896, + 53528.31477042807, + 53484.49786173691, + 53438.17198027936, + 53388.97989540194, + 53336.54026316892, + 53280.44762636217, + 53220.2724144813, + 53155.56094374345, + 53085.835417083596, + 53010.59392415428, + 52929.31044132575, + 52841.43483168584, + 52746.39284504018, + 52643.586117911924, + 52532.39217354203, + 52412.16442188899, + 52282.232159629064, + 52141.900570156125, + 51990.450723581715, + 51827.13957673509, + 51651.19997316307, + 51461.84064313026, + 51258.24620361883, + 51039.57715832867, + 50804.96989767736, + 50553.53669880007, + 53033.87059451183, + 53039.91819169879, + 53043.87940329514, + 53045.6567529194, + 53045.12865090773, + 53042.14939431401, + 53036.549166909695, + 53028.134039184, + 53016.685968343736, + 53001.96279831348, + 52983.698259735305, + 52961.60196996914, + 52935.35943309241, + 52904.63203990033, + 52869.05706790573, + 52828.24768133909, + 52781.79293114861, + 52729.257755000064, + 52670.18297727698, + 52604.08530908054, + 52530.45734822952, + 52448.76757926048, + 52358.46037342749, + 52258.955988702466, + 52149.65056977481, + 52029.916148051765, + 51899.100641658064, + 51756.52785543626, + 51601.49748094648, + 51433.28509646652, + 51251.14216699191, + 51054.29604423574, + 50841.94996662886, + 50613.28305931972, + 50367.45033417448, + 50103.58268977697, + 49820.786911428666, + 153036.3194145896, + 153133.5361422717, + 153269.63657130598, + 153443.967433906, + 153655.85134900283, + 153904.5868222457, + 154189.44824600127, + 154509.6858993536, + 154864.5259481047, + 155253.17044477424, + 155674.79732859944, + 156128.5604255352, + 156613.5894482543, + 157128.98999614685, + 157673.84355532084, + 158247.2074986018, + 158848.1150855332, + 159475.57546237583, + 160128.57366210822, + 160806.07060442676, + 161507.00309574543, + 162230.28382919566, + 162974.80138462674, + 163739.4202286057, + 164522.98071441715, + 165324.29908206328, + 166142.16745826395, + 166975.35385645684, + 167822.60217679729, + 168682.632206158, + 169554.13961812964, + 170435.79597302058, + 171326.24871785665, + 172224.12118638147, + 173128.01259905615, + 174036.49806305981, + 174948.1285722889, + 163620.72679160384, + 163806.83867944442, + 164023.75845925507, + 164270.75250050367, + 164547.06305937638, + 164851.90827877683, + 165184.48218832634, + 165543.95470436383, + 165929.47162994585, + 166340.1546548468, + 166775.10135555852, + 167233.38519529073, + 167714.05552397072, + 168216.13757824342, + 168738.63248147143, + 169280.51724373485, + 169840.74476183194, + 170418.2438192782, + 171011.91908630685, + 171620.6511198689, + 172243.29636363298, + 172878.6871479853, + 173525.6316900296, + 174182.91409358787, + 174849.29434919928, + 175523.5083341206, + 176204.2678123266, + 176890.26043450928, + 177580.14973807902, + 178272.57514716304, + 178966.1519726067, + 179659.47141197298, + 180351.10054954255, + 181039.58235631342, + 181723.43569000176, + 182401.15529504116, + 183071.21180258258 + ], + "input_power": [ + 18788.081517599996, + 18791.009260612343, + 18799.347602182712, + 18813.09654231111, + 18832.256080997533, + 18856.826218241975, + 18886.80695404444, + 18922.198288404936, + 18963.000221323455, + 19009.212752799995, + 19060.83588283457, + 19117.869611427162, + 19180.313938577776, + 19248.168864286425, + 19321.434388553087, + 19400.110511377778, + 19484.197232760493, + 19573.69455270123, + 19668.602471199996, + 19768.92098825679, + 19874.6501038716, + 19985.789818044443, + 20102.340130775312, + 20224.301042064195, + 20351.672551911106, + 20484.45466031605, + 20622.647367279013, + 20766.250672799997, + 20915.264576879013, + 21069.689079516047, + 21229.524180711105, + 21394.769880464195, + 21565.426178775306, + 21741.493075644445, + 21922.970571071608, + 22109.858665056796, + 22302.15735759999, + 19767.4136196, + 19777.65958199012, + 19793.316142938267, + 19814.38330244444, + 19840.86106050864, + 19872.74941713086, + 19910.048372311107, + 19952.757926049384, + 20000.878078345682, + 20054.408829199998, + 20113.35017861234, + 20177.702126582717, + 20247.464673111106, + 20322.637818197527, + 20403.221561841976, + 20489.21590404444, + 20580.620844804936, + 20677.43638412345, + 20779.662522, + 20887.299258434567, + 21000.34659342715, + 21118.804526977772, + 21242.67305908642, + 21371.952189753083, + 21506.641918977773, + 21646.74224676049, + 21792.25317310123, + 21943.174697999995, + 22099.506821456784, + 22261.2495434716, + 22428.40286404444, + 22600.966783175307, + 22778.941300864197, + 22962.32641711111, + 23151.122131916043, + 23345.328445279014, + 23544.94535719999, + 18794.435793085995, + 18797.395013893896, + 18805.764833259826, + 18819.545251183772, + 18838.73626766575, + 18863.337882705753, + 18893.35009630377, + 18928.77290845983, + 18969.606319173898, + 19015.850328445995, + 19067.50493627612, + 19124.570142664274, + 19187.045947610437, + 19254.93235111464, + 19328.229353176863, + 19406.936953797107, + 19491.055152975376, + 19580.583950711676, + 19675.52334700599, + 19775.87334185834, + 19881.633935268714, + 19992.805127237105, + 20109.38691776353, + 20231.37930684797, + 20358.782294490433, + 20491.595880690933, + 20629.820065449454, + 20773.454848765992, + 20922.500230640566, + 21076.956211073157, + 21236.822790063772, + 21402.09996761242, + 21572.787743719084, + 21748.88611838378, + 21930.395091606493, + 22117.31466338723, + 22309.644833725994, + 19774.641918445996, + 19784.930096196116, + 19800.62887250427, + 19821.738247370442, + 19848.258220794636, + 19880.188792776862, + 19917.529963317105, + 19960.281732415377, + 20008.44410007168, + 20062.017066285993, + 20121.000631058338, + 20185.394794388718, + 20255.199556277104, + 20330.414916723526, + 20411.040875727973, + 20497.07743329044, + 20588.524589410932, + 20685.382344089452, + 20787.65069732599, + 20895.329649120562, + 21008.419199473152, + 21126.91934838377, + 21250.83009585242, + 21380.151441879083, + 21514.88338646377, + 21655.025929606487, + 21800.57907130723, + 21951.542811565992, + 22107.917150382786, + 22269.7020877576, + 22436.897623690435, + 22609.503758181305, + 22787.520491230192, + 22970.94782283711, + 23159.78575300205, + 23354.03428172501, + 23553.693409005988, + 18851.184824599994, + 18854.427345567903, + 18863.080465093823, + 18877.144183177774, + 18896.618499819753, + 18921.503415019757, + 18951.79892877778, + 18987.505041093827, + 19028.6217519679, + 19075.1490614, + 19127.086969390122, + 19184.435475938273, + 19247.19458104444, + 19315.36428470864, + 19388.944586930862, + 19467.93548771111, + 19552.336987049384, + 19642.14908494568, + 19737.371781399994, + 19838.005076412344, + 19944.048969982712, + 20055.503462111108, + 20172.36855279753, + 20294.64424204197, + 20422.330529844436, + 20555.42741620494, + 20693.93490112346, + 20837.852984600006, + 20987.181666634573, + 21141.92094722716, + 21302.070826377774, + 21467.631304086422, + 21638.602380353084, + 21814.98405517778, + 21996.776328560496, + 22183.97920050124, + 22376.592671, + 19839.257160200006, + 19849.925276190123, + 19866.00399073827, + 19887.493303844447, + 19914.393215508644, + 19946.703725730862, + 19984.42483451111, + 20027.55654184938, + 20076.098847745678, + 20130.051752199997, + 20189.415255212345, + 20254.189356782714, + 20324.37405691111, + 20399.96935559753, + 20480.975252841974, + 20567.39174864444, + 20659.21884300494, + 20756.456535923455, + 20859.104827399995, + 20967.16371743457, + 21080.63320602716, + 21199.513293177777, + 21323.80397888642, + 21453.50526315308, + 21588.617145977772, + 21729.139627360488, + 21875.07270730123, + 22026.4163858, + 22183.17066285679, + 22345.335538471605, + 22512.911012644436, + 22685.897085375313, + 22864.2937566642, + 23048.101026511118, + 23237.31889491605, + 23431.947361879014, + 23631.9864274, + 18907.142849965996, + 18910.6686710939, + 18919.60509077982, + 18933.952109023776, + 18953.709725825753, + 18978.87794118575, + 19009.456755103773, + 19045.446167579823, + 19086.8461786139, + 19133.656788205994, + 19185.87799635612, + 19243.50980306427, + 19306.552208330442, + 19375.005212154636, + 19448.868814536858, + 19528.14301547711, + 19612.82781497538, + 19702.923213031678, + 19798.429209645994, + 19899.34580481835, + 20005.67299854871, + 20117.410790837108, + 20234.55918168353, + 20357.118171087972, + 20485.08775905044, + 20618.467945570937, + 20757.25873064945, + 20901.460114285997, + 21051.072096480566, + 21206.09467723316, + 21366.527856543773, + 21532.37163441242, + 21703.626010839085, + 21880.290985823776, + 22062.3665593665, + 22249.85273146724, + 22442.749502125997, + 19903.081395806, + 19914.12945003612, + 19930.588102824266, + 19952.457354170445, + 19979.737204074638, + 20012.427652536862, + 20050.528699557104, + 20094.04034513538, + 20142.962589271676, + 20197.295431965995, + 20257.038873218342, + 20322.192913028714, + 20392.757551397106, + 20468.732788323527, + 20550.118623807975, + 20636.91505785044, + 20729.122090450932, + 20826.73972160945, + 20929.767951325997, + 21038.20677960057, + 21152.056206433157, + 21271.31623182377, + 21395.98685577242, + 21526.06807827908, + 21661.55989934377, + 21802.46231896649, + 21948.775337147235, + 22100.49895388599, + 22257.633169182784, + 22420.177983037604, + 22588.133395450437, + 22761.499406421306, + 22940.276015950196, + 23124.463224037114, + 23314.06103068205, + 23509.06943588501, + 23709.488439645993, + 18962.309869184, + 18966.1189904719, + 18975.33871031783, + 18989.969028721775, + 19010.009945683752, + 19035.461461203748, + 19066.323575281775, + 19102.596287917822, + 19144.2795991119, + 19191.373508863995, + 19243.878017174124, + 19301.793124042273, + 19365.11882946844, + 19433.855133452642, + 19508.00203599486, + 19587.55953709511, + 19672.527636753384, + 19762.906334969673, + 19858.695631744, + 19959.895527076344, + 20066.506020966717, + 20178.527113415108, + 20295.958804421538, + 20418.80109398597, + 20547.053982108442, + 20680.717468788935, + 20819.791554027455, + 20964.276237824, + 21114.171520178566, + 21269.477401091157, + 21430.193880561776, + 21596.320958590422, + 21767.858635177086, + 21944.80691032178, + 22127.165784024495, + 22314.935256285233, + 22508.115327104, + 19966.114625264, + 19977.54261773412, + 19994.38120876227, + 20016.630398348443, + 20044.29018649264, + 20077.36057319486, + 20115.841558455108, + 20159.733142273377, + 20209.035324649674, + 20263.748105583993, + 20323.871485076343, + 20389.405463126717, + 20460.350039735105, + 20536.705214901533, + 20618.47098862598, + 20705.647360908442, + 20798.23433174894, + 20896.231901147454, + 20999.640069103996, + 21108.458835618563, + 21222.68820069116, + 21342.328164321774, + 21467.378726510426, + 21597.83988725708, + 21733.711646561776, + 21874.994004424494, + 22021.68696084523, + 22173.790515823996, + 22331.304669360783, + 22494.229421455602, + 22662.56477210844, + 22836.31072131931, + 23015.4672690882, + 23200.03441541511, + 23390.012160300048, + 23585.400503743007, + 23786.19944574399, + 19016.68588225399, + 19020.778303701903, + 19030.281323707823, + 19045.194942271777, + 19065.519159393752, + 19091.253975073752, + 19122.399389311773, + 19158.955402107822, + 19200.9220134619, + 19248.299223373997, + 19301.087031844123, + 19359.285438872274, + 19422.894444458438, + 19491.914048602637, + 19566.34425130486, + 19646.185052565113, + 19731.436452383383, + 19822.098450759684, + 19918.171047693995, + 20019.654243186345, + 20126.548037236713, + 20238.85242984511, + 20356.567421011525, + 20479.693010735973, + 20608.22919901844, + 20742.17598585894, + 20881.533371257454, + 21026.301355213996, + 21176.47993772857, + 21332.069118801155, + 21493.068898431775, + 21659.47927662042, + 21831.300253367084, + 22008.531828671777, + 22191.174002534495, + 22379.226774955234, + 22572.690145933997, + 20028.356848573996, + 20040.164779284118, + 20057.38330855226, + 20080.01243637844, + 20108.052162762637, + 20141.50248770486, + 20180.363411205104, + 20224.634933263376, + 20274.317053879673, + 20329.409773053994, + 20389.913090786344, + 20455.827007076718, + 20527.151521925105, + 20603.886635331528, + 20686.03234729597, + 20773.588657818436, + 20866.555566898936, + 20964.93307453745, + 21068.721180733995, + 21177.91988548857, + 21292.529188801156, + 21412.549090671775, + 21537.979591100415, + 21668.820690087083, + 21805.07238763177, + 21946.734683734496, + 22093.807578395234, + 22246.291071613996, + 22404.185163390786, + 22567.4898537256, + 22736.205142618437, + 22910.331030069305, + 23089.867516078193, + 23274.81460064511, + 23465.172283770044, + 23660.94056545301, + 23862.119445693996, + 19070.270889175998, + 19074.6466107839, + 19084.432930949824, + 19099.62984967378, + 19120.237366955753, + 19146.25548279575, + 19177.684197193776, + 19214.523510149833, + 19256.7734216639, + 19304.433931736, + 19357.505040366123, + 19415.986747554274, + 19479.879053300443, + 19549.181957604636, + 19623.895460466858, + 19704.019561887108, + 19789.55426186538, + 19880.499560401677, + 19976.855457495996, + 20078.62195314835, + 20185.799047358712, + 20298.386740127105, + 20416.385031453534, + 20539.793921337976, + 20668.613409780442, + 20802.843496780937, + 20942.484182339453, + 21087.535466455996, + 21237.997349130568, + 21393.869830363157, + 21555.152910153774, + 21721.84658850242, + 21893.95086540909, + 22071.46574087378, + 22254.391214896496, + 22442.72728747723, + 22636.473958615996, + 20089.808065735997, + 20101.99593468612, + 20119.594402194274, + 20142.603468260437, + 20171.02313288464, + 20204.85339606686, + 20244.094257807104, + 20288.745718105387, + 20338.80777696168, + 20394.280434375996, + 20455.163690348345, + 20521.457544878715, + 20593.16199796711, + 20670.277049613524, + 20752.802699817974, + 20840.73894858044, + 20934.085795900937, + 21032.843241779454, + 21137.011286216, + 21246.58992921057, + 21361.579170763154, + 21481.979010873772, + 21607.789449542423, + 21739.010486769082, + 21875.64212255377, + 22017.68435689649, + 22165.137189797235, + 22318.000621255997, + 22476.274651272794, + 22639.9592798476, + 22809.054506980443, + 22983.560332671306, + 23163.4767569202, + 23348.803779727117, + 23539.541401092047, + 23735.68962101501, + 23937.248439495994, + 19093.840763826407, + 19098.342440685443, + 19108.254716102507, + 19123.577590077588, + 19144.311062610705, + 19170.455133701842, + 19202.009803350997, + 19238.975071558187, + 19281.350938323394, + 19329.137403646633, + 19382.334467527893, + 19440.942129967178, + 19504.96039096448, + 19574.389250519816, + 19649.228708633178, + 19729.478765304564, + 19815.139420533967, + 19906.210674321403, + 20002.69252666685, + 20104.58497757034, + 20211.888027031844, + 20324.601675051374, + 20442.725921628935, + 20566.260766764506, + 20695.206210458113, + 20829.562252709744, + 20969.3288935194, + 21114.50613288708, + 21265.093970812784, + 21421.09240729651, + 21582.50144233826, + 21749.321075938045, + 21921.551308095848, + 22099.192138811675, + 22282.243568085527, + 22470.705595917403, + 22664.578222307304, + 20116.875257459113, + 20129.232046950736, + 20146.999435000387, + 20170.177421608074, + 20198.766006773767, + 20232.765190497495, + 20272.174972779245, + 20316.995353619026, + 20367.22633301682, + 20422.867910972644, + 20483.920087486495, + 20550.382862558374, + 20622.25623618827, + 20699.540208376195, + 20782.23477912214, + 20870.339948426114, + 20963.855716288115, + 21062.782082708134, + 21167.119047686185, + 21276.866611222256, + 21392.024773316356, + 21512.593533968477, + 21638.572893178625, + 21769.96285094679, + 21906.76340727298, + 22048.974562157204, + 22196.59631559945, + 22349.62866759972, + 22508.07161815801, + 22671.925167274334, + 22841.189314948675, + 23015.864061181044, + 23195.94940597144, + 23381.44534931986, + 23572.351891226303, + 23768.669031690762, + 23970.396770713258, + 19123.064889949994, + 19127.7239117179, + 19137.793532043826, + 19153.273750927776, + 19174.16456836975, + 19200.465984369752, + 19232.17799892777, + 19269.300612043822, + 19311.833823717898, + 19359.777633949994, + 19413.132042740122, + 19471.89705008827, + 19536.072655994434, + 19605.658860458636, + 19680.655663480862, + 19761.06306506111, + 19846.881065199384, + 19938.10966389568, + 20034.748861149998, + 20136.798656962343, + 20244.259051332716, + 20357.130044261106, + 20475.41163574753, + 20599.103825791968, + 20728.20661439444, + 20862.72000155494, + 21002.643987273455, + 21147.978571549997, + 21298.72375438457, + 21454.879535777156, + 21616.445915727774, + 21783.42289423642, + 21955.81047130308, + 22133.608646927783, + 22316.817421110492, + 22505.43679385123, + 22699.466765149995, + 20150.468276749998, + 20163.036083940122, + 20181.014489688267, + 20204.403493994443, + 20233.203096858637, + 20267.413298280862, + 20307.0340982611, + 20352.065496799376, + 20402.50749389567, + 20458.360089549995, + 20519.623283762343, + 20586.29707653271, + 20658.381467861105, + 20735.876457747527, + 20818.78204619197, + 20907.09823319444, + 21000.825018754935, + 21099.96240287345, + 21204.51038555, + 21314.468966784567, + 21429.838146577156, + 21550.61792492777, + 21676.80830183642, + 21808.409277303082, + 21945.420851327774, + 22087.843023910485, + 22235.675795051233, + 22388.91916475, + 22547.573133006787, + 22711.637699821604, + 22881.11286519444, + 23055.998629125304, + 23236.294991614195, + 23422.001952661114, + 23613.119512266047, + 23809.64767042901, + 24011.586427149992, + 19175.067884575994, + 19180.010206503903, + 19190.363126989825, + 19206.126646033776, + 19227.30076363575, + 19253.88547979575, + 19285.880794513778, + 19323.286707789823, + 19366.103219623896, + 19414.330330015997, + 19467.968038966126, + 19527.016346474273, + 19591.47525254044, + 19661.34475716464, + 19736.624860346863, + 19817.31556208711, + 19903.416862385384, + 19994.92876124168, + 20091.851258655992, + 20194.184354628345, + 20301.928049158712, + 20415.082342247108, + 20533.64723389353, + 20657.62272409797, + 20787.00881286044, + 20921.805500180933, + 21062.012786059462, + 21207.630670495997, + 21358.659153490567, + 21515.09823504316, + 21676.947915153774, + 21844.20819382242, + 22016.879071049087, + 22194.960546833776, + 22378.452621176497, + 22567.35529407723, + 22761.668565535994, + 20210.337481616, + 20223.285227046126, + 20241.64357103427, + 20265.412513580442, + 20294.592054684643, + 20329.18219434686, + 20369.18293256711, + 20414.59426934538, + 20465.41620468168, + 20521.648738575994, + 20583.291871028345, + 20650.345602038717, + 20722.809931607106, + 20800.68485973353, + 20883.97038641798, + 20972.66651166044, + 21066.773235460936, + 21166.29055781945, + 21271.218478735995, + 21381.556998210566, + 21497.306116243155, + 21618.465832833772, + 21745.036147982417, + 21877.017061689086, + 22014.40857395378, + 22157.210684776488, + 22305.42339415723, + 22459.046702095995, + 22618.080608592787, + 22782.5251136476, + 22952.38021726044, + 23127.64591943131, + 23308.322220160193, + 23494.40911944711, + 23685.906617292047, + 23882.81471369501, + 24085.13340865599, + 19226.279873053994, + 19231.5054951419, + 19242.141715787824, + 19258.188534991776, + 19279.645952753748, + 19306.51396907375, + 19338.792583951774, + 19376.48179738782, + 19419.581609381898, + 19468.092019933996, + 19522.013029044123, + 19581.344636712274, + 19646.08684293844, + 19716.239647722636, + 19791.803051064864, + 19872.77705296511, + 19959.161653423384, + 20050.95685243967, + 20148.162650013997, + 20250.77904614634, + 20358.806040836713, + 20472.243634085105, + 20591.091825891526, + 20715.350616255968, + 20845.020005178434, + 20980.09999265894, + 21120.590578697454, + 21266.491763293998, + 21417.803546448566, + 21574.525928161158, + 21736.65890843178, + 21904.202487260416, + 22077.156664647082, + 22255.521440591783, + 22439.296815094494, + 22628.48278815523, + 22823.079359773994, + 20269.415680334, + 20282.743364004124, + 20301.481646232263, + 20325.630527018442, + 20355.190006362634, + 20390.16008426486, + 20430.540760725104, + 20476.33203574338, + 20527.533909319674, + 20584.14638145399, + 20646.169452146343, + 20713.603121396714, + 20786.447389205106, + 20864.702255571527, + 20948.367720495975, + 21037.443783978444, + 21131.930446018934, + 21231.827706617456, + 21337.135565774, + 21447.854023488562, + 21563.983079761158, + 21685.522734591777, + 21812.472987980418, + 21944.833839927083, + 22082.605290431777, + 22225.787339494495, + 22374.37998711523, + 22528.383233293993, + 22687.797078030788, + 22852.621521325604, + 23022.85656317844, + 23198.502203589305, + 23379.558442558195, + 23566.025280085116, + 23757.90271617005, + 23955.190750813013, + 24157.889384013994, + 19276.700855383995, + 19282.209777631902, + 19293.12929843783, + 19309.45941780178, + 19331.200135723753, + 19358.35145220375, + 19390.913367241777, + 19428.885880837828, + 19472.268992991903, + 19521.062703704, + 19575.267012974127, + 19634.881920802276, + 19699.907427188442, + 19770.34353213264, + 19846.190235634866, + 19927.447537695112, + 20014.115438313387, + 20106.193937489683, + 20203.683035224, + 20306.582731516344, + 20414.89302636672, + 20528.61391977511, + 20647.745411741536, + 20772.28750226598, + 20902.240191348443, + 21037.603478988938, + 21178.377365187454, + 21324.561849944, + 21476.156933258575, + 21633.16261513116, + 21795.578895561775, + 21963.405774550425, + 22136.64325209709, + 22315.291328201783, + 22499.350002864496, + 22688.819276085233, + 22883.699147863997, + 20327.702872904003, + 20341.410494814118, + 20360.52871528227, + 20385.057534308442, + 20414.99695189264, + 20450.34696803486, + 20491.10758273511, + 20537.27879599338, + 20588.860607809675, + 20645.853018183996, + 20708.256027116346, + 20776.06963460671, + 20849.293840655104, + 20927.928645261527, + 21011.974048425975, + 21101.430050148443, + 21196.296650428932, + 21296.573849267454, + 21402.261646664003, + 21513.360042618566, + 21629.869037131157, + 21751.78863020177, + 21879.11882183042, + 22011.859612017084, + 22150.01100076178, + 22293.57298806449, + 22442.54557392523, + 22596.928758343995, + 22756.722541320785, + 22921.926922855604, + 23092.541902948436, + 23268.567481599304, + 23450.0036588082, + 23636.850434575113, + 23829.107808900048, + 24026.775781783013, + 24229.854353223993, + 19326.330831565992, + 19332.1230539739, + 19343.325874939826, + 19359.939294463777, + 19381.96331254576, + 19409.397929185754, + 19442.243144383774, + 19480.498958139826, + 19524.165370453902, + 19573.242381325996, + 19627.729990756125, + 19687.628198744274, + 19752.937005290438, + 19823.656410394637, + 19899.786414056864, + 19981.327016277108, + 20068.278217055384, + 20160.64001639167, + 20258.412414285995, + 20361.595410738344, + 20470.189005748714, + 20584.193199317113, + 20703.607991443532, + 20828.433382127972, + 20958.669371370437, + 21094.315959170934, + 21235.37314552945, + 21381.840930446, + 21533.719313920566, + 21691.008295953154, + 21853.707876543776, + 22021.818055692416, + 22195.338833399084, + 22374.270209663777, + 22558.612184486494, + 22748.364757867228, + 22943.52792980599, + 20385.199059325994, + 20399.286619476115, + 20418.784778184272, + 20443.693535450442, + 20474.01289127464, + 20509.742845656863, + 20550.883398597103, + 20597.434550095375, + 20649.39630015168, + 20706.768648766, + 20769.55159593834, + 20837.745141668714, + 20911.349285957105, + 20990.36402880353, + 21074.789370207975, + 21164.625310170435, + 21259.87184869094, + 21360.52898576945, + 21466.596721406, + 21578.07505560057, + 21694.963988353156, + 21817.263519663775, + 21944.97364953242, + 22078.094377959085, + 22216.62570494378, + 22360.567630486494, + 22509.92015458723, + 22664.683277245997, + 22824.85699846279, + 22990.4413182376, + 23161.436236570436, + 23337.841753461307, + 23519.657868910195, + 23706.88458291712, + 23899.521895482045, + 24097.56980660501, + 24301.028316285992, + 19375.169801599994, + 19381.2453241679, + 19392.731445293826, + 19409.628164977777, + 19431.935483219753, + 19459.653400019753, + 19492.781915377775, + 19531.321029293824, + 19575.2707417679, + 19624.6310528, + 19679.401962390126, + 19739.583470538273, + 19805.17557724444, + 19876.178282508637, + 19952.591586330862, + 20034.415488711107, + 20121.649989649384, + 20214.295089145675, + 20312.350787199997, + 20415.817083812348, + 20524.693978982712, + 20638.98147271111, + 20758.679564997532, + 20883.788255841973, + 21014.307545244443, + 21150.23743320494, + 21291.57791972346, + 21438.3290048, + 21590.49068843457, + 21748.06297062716, + 21911.045851377774, + 22079.439330686422, + 22253.243408553088, + 22432.458084977785, + 22617.083359960496, + 22807.11923350123, + 23002.565705599995, + 20441.904239599997, + 20456.37173799012, + 20476.249834938266, + 20501.538530444443, + 20532.237824508637, + 20568.347717130862, + 20609.868208311105, + 20656.799298049387, + 20709.14098634568, + 20766.8932732, + 20830.05615861235, + 20898.629642582717, + 20972.613725111114, + 21052.008406197525, + 21136.813685841975, + 21227.02956404444, + 21322.656040804937, + 21423.693116123453, + 21530.140789999994, + 21641.999062434563, + 21759.267933427156, + 21881.94740297778, + 22010.03747108642, + 22143.538137753087, + 22282.449402977778, + 22426.771266760497, + 22576.503729101234, + 22731.646789999995, + 22892.200449456795, + 23058.164707471602, + 23229.53956404444, + 23406.325019175307, + 23588.521072864198, + 23776.127725111113, + 23969.144975916053, + 24167.572825279014, + 24371.41127319999, + 19423.217765486, + 19429.576588213902, + 19441.346009499826, + 19458.52602934377, + 19481.116647745755, + 19509.117864705746, + 19542.52968022377, + 19581.352094299822, + 19625.5851069339, + 19675.228718126, + 19730.282927876124, + 19790.747736184272, + 19856.62314305044, + 19927.909148474642, + 20004.605752456868, + 20086.712954997107, + 20174.23075609539, + 20267.15915575167, + 20365.498153965993, + 20469.247750738352, + 20578.407946068713, + 20692.97873995711, + 20812.960132403532, + 20938.352123407974, + 21069.154712970438, + 21205.367901090933, + 21346.991687769456, + 21494.026073005996, + 21646.471056800576, + 21804.326639153154, + 21967.592820063768, + 22136.269599532417, + 22310.356977559088, + 22489.854954143782, + 22674.763529286494, + 22865.08270298723, + 23060.812475245995, + 20497.818413726003, + 20512.665850356123, + 20532.923885544267, + 20558.592519290443, + 20589.671751594637, + 20626.161582456858, + 20668.062011877104, + 20715.373039855378, + 20768.094666391677, + 20826.226891486, + 20889.769715138347, + 20958.72313734871, + 21033.08715811711, + 21112.86177744353, + 21198.046995327975, + 21288.642811770445, + 21384.649226770936, + 21486.066240329455, + 21592.893852445988, + 21705.132063120567, + 21822.78087235316, + 21945.840280143777, + 22074.310286492415, + 22208.190891399085, + 22347.48209486378, + 22492.18389688649, + 22642.29629746723, + 22797.819296605998, + 22958.75289430279, + 23125.0970905576, + 23296.851885370437, + 23474.017278741307, + 23656.593270670197, + 23844.579861157115, + 24037.977050202047, + 24236.78483780502, + 24441.003223965992, + 19470.474723223997, + 19477.1168461119, + 19489.169567557827, + 19506.632887561776, + 19529.50680612375, + 19557.79132324375, + 19591.486438921773, + 19630.592153157824, + 19675.1084659519, + 19725.035377303997, + 19780.372887214126, + 19841.120995682275, + 19907.27970270844, + 19978.849008292636, + 20055.82891243486, + 20138.21941513511, + 20226.020516393382, + 20319.232216209683, + 20417.854514583996, + 20521.88741151635, + 20631.33090700672, + 20746.185001055113, + 20866.449693661532, + 20992.124984825972, + 21123.210874548444, + 21259.707362828936, + 21401.614449667464, + 21548.932135064, + 21701.660419018568, + 21859.799301531162, + 22023.348782601777, + 22192.308862230424, + 22366.679540417084, + 22546.46081716178, + 22731.652692464497, + 22922.255166325234, + 23118.268238743996, + 20552.941581704, + 20568.16895657412, + 20588.806930002273, + 20614.85550198844, + 20646.314672532637, + 20683.18444163486, + 20725.464809295103, + 20773.15577551338, + 20826.25734028968, + 20884.769503623997, + 20948.692265516347, + 21018.025625966715, + 21092.76958497511, + 21172.924142541528, + 21258.489298665976, + 21349.465053348442, + 21445.851406588936, + 21547.64835838745, + 21654.85590874399, + 21767.47405765857, + 21885.50280513116, + 22008.942151161777, + 22137.792095750425, + 22272.052638897087, + 22411.723780601777, + 22556.80552086449, + 22707.29785968523, + 22863.200797063997, + 23024.51433300079, + 23191.238467495605, + 23363.373200548445, + 23540.91853215931, + 23723.874462328196, + 23912.240991055114, + 24106.01811834005, + 24305.205844183012, + 24509.80416858399, + 19516.940674813995, + 19523.8660978619, + 19536.20211946783, + 19553.948739631775, + 19577.105958353754, + 19605.673775633753, + 19639.65219147177, + 19679.041205867827, + 19723.840818821904, + 19774.051030333994, + 19829.671840404124, + 19890.70324903227, + 19957.14525621844, + 20028.99786196264, + 20106.26106626486, + 20188.934869125114, + 20277.019270543384, + 20370.514270519678, + 20469.419869053996, + 20573.736066146346, + 20683.462861796717, + 20798.60025600511, + 20919.148248771533, + 21045.10684009597, + 21176.47602997844, + 21313.255818418937, + 21455.44620541746, + 21603.047190973997, + 21756.058775088568, + 21914.480957761156, + 22078.31373899178, + 22247.55711878042, + 22422.21109712709, + 22602.275674031782, + 22787.750849494496, + 22978.63662351523, + 23174.932996093998, + 20607.273743534, + 20622.88105664412, + 20643.898968312267, + 20670.327478538446, + 20702.166587322637, + 20739.416294664858, + 20782.076600565106, + 20830.147505023382, + 20883.629008039676, + 20942.521109613994, + 21006.823809746344, + 21076.537108436718, + 21151.661005685102, + 21232.195501491526, + 21318.140595855974, + 21409.49628877844, + 21506.26258025894, + 21608.439470297453, + 21716.026958894, + 21829.025046048562, + 21947.433731761157, + 22071.253016031784, + 22200.482898860417, + 22335.123380247078, + 22475.174460191774, + 22620.636138694485, + 22771.50841575523, + 22927.791291373997, + 23089.48476555079, + 23256.588838285606, + 23429.103509578443, + 23607.02877942931, + 23790.364647838192, + 23979.11111480511, + 24173.268180330044, + 24372.83584441301, + 24577.814107053993, + 19562.615620255998, + 19569.824343463904, + 19582.44366522983, + 19600.47358555378, + 19623.91410443575, + 19652.765221875754, + 19687.02693787378, + 19726.699252429826, + 19771.7821655439, + 19822.275677216, + 19878.179787446126, + 19939.494496234274, + 20006.219803580447, + 20078.355709484644, + 20155.902213946865, + 20238.859316967115, + 20327.22701854538, + 20421.005318681677, + 20520.194217376, + 20624.793714628348, + 20734.80381043872, + 20850.224504807113, + 20971.055797733534, + 21097.297689217972, + 21228.95017926044, + 21366.01326786094, + 21508.486955019456, + 21656.371240736, + 21809.666125010568, + 21968.371607843157, + 22132.487689233778, + 22302.014369182423, + 22476.95164768909, + 22657.29952475378, + 22843.0580003765, + 23034.22707455723, + 23230.806747296, + 20660.814899216006, + 20676.802150566124, + 20698.200000474273, + 20725.00844894045, + 20757.227495964646, + 20794.857141546865, + 20837.897385687105, + 20886.348228385385, + 20940.209669641674, + 20999.481709455995, + 21064.164347828344, + 21134.257584758714, + 21209.76142024711, + 21290.675854293528, + 21377.00088689798, + 21468.736518060447, + 21565.882747780935, + 21668.439576059456, + 21776.407002895998, + 21889.78502829057, + 22008.573652243158, + 22132.772874753777, + 22262.38269582242, + 22397.403115449088, + 22537.834133633776, + 22683.675750376497, + 22834.92796567723, + 22991.590779535996, + 23153.664191952794, + 23321.1482029276, + 23494.042812460444, + 23672.348020551308, + 23856.063827200196, + 24045.190232407116, + 24239.727236172046, + 24439.674838495008, + 24645.033039375994, + 19607.49955955, + 19614.9915829179, + 19627.894204843822, + 19646.20742532778, + 19669.93124436975, + 19699.065661969755, + 19733.61067812777, + 19773.566292843825, + 19818.932506117897, + 19869.709317949997, + 19925.89672834012, + 19987.494737288274, + 20054.503344794444, + 20126.92255085864, + 20204.752355480865, + 20287.99275866111, + 20376.643760399387, + 20470.705360695676, + 20570.177559549997, + 20675.06035696234, + 20785.353752932722, + 20901.057747461116, + 21022.172340547535, + 21148.697532191974, + 21280.633322394435, + 21417.979711154938, + 21560.73669847345, + 21708.90428435, + 21862.48246878457, + 22021.47125177716, + 22185.870633327773, + 22355.68061343642, + 22530.901192103087, + 22711.532369327782, + 22897.574145110495, + 23089.026519451236, + 23285.889492349997, + 20713.56504875, + 20729.932238340116, + 20751.71002648827, + 20778.898413194445, + 20811.49739845864, + 20849.506982280862, + 20892.927164661105, + 20941.75794559938, + 20995.999325095676, + 21055.651303149993, + 21120.713879762345, + 21191.187054932714, + 21267.070828661108, + 21348.36520094753, + 21435.070171791973, + 21527.18574119444, + 21624.711909154936, + 21727.648675673452, + 21835.996040749997, + 21949.75400438457, + 22068.92256657716, + 22193.501727327777, + 22323.49148663642, + 22458.891844503087, + 22599.70280092777, + 22745.924355910498, + 22897.556509451228, + 23054.599261549996, + 23217.052612206786, + 23384.916561421604, + 23558.19110919444, + 23736.87625552531, + 23920.97200041419, + 24110.478343861116, + 24305.395285866052, + 24505.722826429006, + 24711.46096554999, + 19651.592492695996, + 19659.367816223898, + 19672.55373830983, + 19691.150258953778, + 19715.15737815575, + 19744.575095915752, + 19779.403412233776, + 19819.642327109825, + 19865.291840543905, + 19916.351952536002, + 19972.822663086128, + 20034.70397219427, + 20101.995879860442, + 20174.698386084638, + 20252.81149086687, + 20336.335194207113, + 20425.269496105386, + 20519.614396561687, + 20619.369895575997, + 20724.53599314835, + 20835.11268927871, + 20951.099983967113, + 21072.497877213536, + 21199.306369017973, + 21331.525459380442, + 21469.155148300943, + 21612.19543577946, + 21760.646321816, + 21914.507806410566, + 22073.77988956316, + 22238.462571273776, + 22408.55585154242, + 22584.05973036909, + 22764.974207753778, + 22951.2992836965, + 23143.034958197233, + 23340.181231256, + 20765.524192136, + 20782.271319966123, + 20804.42904635427, + 20831.997371300447, + 20864.976294804637, + 20903.365816866863, + 20947.1659374871, + 20996.37665666538, + 21050.99797440168, + 21111.029890695998, + 21176.47240554835, + 21247.325518958714, + 21323.589230927108, + 21405.26354145353, + 21492.34845053798, + 21584.843958180445, + 21682.75006438094, + 21786.066769139452, + 21894.794072455996, + 22008.93197433057, + 22128.480474763157, + 22253.439573753778, + 22383.809271302423, + 22519.589567409086, + 22660.780462073777, + 22807.381955296492, + 22959.394047077236, + 23116.816737415997, + 23279.650026312785, + 23447.893913767602, + 23621.54839978044, + 23800.613484351306, + 23985.089167480197, + 24174.97544916712, + 24370.272329412048, + 24570.979808215012, + 24777.097885575997, + 19694.894419694, + 19702.953043381898, + 19716.422265627825, + 19735.30208643178, + 19759.592505793757, + 19789.293523713754, + 19824.40514019177, + 19864.92735522783, + 19910.860168821895, + 19962.203580973997, + 20018.95759168412, + 20081.122200952268, + 20148.69740877844, + 20221.683215162637, + 20300.07962010486, + 20383.886623605107, + 20473.104225663385, + 20567.732426279676, + 20667.77122545399, + 20773.220623186342, + 20884.080619476717, + 21000.35121432511, + 21122.03240773153, + 21249.12419969597, + 21381.626590218442, + 21519.539579298933, + 21662.863166937455, + 21811.597353133995, + 21965.74213788857, + 22125.297521201155, + 22290.263503071772, + 22460.640083500417, + 22636.427262487086, + 22817.625040031777, + 23004.233416134495, + 23196.252390795235, + 23393.681964014, + 20816.692329373996, + 20833.81939544412, + 20856.357060072267, + 20884.30532325844, + 20917.664185002635, + 20956.43364530486, + 21000.613704165105, + 21050.204361583375, + 21105.205617559677, + 21165.617472093993, + 21231.439925186347, + 21302.672976836715, + 21379.316627045107, + 21461.370875811524, + 21548.835723135973, + 21641.71116901844, + 21739.997213458937, + 21843.693856457452, + 21952.801098014, + 22067.318938128567, + 22187.247376801155, + 22312.586414031775, + 22443.336049820417, + 22579.496284167082, + 22721.067117071776, + 22868.04854853449, + 23020.44057855523, + 23178.243207133997, + 23341.45643427078, + 23510.0802599656, + 23684.114684218435, + 23863.559707029304, + 24048.415328398194, + 24238.68154832511, + 24434.358366810047, + 24635.44578385301, + 24841.94379945399, + 19737.405340544, + 19745.747264391903, + 19759.499786797824, + 19778.662907761784, + 19803.23662728376, + 19833.220945363755, + 19868.615862001774, + 19909.421377197836, + 19955.637490951904, + 20007.264203264, + 20064.301514134124, + 20126.749423562273, + 20194.607931548446, + 20267.877038092643, + 20346.556743194862, + 20430.647046855112, + 20520.147949073387, + 20615.05944984968, + 20715.381549184003, + 20821.114247076348, + 20932.25754352672, + 21048.811438535115, + 21170.775932101533, + 21298.151024225976, + 21430.936714908443, + 21569.13300414894, + 21712.73989194746, + 21861.757378304006, + 22016.185463218568, + 22176.02414669116, + 22341.273428721783, + 22511.93330931042, + 22688.003788457085, + 22869.484866161783, + 23056.3765424245, + 23248.67881724524, + 23446.391690624005, + 20867.069460464, + 20884.576464774123, + 20907.49406764227, + 20935.82226906845, + 20969.561069052645, + 21008.71046759486, + 21053.27046469511, + 21103.24106035338, + 21158.622254569684, + 21219.414047344, + 21285.616438676345, + 21357.229428566716, + 21434.253017015108, + 21516.687204021535, + 21604.531989585976, + 21697.787373708445, + 21796.453356388938, + 21900.529937627456, + 22010.017117423995, + 22124.914895778566, + 22245.22327269116, + 22370.94224816178, + 22502.07182219042, + 22638.611994777082, + 22780.56276592178, + 22927.924135624493, + 23080.696103885235, + 23238.878670704, + 23402.471836080793, + 23571.475600015605, + 23745.889962508445, + 23925.71492355931, + 24110.950483168195, + 24301.596641335113, + 24497.653398060047, + 24699.120753343013, + 24905.998707183997, + 19779.125255245996, + 19787.750479253897, + 19801.786301819826, + 19821.232722943776, + 19846.089742625754, + 19876.35736086575, + 19912.035577663773, + 19953.124393019825, + 19999.623806933898, + 20051.533819405995, + 20108.85443043612, + 20171.585640024274, + 20239.727448170437, + 20313.279854874636, + 20392.242860136863, + 20476.616463957114, + 20566.40066633538, + 20661.595467271676, + 20762.200866765997, + 20868.21686481834, + 20979.643461428714, + 21096.480656597112, + 21218.72845032353, + 21346.38684260797, + 21479.45583345044, + 21617.93542285094, + 21761.825610809454, + 21911.126397325996, + 22065.83778240057, + 22225.959766033156, + 22391.492348223775, + 22562.435528972415, + 22738.78930827909, + 22920.553686143783, + 23107.728662566496, + 23300.314237547227, + 23498.310411085993, + 20916.655585406, + 20934.542527956124, + 20957.840069064267, + 20986.548208730444, + 21020.666946954636, + 21060.196283736863, + 21105.136219077103, + 21155.486752975383, + 21211.247885431676, + 21272.419616445997, + 21339.001946018347, + 21410.994874148713, + 21488.398400837104, + 21571.212526083527, + 21659.43724988797, + 21753.072572250443, + 21852.11849317094, + 21956.57501264945, + 22066.44213068599, + 22181.71984728057, + 22302.408162433152, + 22428.507076143775, + 22560.016588412425, + 22696.936699239082, + 22839.267408623768, + 22987.00871656649, + 23140.160623067233, + 23298.723128125996, + 23462.696231742786, + 23632.0799339176, + 23806.87423465044, + 23987.079133941308, + 24172.694631790193, + 24363.720728197117, + 24560.157423162047, + 24762.00471668501, + 24969.262608765992, + 19820.0541638, + 19828.962687967905, + 19843.281810693832, + 19863.01153197778, + 19888.15185181975, + 19918.702770219752, + 19954.664287177777, + 19996.036402693822, + 20042.819116767903, + 20095.0124294, + 20152.616340590124, + 20215.630850338275, + 20284.05595864444, + 20357.891665508643, + 20437.137970930868, + 20521.794874911116, + 20611.862377449383, + 20707.340478545684, + 20808.229178200003, + 20914.52847641235, + 21026.238373182718, + 21143.358868511114, + 21265.889962397534, + 21393.83165484198, + 21527.18394584444, + 21665.94683540494, + 21810.120323523457, + 21959.7044102, + 22114.69909543457, + 22275.10437922716, + 22440.920261577776, + 22612.14674248642, + 22788.783821953082, + 22970.83149997778, + 23158.289776560498, + 23351.158651701233, + 23549.4381254, + 20965.4507042, + 20983.717584990125, + 21007.395064338274, + 21036.483142244455, + 21070.981818708642, + 21110.891093730865, + 21156.210967311108, + 21206.94143944938, + 21263.08251014568, + 21324.634179399996, + 21391.59644721234, + 21463.969313582715, + 21541.75277851111, + 21624.946841997527, + 21713.551504041974, + 21807.56676464444, + 21906.992623804937, + 22011.829081523454, + 22122.0761378, + 22237.733792634564, + 22358.802046027162, + 22485.28089797778, + 22617.170348486427, + 22754.470397553087, + 22897.18104517778, + 23045.302291360495, + 23198.83413610123, + 23357.776579399997, + 23522.12962125679, + 23691.8932616716, + 23867.067500644447, + 24047.652338175307, + 24233.647774264202, + 24425.053808911114, + 24621.870442116047, + 24824.097673879012, + 25031.7355042, + 19860.192066205997, + 19869.383890533903, + 19883.986313419824, + 19903.99933486378, + 19929.422954865757, + 19960.257173425754, + 19996.501990543773, + 20038.157406219823, + 20085.2234204539, + 20137.700033245997, + 20195.587244596125, + 20258.88505450427, + 20327.593462970442, + 20401.71246999464, + 20481.24207557686, + 20566.18227971711, + 20656.533082415386, + 20752.29448367168, + 20853.466483485994, + 20960.049081858346, + 21072.04227878871, + 21189.446074277108, + 21312.260468323533, + 21440.485460927976, + 21574.12105209044, + 21713.16724181094, + 21857.624030089457, + 22007.491416925997, + 22162.76940232057, + 22323.457986273155, + 22489.55716878377, + 22661.06694985242, + 22837.987329479085, + 23020.318307663787, + 23208.0598844065, + 23401.212059707235, + 23599.774833565993, + 21013.454816845995, + 21032.101635876123, + 21056.15905346427, + 21085.627069610444, + 21120.505684314638, + 21160.794897576863, + 21206.494709397106, + 21257.605119775377, + 21314.12612871168, + 21376.057736205992, + 21443.39994225834, + 21516.152746868716, + 21594.316150037106, + 21677.890151763535, + 21766.874752047974, + 21861.26995089044, + 21961.075748290943, + 22066.29214424945, + 22176.919138766, + 22292.956731840568, + 22414.404923473157, + 22541.26371366378, + 22673.53310241242, + 22811.213089719084, + 22954.30367558377, + 23102.804860006494, + 23256.716642987234, + 23416.039024525995, + 23580.772004622788, + 23750.9155832776, + 23926.46976049044, + 24107.434536261306, + 24293.809910590197, + 24485.595883477115, + 24682.792454922048, + 24885.399624925012, + 25093.417393485997, + 19864.60300912484, + 19873.826311273486, + 19888.460211980146, + 19908.504711244837, + 19933.95980906755, + 19964.825505448287, + 20001.101800387045, + 20042.78869388384, + 20089.88618593865, + 20142.39427655148, + 20200.312965722347, + 20263.64225345123, + 20332.382139738136, + 20406.532624583073, + 20486.093707986038, + 20571.065389947024, + 20661.447670466034, + 20757.24054954307, + 20858.44402717812, + 20965.058103371208, + 21077.08277812231, + 21194.51805143145, + 21317.363923298606, + 21445.620393723784, + 21579.28746270699, + 21718.36513024823, + 21862.853396347484, + 22012.75226100476, + 22168.061724220075, + 22328.781785993397, + 22494.912446324754, + 22666.453705214135, + 22843.40556266154, + 23025.768018666968, + 23213.541073230423, + 23406.7247263519, + 23605.3189780314, + 21018.73978382406, + 21037.428818247958, + 21061.52845122988, + 21091.038682769824, + 21125.95951286779, + 21166.290941523792, + 21212.032968737807, + 21263.18559450985, + 21319.748818839915, + 21381.722641728014, + 21449.107063174128, + 21521.902083178273, + 21600.107701740435, + 21683.72391886063, + 21772.75073453885, + 21867.188148775087, + 21967.03616156936, + 22072.294772921643, + 22182.96398283196, + 22299.043791300308, + 22420.534198326663, + 22547.435203911056, + 22679.746808053475, + 22817.46901075391, + 22960.60181201237, + 23109.145211828865, + 23263.099210203374, + 23422.463807135908, + 23587.23900262648, + 23757.424796675063, + 23933.021189281673, + 24114.028180446312, + 24300.445770168975, + 24492.27395844966, + 24689.512745288364, + 24892.162130685098, + 25100.22211463986, + 15280.694256799998, + 15337.7638081679, + 15400.243958093826, + 15468.134706577777, + 15541.436053619747, + 15620.14799921975, + 15704.270543377774, + 15793.803686093825, + 15888.7474273679, + 15989.1017672, + 16094.866705590124, + 16206.042242538271, + 16322.628378044443, + 16444.62511210864, + 16572.032444730863, + 16704.85037591111, + 16843.078905649385, + 16986.718033945683, + 17135.767760799998, + 17290.228086212344, + 17450.099010182716, + 17615.38053271111, + 17786.07265379753, + 17962.175373441973, + 18143.688691644442, + 18330.61260840494, + 18522.947123723454, + 18720.692237599997, + 18923.84795003457, + 19132.41426102716, + 19346.391170577772, + 19565.77867868642, + 19790.576785353085, + 20020.785490577782, + 20256.404794360493, + 20497.43469670123, + 20743.8751976, + 17763.346537999998, + 17846.202919590116, + 17934.469899738273, + 18028.14747844444, + 18127.23565570864, + 18231.734431530866, + 18341.643805911106, + 18456.96377884938, + 18577.69435034568, + 18703.8355204, + 18835.387289012342, + 18972.349656182716, + 19114.722621911107, + 19262.506186197526, + 19415.700349041977, + 19574.305110444442, + 19738.320470404935, + 19907.746428923456, + 20082.582985999994, + 20262.830141634568, + 20448.48789582716, + 20639.55624857778, + 20836.035199886417, + 21037.92474975308, + 21245.224898177774, + 21457.93564516049, + 21676.056990701236, + 21899.588934799995, + 22128.531477456792, + 22362.8846186716, + 22602.64835844444, + 22847.82269677531, + 23098.4076336642, + 23354.40316911111, + 23615.809303116053, + 23882.626035679015, + 24154.85336679999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_20_SP.yaml b/examples/ColmacCxA_20_SP.yaml deleted file mode 100644 index 77110ae..0000000 --- a/examples/ColmacCxA_20_SP.yaml +++ /dev/null @@ -1,4157 +0,0 @@ ---- -central_system: - external_inlet_height: 0.9895833333333334 - external_outlet_height: 0 - heat_source_configurations: - - heat_distribution: - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSCONDENSERWATERHEATSOURCE - performance: - coil_configuration: EXTERNAL - compressor_lockout_temperature_hysteresis: 0 - maximum_refrigerant_temperature: 344.26111111111106 - maximum_temperature: 373.15 - minimum_temperature: 277.59444444444443 - performance_map: - grid_variables: - evaporator_environment_dry_bulb_temperature: - - 277.59444444444443 - - 277.65 - - 278.15 - - 278.65 - - 279.15 - - 279.65 - - 280.15 - - 280.3723 - - 280.65 - - 281.15 - - 281.65 - - 282.15 - - 282.65 - - 283.15 - - 283.65 - - 284.15 - - 284.65 - - 285.15 - - 285.65 - - 286.15 - - 286.65 - - 287.15 - - 287.65 - - 288.15 - - 288.65 - - 288.70555559999997 - - 373.15 - heat_source_temperature: - - 273.15 - - 275.12530864197527 - - 277.1006172839506 - - 279.0759259259259 - - 281.0512345679012 - - 283.02654320987654 - - 285.0018518518518 - - 286.9771604938271 - - 288.95246913580246 - - 290.92777777777775 - - 292.9030864197531 - - 294.8783950617284 - - 296.8537037037037 - - 298.82901234567896 - - 300.8043209876543 - - 302.7796296296296 - - 304.75493827160494 - - 306.73024691358023 - - 308.7055555555555 - - 310.68086419753087 - - 312.65617283950616 - - 314.63148148148144 - - 316.6067901234568 - - 318.5820987654321 - - 320.55740740740737 - - 322.5327160493827 - - 324.508024691358 - - 326.4833333333333 - - 328.45864197530864 - - 330.4339506172839 - - 332.4092592592592 - - 334.38456790123456 - - 336.35987654320985 - - 338.3351851851852 - - 340.3104938271605 - - 342.2858024691358 - - 344.26111111111106 - outlet_temperature: - - 330.3722222222222 - - 338.15 - lookup_variables: - heating_capacity: - - 41192.99923874628 - - 41213.895875682894 - - 41232.70437061287 - - 41249.40659204656 - - 41263.96029521189 - - 41276.29912205447 - - 41286.33260123763 - - 41293.946148142306 - - 41299.00106486717 - - 41301.33454022845 - - 41300.759649760126 - - 41297.0653557138 - - 41290.01650705879 - - 41279.353839482035 - - 41264.793975388115 - - 41246.02942389937 - - 41222.728580855735 - - 41194.53572881478 - - 41161.07103705184 - - 41121.93056155985 - - 41076.68624504939 - - 41024.88591694876 - - 40966.05329340391 - - 40899.6879772784 - - 40825.265458153575 - - 40742.237112328316 - - 40650.03020281923 - - 40548.04787936061 - - 40435.669178404365 - - 40312.24902312013 - - 40177.11822339513 - - 40029.58347583431 - - 39868.9273637603 - - 39694.408357213324 - - 39505.26081295132 - - 39300.694974449885 - - 39079.89697190226 - - 41150.99741036255 - - 41212.74656646111 - - 41271.121216306994 - - 41326.10758801254 - - 41377.66779640774 - - 41425.739843040275 - - 41470.23761617547 - - 41511.050890796374 - - 41548.0453286036 - - 41581.0624780155 - - 41609.91977416808 - - 41634.41053891501 - - 41654.30398082761 - - 41669.34519519489 - - 41679.255164023496 - - 41683.73075603775 - - 41682.444726679685 - - 41675.04571810893 - - 41661.15825920282 - - 41640.38276555633 - - 41612.295539482104 - - 41576.448770010495 - - 41532.3705328895 - - 41479.564790584715 - - 41417.51139227952 - - 41345.66607387484 - - 41263.46045798938 - - 41170.30205395941 - - 41065.574257838896 - - 40948.63635239957 - - 40818.823507130655 - - 40675.44677823916 - - 40517.79310864973 - - 40345.12532800466 - - 40156.68215266392 - - 39951.678185705176 - - 39729.303916923694 - - 41251.21670011293 - - 41271.847843703414 - - 41290.39856781561 - - 41306.85037169446 - - 41321.16064130269 - - 41333.262649320626 - - 41343.06555514624 - - 41350.45440489527 - - 41355.29013140097 - - 41357.40955421441 - - 41356.62537960422 - - 41352.72620055674 - - 41345.47649677594 - - 41334.616634683545 - - 41319.86286741884 - - 41300.90733483879 - - 41277.418063518126 - - 41249.03896674913 - - 41215.38984454179 - - 41176.06638362379 - - 41130.64015744042 - - 41078.65862615468 - - 41019.64513664724 - - 40953.09892251638 - - 40878.49510407813 - - 40795.2846883661 - - 40702.89456913162 - - 40600.72752684367 - - 40488.16222868889 - - 40364.5532285716 - - 40229.230967113785 - - 40081.50177165505 - - 39920.64785625275 - - 39745.92732168183 - - 39556.57415543492 - - 39351.79823172236 - - 39130.78531147209 - - 41204.67161170059 - - 41266.14813016175 - - 41324.25482432621 - - 41378.97750378382 - - 41430.27786484207 - - 41478.09349052625 - - 41522.337850579155 - - 41562.90030146136 - - 41599.64608635109 - - 41632.41633514416 - - 41661.02806445411 - - 41685.27417761219 - - 41704.92346466719 - - 41719.7206023857 - - 41729.386154251886 - - 41733.61657046761 - - 41732.0841879524 - - 41724.437230343465 - - 41710.29980799562 - - 41689.27191798143 - - 41660.92944409106 - - 41624.82415683238 - - 41580.48371343089 - - 41527.41165782977 - - 41465.0874206899 - - 41392.966319389765 - - 41310.479558025574 - - 41217.034227411146 - - 41112.013305078 - - 40994.77565527533 - - 40864.65602896997 - - 40720.96506384643 - - 40562.98928430687 - - 40389.99110147115 - - 40201.20881317677 - - 39995.85660397888 - - 39773.124545150335 - - 41777.71064640568 - - 41795.94854881833 - - 41812.17637735077 - - 41826.37230786047 - - 41838.49040292248 - - 41848.46061182953 - - 41856.18877059202 - - 41861.55660193804 - - 41864.421715313336 - - 41864.617606881286 - - 41861.95365952296 - - 41856.2151428371 - - 41847.163213140084 - - 41834.53491346601 - - 41818.04317356658 - - 41797.376809911206 - - 41772.200525686945 - - 41742.1549107985 - - 41706.85644186829 - - 41665.89748223636 - - 41618.84628196045 - - 41565.24697781592 - - 41504.61959329586 - - 41436.460038610945 - - 41360.2401106896 - - 41275.40749317786 - - 41181.385756439435 - - 41077.57435755572 - - 40963.34864032572 - - 40838.059835266205 - - 40701.0350596115 - - 40551.5773173137 - - 40388.96549904248 - - 40212.45438218522 - - 40021.27463084697 - - 39814.63279585044 - - 39591.71131473598 - - 41690.36323140596 - - 41749.38076695967 - - 41805.071411188415 - - 41857.41720697987 - - 41906.3760839393 - - 41951.881858389745 - - 41993.844233371856 - - 42032.148798643975 - - 42066.6570306821 - - 42097.20629267987 - - 42123.60983454863 - - 42145.65679291734 - - 42163.1121911327 - - 42175.716939259 - - 42183.187834078235 - - 42185.21755909006 - - 42181.47468451181 - - 42171.60366727845 - - 42155.224851042614 - - 42131.93446617465 - - 42101.30462976252 - - 42062.883345611874 - - 42016.194504246036 - - 41960.737882905945 - - 41895.9891455503 - - 41821.39984285535 - - 41736.39741221512 - - 41640.38517774125 - - 41532.742350262975 - - 41412.82402732735 - - 41279.96119319894 - - 41133.460718860115 - - 40972.60536201078 - - 40796.653767068616 - - 40604.84046516888 - - 40396.375874164565 - - 40170.44629862631 - - 42308.75980816113 - - 42324.598027970496 - - 42338.49803661611 - - 42350.43468656784 - - 42360.3587170131 - - 42368.19675385706 - - 42373.85130972254 - - 42377.200783949964 - - 42378.09946259751 - - 42376.377518440975 - - 42371.841010973825 - - 42364.27188640718 - - 42353.42797766987 - - 42339.04300440832 - - 42320.82657298669 - - 42298.46417648678 - - 42271.617194708015 - - 42239.92289416757 - - 42202.99442810019 - - 42160.420836458376 - - 42111.76704591222 - - 42056.57386984953 - - 41994.35800837577 - - 41924.612048314026 - - 41846.80446320514 - - 41760.37961330749 - - 41664.75774559722 - - 41559.33499376817 - - 41443.48337823169 - - 41316.55080611698 - - 41177.86107127077 - - 41026.7138542575 - - 40862.384722359326 - - 40684.125129575965 - - 40491.16241662492 - - 40282.699810941245 - - 40057.91642667774 - - 42180.776177508626 - - 42237.32575672607 - - 42290.592809252936 - - 42340.55561127467 - - 42387.16832569435 - - 42430.36100213285 - - 42470.039576928546 - - 42506.08587313761 - - 42538.357600533796 - - 42566.68835560859 - - 42590.887621571084 - - 42610.74076834808 - - 42626.009052584 - - 42636.42961764099 - - 42641.71549359882 - - 42641.55559725491 - - 42635.614732124406 - - 42623.533588440085 - - 42604.92874315238 - - 42579.392659929385 - - 42546.49368915688 - - 42505.77606793831 - - 42456.75992009479 - - 42398.94125616506 - - 42331.7919734056 - - 42254.759855790464 - - 42167.268574011454 - - 42068.71768547797 - - 41958.482634317115 - - 41835.91475137371 - - 41700.341254210114 - - 41551.06524710644 - - 41387.365721060465 - - 41208.49755378761 - - 41013.691509720935 - - 40802.154240011216 - - 40573.068282526896 - - 42844.34777187292 - - 42857.78043676775 - - 42869.3482703336 - - 42879.02280165269 - - 42886.751446524875 - - 42892.45750746769 - - 42896.04017371637 - - 42897.37452122377 - - 42896.31151266044 - - 42892.677997414576 - - 42886.27671159206 - - 42876.886278016405 - - 42864.26120622882 - - 42848.131892488185 - - 42828.20461977101 - - 42804.16155777151 - - 42775.66076290155 - - 42742.33617829065 - - 42703.79763378602 - - 42659.63084595246 - - 42609.39741807256 - - 42552.634840146486 - - 42488.85648889211 - - 42417.55162774489 - - 42338.185406858116 - - 42250.19886310256 - - 42153.00892006678 - - 42046.00838805695 - - 41928.56596409689 - - 41800.02623192816 - - 41659.70966200995 - - 41506.91261151903 - - 41340.90732434999 - - 41160.94193111494 - - 40966.24044914376 - - 40756.00278248398 - - 40529.40472190073 - - 42675.90751707449 - - 42729.980828849286 - - 42780.81741023052 - - 42828.39177070144 - - 42872.654306462944 - - 42913.53130043364 - - 42950.92492224977 - - 42984.713228265224 - - 43014.750161551616 - - 43040.86555189817 - - 43062.86511581183 - - 43080.53045651713 - - 43093.61906395632 - - 43101.86431478934 - - 43104.97547239373 - - 43102.63768686471 - - 43094.51199501525 - - 43080.235320375876 - - 43059.42047319481 - - 43031.65615043797 - - 42996.50693578895 - - 42953.51329964894 - - 42902.19159913688 - - 42842.03407808925 - - 42772.5088670604 - - 42693.05998332211 - - 42603.10733086399 - - 42502.04670039331 - - 42389.24976933485 - - 42264.06410183127 - - 42125.813148742745 - - 41973.79624764717 - - 41807.2886228401 - - 41625.54138533472 - - 41427.78153286194 - - 41213.21194987034 - - 40981.01140752609 - - 43384.45714377461 - - 43395.478950557845 - - 43404.7108229651 - - 43412.12096669105 - - 43417.653474147955 - - 43421.228324465745 - - 43422.74138349204 - - 43422.06440379212 - - 43419.04502464894 - - 43413.50677206308 - - 43405.24905875281 - - 43394.04718415406 - - 43379.65233442043 - - 43361.791582423226 - - 43340.16788775135 - - 43314.4600967114 - - 43284.32294232764 - - 43249.38704434204 - - 43209.2589092141 - - 43163.52093012118 - - 43111.731386958156 - - 43053.42444633762 - - 42988.110161589844 - - 42915.27447276276 - - 42834.37920662194 - - 42744.862076650636 - - 42646.13668304977 - - 42537.592512737916 - - 42418.59493935134 - - 42288.485223243944 - - 42146.58051148733 - - 41992.173837870716 - - 41824.53412290106 - - 41642.90617380288 - - 41446.51068451846 - - 41234.544235707705 - - 41006.17929474818 - - 43175.753336909394 - - 43227.34273245759 - - 43275.74262557188 - - 43320.92375903336 - - 43362.83276234066 - - 43401.3921517102 - - 43436.50033007602 - - 43468.031587089805 - - 43495.83609912096 - - 43519.73992925652 - - 43539.54502730117 - - 43555.02922977726 - - 43565.94625992486 - - 43572.02572770167 - - 43572.973129783044 - - 43568.46984956199 - - 43558.17315714928 - - 43541.7162093732 - - 43518.70804977981 - - 43488.73360863279 - - 43451.3537029135 - - 43406.105036320994 - - 43352.50019927192 - - 43290.02766890065 - - 43218.15180905924 - - 43136.31287031733 - - 43043.92698996228 - - 42940.386191999125 - - 42825.05838715051 - - 42697.28737285684 - - 42556.3928332761 - - 42401.67033928397 - - 42232.391348473786 - - 42047.80320515658 - - 41847.12914036101 - - 41629.568271833436 - - 41394.29560403785 - - 43929.06954983972 - - 43937.67576442836 - - 43944.568458712405 - - 43949.7125149989 - - 43953.04870231248 - - 43954.49367639551 - - 43953.93997970802 - - 43951.25604142766 - - 43946.28617744975 - - 43938.85059038737 - - 43928.74536957111 - - 43915.74249104934 - - 43899.58981758808 - - 43880.01109867097 - - 43856.70597049935 - - 43829.34995599225 - - 43797.5944647863 - - 43761.066793235834 - - 43719.37012441286 - - 43672.08352810705 - - 43618.76196082567 - - 43558.936265793796 - - 43492.113172954065 - - 43417.77529896675 - - 43335.38114720991 - - 43244.36510777913 - - 43144.13745748776 - - 43034.08435986682 - - 42913.56786516491 - - 42781.92591034837 - - 42638.472319101194 - - 42482.496801825 - - 42313.26495563913 - - 42130.01826438054 - - 41931.97409860388 - - 41718.32571558147 - - 41488.24225930329 - - 43680.30874355901 - - 43729.40723641912 - - 43775.36488646767 - - 43818.14866978345 - - 43857.701449162996 - - 43893.94197412047 - - 43926.76488088769 - - 43956.04069241421 - - 43981.615818367136 - - 44003.31255513131 - - 44020.92908580925 - - 44034.2394802211 - - 44042.99369490469 - - 44046.91757311552 - - 44045.71284482677 - - 44039.0571267292 - - 44026.60392223136 - - 44007.9826214594 - - 43982.798501257115 - - 43950.632725186 - - 43911.04234352518 - - 43863.56029327153 - - 43807.69539813951 - - 43742.93236856125 - - 43668.731801686576 - - 43584.53018138297 - - 43489.73987823558 - - 43383.749149547206 - - 43265.92213933833 - - 43135.59887834708 - - 42992.0952840293 - - 42834.70316055842 - - 42662.69019882561 - - 42475.29997643965 - - 42271.75195772701 - - 42051.24149373184 - - 41812.93982221593 - - 44172.64527651253 - - 44180.176147460574 - - 44186.027958999315 - - 44190.16411585762 - - 44192.52390948206 - - 44193.02251803684 - - 44191.55100640383 - - 44187.976326182616 - - 44182.14131569037 - - 44173.86469996203 - - 44162.941090750064 - - 44149.14098652473 - - 44132.2107724739 - - 44111.87272050312 - - 44087.82498923558 - - 44059.74162401217 - - 44027.27255689141 - - 43990.043606649524 - - 43947.65647878035 - - 43899.68876549548 - - 43845.69394572406 - - 43785.20138511298 - - 43717.71633602678 - - 43642.71993754761 - - 43559.66921547542 - - 43467.997082327645 - - 43367.112337339546 - - 43256.399666463956 - - 43135.21964237137 - - 43002.908724450026 - - 42858.779258805764 - - 42702.119478262095 - - 42532.19350236023 - - 42348.241337358995 - - 42149.478876234905 - - 41935.09789868219 - - 41704.26607111265 - - 43906.14498711192 - - 43954.133954360295 - - 43999.00417262156 - - 44040.72094329877 - - 44079.22545451255 - - 44114.43478110135 - - 44146.241884621166 - - 44174.5156133457 - - 44199.1007022663 - - 44219.81777309202 - - 44236.463334249565 - - 44248.80978088326 - - 44256.605394855156 - - 44259.574344744935 - - 44257.41668584995 - - 44249.80836018523 - - 44236.401196483486 - - 44216.82291019504 - - 44190.67710348794 - - 44157.54326524783 - - 44116.97677107808 - - 44068.50888329972 - - 44011.64675095142 - - 43945.87340978951 - - 43870.64778228803 - - 43785.40467763865 - - 43689.554791750714 - - 43582.48470725125 - - 43463.556893484856 - - 43332.10970651399 - - 43187.457389118565 - - 43028.89007079628 - - 42855.67376776249 - - 42667.05038295018 - - 42462.23770601002 - - 42240.42941331031 - - 42000.795067937135 - - 44478.16563578153 - - 44484.352093206835 - - 44488.90296151718 - - 44491.779799632044 - - 44492.92005318843 - - 44492.23705454114 - - 44489.620022762545 - - 44484.93406364276 - - 44478.02016968952 - - 44468.6952201282 - - 44456.75198090191 - - 44441.95910467136 - - 44424.06113081496 - - 44402.77848542881 - - 44377.80748132663 - - 44348.82031803979 - - 44315.46508181739 - - 44277.365745626164 - - 44234.12216915046 - - 44185.31009879238 - - 44130.48116767167 - - 44069.16289562567 - - 44000.85868920949 - - 43925.047841695814 - - 43841.18553307509 - - 43748.70283005533 - - 43647.00668606224 - - 43535.47994123925 - - 43413.481322447384 - - 43280.34544326536 - - 43135.38280398961 - - 42977.8797916341 - - 42807.09867993058 - - 42622.27762932846 - - 42422.63068699474 - - 42207.34778681416 - - 41975.594749389114 - - 44189.56786330892 - - 44236.1691293419 - - 44279.679643848256 - - 44320.06261620465 - - 44357.2571425053 - - 44391.17820556224 - - 44421.71667490505 - - 44448.73930678106 - - 44472.08874415522 - - 44491.583516710154 - - 44507.018040846124 - - 44518.162619681105 - - 44524.76344305074 - - 44526.54258750827 - - 44523.19801632468 - - 44514.40357948857 - - 44499.80901370624 - - 44479.039942401636 - - 44451.69787571635 - - 44417.360210509665 - - 44375.58023035852 - - 44325.88710555756 - - 44267.785893119035 - - 44200.75753677287 - - 44124.25886696672 - - 44037.722600865796 - - 43940.55734235312 - - 43832.14758202922 - - 43711.85369721236 - - 43579.01195193854 - - 43432.93449696132 - - 43272.90936975196 - - 43098.200494499404 - - 42908.047682110235 - - 42701.66663020871 - - 42478.248923136794 - - 42236.96203195405 - - 45031.72506705341 - - 45035.48817146076 - - 45037.69513506109 - - 45038.30419338626 - - 45037.24946868575 - - 45034.4409699267 - - 45029.76459279393 - - 45023.0821196899 - - 45014.231219734786 - - 45003.02544876638 - - 44989.25424934014 - - 44972.68295072919 - - 44953.0527689244 - - 44930.08080663417 - - 44903.460053284696 - - 44872.85938501974 - - 44837.92356470078 - - 44798.27324190694 - - 44753.50495293503 - - 44703.19112079953 - - 44646.880055232534 - - 44584.095952683856 - - 44514.338896320965 - - 44437.08485602897 - - 44351.78568841069 - - 44257.86913678652 - - 44154.73883119467 - - 44041.774288390836 - - 43918.33091184852 - - 43783.73999175886 - - 43637.308705030606 - - 43478.320115290204 - - 43306.03317288181 - - 43119.682714867165 - - 42918.47946502573 - - 42701.61003385463 - - 42468.236918568626 - - 44703.52384218468 - - 44747.62221957393 - - 44788.681368384176 - - 44826.6607312898 - - 44861.495637682914 - - 44893.097303673305 - - 44921.352832088334 - - 44946.12521247313 - - 44967.253321090415 - - 44984.551920920625 - - 44997.81166166186 - - 45006.79907972982 - - 45011.25659825794 - - 45010.90252709731 - - 45005.43106281667 - - 44994.5122887024 - - 44977.79217475863 - - 44954.89257770705 - - 44925.411240987116 - - 44888.921794755835 - - 44844.97375588801 - - 44793.09252797599 - - 44732.77940132988 - - 44663.51155297741 - - 44584.742046663974 - - 44495.89983285259 - - 44396.389748724076 - - 44285.59251817678 - - 44162.864751826746 - - 44027.538947007735 - - 43878.92348777115 - - 43716.302644886004 - - 43538.93657583904 - - 43346.06132483466 - - 43136.88882279491 - - 42910.60688735951 - - 42666.37922288584 - - 45589.72652884855 - - 45591.06325349745 - - 45590.92480276561 - - 45589.26608879726 - - 45586.01791045429 - - 45581.086953316226 - - 45574.35578968031 - - 45565.68287856138 - - 45554.902565692035 - - 45541.82508352245 - - 45526.236551220514 - - 45507.898974671756 - - 45486.55024647936 - - 45461.904145964254 - - 45433.65033916494 - - 45401.45437883761 - - 45364.95770445618 - - 45323.77764221213 - - 45277.50740501469 - - 45225.71609249069 - - 45167.94869098471 - - 45103.72607355892 - - 45032.54499999318 - - 44953.878116785 - - 44867.17395714962 - - 44771.85694101987 - - 44667.32737504626 - - 44552.96145259702 - - 44428.11125375794 - - 44292.1047453326 - - 44144.2457808422 - - 43983.81410052549 - - 43810.06533133908 - - 43622.23098695712 - - 43419.51846777144 - - 43201.1110608916 - - 42966.167940144755 - - 45222.168845951725 - - 45263.75933520307 - - 45302.36355048567 - - 45337.937167771706 - - 45370.411749751074 - - 45399.6947458313 - - 45425.66949213762 - - 45448.1952115129 - - 45467.10701351769 - - 45482.2158944302 - - 45493.30873724629 - - 45500.14831167953 - - 45502.47327416107 - - 45499.998167839854 - - 45492.41342258236 - - 45479.38535497284 - - 45460.55616831307 - - 45435.54395262273 - - 45403.9426846389 - - 45365.32222781647 - - 45319.228332328006 - - 45265.18263506368 - - 45202.68265963135 - - 45131.20181635653 - - 45050.18940228246 - - 44959.07060116992 - - 44857.24648349752 - - 44744.09400646138 - - 44618.96601397541 - - 44481.19123667109 - - 44330.07429189763 - - 44164.89568372185 - - 43984.9118029283 - - 43789.354927019136 - - 43577.4332202142 - - 43348.330733451054 - - 43101.20740438483 - - 46152.14772610006 - - 46151.05561336421 - - 46148.5708077922 - - 46144.64489814063 - - 46139.20535988379 - - 46132.15555521361 - - 46123.37473303975 - - 46112.71802898945 - - 46100.016465407665 - - 46085.07695135701 - - 46067.68228261779 - - 46047.5911416879 - - 46024.53809778296 - - 45998.233606836264 - - 45968.36401149873 - - 45934.591541138965 - - 45896.55431184327 - - 45853.866326415526 - - 45806.11747437734 - - 45752.873531968005 - - 45693.67616214447 - - 45628.04291458126 - - 45555.46722567071 - - 45475.418418522706 - - 45387.34170296487 - - 45290.65817554244 - - 45184.76481951834 - - 45069.03450487318 - - 44942.81598830521 - - 44805.433913230336 - - 44656.18880978217 - - 44494.35709481193 - - 44319.19107188856 - - 44129.91893129862 - - 43925.744750046375 - - 43705.848491853736 - - 43469.38600716031 - - 45745.494060115336 - - 45784.5723240571 - - 45820.71870030304 - - 45853.885098123064 - - 45883.99931350491 - - 45910.96502915387 - - 45934.66181449299 - - 45954.94512566291 - - 45971.646305521965 - - 45984.572583646215 - - 45993.507076329275 - - 45998.20878658248 - - 45998.41260413485 - - 45993.829305433035 - - 45984.145553641385 - - 45969.023898641855 - - 45948.10277703413 - - 45920.99651213556 - - 45887.29531398111 - - 45846.565279323404 - - 45798.34839163282 - - 45742.16252109732 - - 45677.50142462258 - - 45603.83474583188 - - 45520.60801506626 - - 45427.242649384316 - - 45323.1359525624 - - 45207.66111509448 - - 45080.16721419219 - - 44939.979213784885 - - 44786.39796451952 - - 44618.7002037607 - - 44436.13855559081 - - 44237.941530809745 - - 44023.31352693518 - - 43791.43482820246 - - 43541.46160556448 - - 46718.96538348095 - - 46715.44254484821 - - 46710.61101304216 - - 46704.419053431804 - - 46696.79081810387 - - 46687.62634586264 - - 46676.80156223017 - - 46664.16827944616 - - 46649.55419646793 - - 46632.762898970475 - - 46613.57385934653 - - 46591.74243670639 - - 46566.99987687805 - - 46539.05331240724 - - 46507.585762557275 - - 46472.25613330913 - - 46432.69921736153 - - 46388.52569413077 - - 46339.32212975085 - - 46284.650977073456 - - 46224.05057566791 - - 46157.03515182123 - - 46083.09481853804 - - 46001.69557554069 - - 45912.279309269186 - - 45814.26379288117 - - 45707.04268625198 - - 45589.98553597465 - - 45462.43777535972 - - 45323.72072443562 - - 45173.13158994834 - - 45009.94346536143 - - 44833.4053308563 - - 44642.7420533319 - - 44437.15438640488 - - 44215.81897040957 - - 43977.88833239796 - - 46273.48968992081 - - 46310.052053703774 - - 46343.738347726394 - - 46374.49671455643 - - 46402.25118347941 - - 46426.90167049843 - - 46448.32397833429 - - 46466.369796425475 - - 46480.8667009281 - - 46491.61815471597 - - 46498.40350738053 - - 46500.9779952309 - - 46499.07274129391 - - 46492.39475531398 - - 46480.626933753265 - - 46463.42805979146 - - 46440.432803326185 - - 46411.25172097241 - - 46375.47125606301 - - 46332.65373864837 - - 46282.337385496634 - - 46224.03630009358 - - 46157.24047264269 - - 46081.41578006502 - - 45996.00398599941 - - 45900.42274080223 - - 45794.06558154761 - - 45676.301932027396 - - 45546.47710275091 - - 45403.91229094538 - - 45247.90458055548 - - 45077.72694224369 - - 44892.62823339011 - - 44691.8331980925 - - 44474.54246716626 - - 44239.932558144574 - - 43987.15587527814 - - 47290.15524540418 - - 47284.20036147654 - - 47277.02230115677 - - 47268.56600642626 - - 47258.75230598412 - - 47247.477915247066 - - 47234.61543634953 - - 47220.013358143595 - - 47203.49605619903 - - 47184.86379280323 - - 47163.89271696127 - - 47140.33486439591 - - 47113.918157547516 - - 47084.34640557422 - - 47051.29930435172 - - 47014.43243647347 - - 46973.3772712505 - - 46927.741164711566 - - 46877.10735960304 - - 46821.03498538902 - - 46759.05905825122 - - 46690.69048108907 - - 46615.41604351961 - - 46532.698421877554 - - 46441.97617921536 - - 46342.66376530301 - - 46234.1515166283 - - 46115.80565639659 - - 45986.96829453091 - - 45846.957427672045 - - 45695.06693917835 - - 45530.56659912589 - - 45352.70206430836 - - 45160.69487823716 - - 44953.74247114132 - - 44731.018159967614 - - 44491.67114838038 - - 46806.144960353355 - - 46840.18841145064 - - 46871.4130423858 - - 46899.76322902435 - - 46925.159233949584 - - 46947.49720646243 - - 46966.64918258146 - - 46982.46308504296 - - 46994.7627233008 - - 47003.34779352666 - - 47007.99387860969 - - 47008.452448156895 - - 47004.45085849276 - - 46995.692352659644 - - 46981.85606041737 - - 46962.5969982436 - - 46937.54606933351 - - 46906.310063600074 - - 46868.471657673836 - - 46823.58941490302 - - 46771.19778535356 - - 46710.80710580905 - - 46641.90359977069 - - 46563.949377457386 - - 46476.38243580577 - - 46378.616658469975 - - 46270.04181582199 - - 46150.02356495132 - - 46017.90344966528 - - 45872.99890048867 - - 45714.60323466413 - - 45541.98565615183 - - 45354.391255629744 - - 45151.04101049334 - - 44931.13178485589 - - 44693.83632954831 - - 44438.30328211908 - - 47865.69207602258 - - 47857.30439651623 - - 47847.78057451719 - - 47837.06222861928 - - 47825.066864134016 - - 47811.68787309048 - - 47796.794534235574 - - 47780.23201303372 - - 47761.8213616671 - - 47741.3595190355 - - 47718.619310756425 - - 47693.34944916501 - - 47665.27453331407 - - 47634.095048974086 - - 47599.48736863317 - - 47561.103751497154 - - 47518.57234348953 - - 47471.49717725137 - - 47419.45817214156 - - 47362.011134236534 - - 47298.68775633038 - - 47228.995617934954 - - 47152.41818527972 - - 47068.41481131179 - - 46976.42073569597 - - 46875.84708481471 - - 46766.08087176817 - - 46646.484996374114 - - 46516.39824516801 - - 46375.13529140296 - - 46221.98669504981 - - 46056.21890279697 - - 45877.07424805058 - - 45683.770950934406 - - 45475.5031182899 - - 45251.440743676205 - - 45010.72970737009 - - 47343.44811613796 - - 47374.97030434527 - - 47403.73235365121 - - 47429.674873219206 - - 47452.71435893027 - - 47472.74319338314 - - 47489.6296458942 - - 47503.2178724975 - - 47513.32791594475 - - 47519.75570570531 - - 47522.273057966304 - - 47520.62767563231 - - 47514.54314832586 - - 47503.71895238687 - - 47487.83045087313 - - 47466.52889355995 - - 47439.44141694043 - - 47406.17104422523 - - 47366.29668534269 - - 47319.37313693895 - - 47264.93108237764 - - 47202.47709174015 - - 47131.49362182546 - - 47051.43901615034 - - 46961.747504949126 - - 46861.82920517383 - - 46751.070120494136 - - 46628.83214129749 - - 46494.45304468879 - - 46347.246494490835 - - 46186.502041243926 - - 46011.48512220609 - - 45821.43706135304 - - 45615.57506937809 - - 45393.09224369227 - - 45153.157568424314 - - 44894.91591442048 - - 48445.54965922888 - - 48434.72900297415 - - 48422.86075524448 - - 48409.8832112461 - - 48395.71055290293 - - 48380.23284885648 - - 48363.31605446599 - - 48344.802011808366 - - 48324.50844967811 - - 48302.22898358749 - - 48277.73311576635 - - 48250.76623516224 - - 48221.04961744035 - - 48188.28042498362 - - 48152.13170689252 - - 48112.252398985336 - - 48068.26732379789 - - 48019.777190583714 - - 47966.35859531401 - - 47907.564020677695 - - 47842.921836081296 - - 47771.936297648965 - - 47694.08754822261 - - 47608.83161736175 - - 47515.60042134362 - - 47413.801763163014 - - 47302.81933253252 - - 47182.01270588228 - - 47050.71734636019 - - 46908.24460383179 - - 46753.88171488024 - - 46586.89180280639 - - 46406.513877628786 - - 46211.96283608362 - - 46002.42946162471 - - 45777.080424423635 - - 45535.05828136953 - - 47885.386421739655 - - 47914.38565917504 - - 47940.684870632555 - - 47964.22089857333 - - 47984.90647217624 - - 48002.63020733783 - - 48017.25660667218 - - 48028.626059511254 - - 48036.554841904464 - - 48040.83511661903 - - 48041.2349331398 - - 48037.49822766924 - - 48029.34482312753 - - 48016.47042915253 - - 47998.546642099696 - - 47975.22094504226 - - 47946.116707770976 - - 47910.8331867944 - - 47868.94552533867 - - 47820.00475334764 - - 47763.537787482805 - - 47699.04743112324 - - 47626.01237436589 - - 47543.88719402515 - - 47452.10235363324 - - 47350.06420343995 - - 47237.15498041278 - - 47112.73280823689 - - 46976.131697315046 - - 46826.66154476782 - - 46663.6081344333 - - 46486.23313686731 - - 46293.77410934331 - - 46085.44449585251 - - 45860.43362710363 - - 45617.90672052326 - - 45357.004880255416 - - 49029.7007986558 - - 49016.44755359715 - - 49002.23678519967 - - 48987.0034652819 - - 48970.65845238023 - - 48953.08849174855 - - 48934.15621535849 - - 48913.70014189937 - - 48891.534676778094 - - 48867.4501121193 - - 48841.21262676529 - - 48812.56428627597 - - 48781.22304292898 - - 48746.882735719606 - - 48709.21309036074 - - 48667.85971928308 - - 48622.444121634806 - - 48572.563683281915 - - 48517.79167680798 - - 48457.67726151432 - - 48391.74548341984 - - 48319.49727526113 - - 48240.409456492474 - - 48153.93473328581 - - 48059.50169853076 - - 47956.51483183453 - - 47844.35449952211 - - 47722.37695463603 - - 47589.91433693661 - - 47446.27467290174 - - 47290.74187572705 - - 47122.57574532574 - - 46941.01196832879 - - 46745.262118084764 - - 46534.51365465992 - - 46307.929924838165 - - 46064.650162121114 - - 48431.94616136335 - - 48458.42142246734 - - 48482.25820217958 - - 48503.38957625901 - - 48521.72450718222 - - 48537.147844143605 - - 48549.520323055054 - - 48558.67856654628 - - 48564.43508396448 - - 48566.57827137474 - - 48564.87241155961 - - 48559.057674019416 - - 48548.850114972076 - - 48533.9416773533 - - 48514.00019081633 - - 48488.669371732125 - - 48457.56882318933 - - 48420.29403499421 - - 48376.41638367075 - - 48325.4831324605 - - 48267.01743132288 - - 48200.51831693473 - - 48125.46071269067 - - 48041.29542870303 - - 47947.449161801786 - - 47843.32449553446 - - 47728.299900166414 - - 47601.72973268056 - - 47462.9442367775 - - 47311.24954287553 - - 47145.927668110584 - - 46966.23651633627 - - 46771.40987812382 - - 46560.657430762265 - - 46333.16473825811 - - 46088.093251335726 - - 45824.58030743695 - - 49618.11731767587 - - 49602.43244087196 - - 49585.881625983566 - - 49568.396521441675 - - 49549.88466239504 - - 49530.22947070998 - - 49509.29025497052 - - 49486.90221047833 - - 49462.87641925279 - - 49436.999850030916 - - 49409.035358267385 - - 49378.72168613454 - - 49345.77346252237 - - 49309.88120303862 - - 49270.71131000855 - - 49227.90607247527 - - 49181.083666199345 - - 49129.8381536592 - - 49073.73948405081 - - 49012.33349328785 - - 48945.1419040017 - - 48871.66232554127 - - 48791.3682539733 - - 48703.709072082114 - - 48608.11004936972 - - 48503.972342055764 - - 48390.67299307758 - - 48267.564932090165 - - 48133.976975466176 - - 47989.21382629595 - - 47832.556074387496 - - 47663.26019626644 - - 47480.55855517613 - - 47283.65940107753 - - 47071.74687064934 - - 46843.98098728783 - - 46599.49766110704 - - 48983.11263895379 - - 49007.06356048938 - - 49028.43897688198 - - 49047.16819718828 - - 49063.15641718277 - - 49076.28471935747 - - 49086.41007292221 - - 49093.365333804395 - - 49096.95924464913 - - 49096.97643481917 - - 49093.17742039493 - - 49085.29860417451 - - 49073.05227567365 - - 49056.12661112578 - - 49034.185673482 - - 49006.869412411055 - - 48973.79366429932 - - 48934.55015225096 - - 48888.70648608762 - - 48835.80616234883 - - 48775.368564291566 - - 48706.888961890654 - - 48629.838511838425 - - 48543.66425754506 - - 48447.7891291382 - - 48341.61194346331 - - 48224.507404083415 - - 48095.826101279315 - - 47954.89451204936 - - 47801.015000109655 - - 47633.46581589396 - - 47451.50109655353 - - 47254.35086595764 - - 47041.22103469287 - - 46811.29340006367 - - 46563.7256460921 - - 46297.65134351791 - - 50210.77005940161 - - 50192.65507702523 - - 50173.76725893702 - - 50154.034930180445 - - 50133.36230251655 - - 50111.62947442411 - - 50088.69243109952 - - 50064.38304445692 - - 50038.50907312801 - - 50010.85416246226 - - 49981.177844526705 - - 49949.21553810615 - - 49914.67854870295 - - 49877.25406853721 - - 49836.605176546684 - - 49792.370838386785 - - 49744.165906430586 - - 49691.58111976882 - - 49634.18310420989 - - 49571.51437227988 - - 49503.09332322259 - - 49428.4142429993 - - 49346.94730428914 - - 49258.13856648887 - - 49161.40997571283 - - 49056.1593647932 - - 48941.76045327959 - - 48817.5628474395 - - 48682.89204025788 - - 48537.04941143757 - - 48379.3122273989 - - 48208.93364127994 - - 48025.14269293643 - - 47827.14430894175 - - 47614.11930258693 - - 47385.22437388075 - - 47139.59210954957 - - 49538.87017819573 - - 49560.29705924836 - - 49579.21284306938 - - 49595.543072013315 - - 49609.18917515237 - - 49620.028468276454 - - 49627.914153893114 - - 49632.675321227594 - - 49634.116946222755 - - 49632.01989153916 - - 49626.14090655503 - - 49616.21262736624 - - 49601.94357678635 - - 49583.018164346555 - - 49559.09668629574 - - 49529.815325600466 - - 49494.786151944914 - - 49453.59712173101 - - 49405.81207807823 - - 49350.97075082381 - - 49288.58875652265 - - 49218.157598447244 - - 49139.144666587796 - - 49050.99323765224 - - 48953.122475066004 - - 48844.92742897241 - - 48725.779036232205 - - 48595.02412042401 - - 48451.98539184397 - - 48295.96144750599 - - 48126.22677114157 - - 47942.03173319989 - - 47742.602590847804 - - 47527.1414879699 - - 47294.826455168295 - - 47044.811409762864 - - 46776.22615579116 - - 50807.62888668537 - - 50787.085894023476 - - 50765.864685140776 - - 50743.890261693006 - - 50721.06351205372 - - 50697.26121131407 - - 50672.33602128285 - - 50646.11649048657 - - 50618.407054169395 - - 50588.98803429313 - - 50557.61563953727 - - 50524.021965298925 - - 50487.91499369296 - - 50448.97859355186 - - 50406.872520425735 - - 50361.23241658243 - - 50311.66981100739 - - 50257.77211940382 - - 50199.10264419241 - - 50135.20057451176 - - 50065.580986217945 - - 49989.7348418848 - - 49907.12899080377 - - 49817.206168984005 - - 49719.3849991523 - - 49613.05999075316 - - 49497.60153994866 - - 49372.35592961863 - - 49236.645329360515 - - 49089.767795489504 - - 48930.99727103835 - - 48759.583585757486 - - 48574.75245611508 - - 48375.705485296894 - - 48161.62016320642 - - 47931.64986646474 - - 47684.92385841069 - - 50099.2021225138 - - 50118.10592449134 - - 50134.56446881131 - - 50148.499531126 - - 50159.80877380545 - - 50168.365745937364 - - 50174.019883327026 - - 50176.59650849754 - - 50175.896830689504 - - 50171.697945861306 - - 50163.75283668898 - - 50151.79037256612 - - 50135.51530960413 - - 50114.60829063203 - - 50088.72584519644 - - 50057.50038956173 - - 50020.54022670987 - - 49977.42954634057 - - 49927.728424871144 - - 49870.972825436605 - - 49806.67459788959 - - 49734.32147880046 - - 49653.37709145719 - - 49563.28094586546 - - 49463.448438748565 - - 49353.27085354753 - - 49232.11536042101 - - 49099.32501624532 - - 48954.21876461443 - - 48796.091435840055 - - 48624.21374695148 - - 48437.83230169565 - - 48236.16959053728 - - 48018.42399065866 - - 47783.76976595974 - - 47531.35706705823 - - 47260.31193128942 - - 51408.662682119495 - - 51385.69434357322 - - 51362.14392541537 - - 51337.93310591418 - - 51312.95945005553 - - 51287.096409542966 - - 51260.19332279773 - - 51232.07541495872 - - 51202.54379788246 - - 51171.37547014324 - - 51138.323317032875 - - 51103.116110560935 - - 51065.45850945464 - - 51025.03105915889 - - 50981.49019183621 - - 50934.46822636683 - - 50883.573368348625 - - 50828.3897100971 - - 50768.47723064552 - - 50703.37179574474 - - 50632.585157863345 - - 50555.60495618745 - - 50471.894716620984 - - 50380.89385178549 - - 50282.017661020174 - - 50174.657330381866 - - 50058.179932645144 - - 49931.92842730218 - - 49795.22166056285 - - 49647.354365354666 - - 49487.597161322854 - - 49315.19655483026 - - 49129.374938957444 - - 48929.330593502535 - - 48714.23768498145 - - 48483.24626662769 - - 48235.482278392454 - - 50664.09083507251 - - 50680.47318170528 - - 50694.477541917164 - - 50706.02192465821 - - 50715.000225596355 - - 50721.282227116935 - - 50724.71359832321 - - 50725.11589503588 - - 50722.28655979352 - - 50715.99892185217 - - 50706.002197185735 - - 50692.02148848561 - - 50673.75778516093 - - 50650.88796333853 - - 50623.06478586284 - - 50589.916902296034 - - 50551.04884891786 - - 50506.04104872581 - - 50454.44981143498 - - 50395.8073334782 - - 50329.6216980059 - - 50255.37687488625 - - 50172.53272070494 - - 50080.524978765556 - - 49978.765279089115 - - 49866.64113841444 - - 49743.51596019797 - - 49608.72903461386 - - 49461.59553855382 - - 49301.40653562739 - - 49127.428976161624 - - 48938.90569720128 - - 48735.05542250886 - - 48515.07276256442 - - 48278.128214565804 - - 48023.36816242838 - - 47749.914876785304 - - 52013.839348036214 - - 51988.44889712082 - - 51962.57402032143 - - 51936.13307251867 - - 51909.02029531085 - - 51881.10581701387 - - 51852.23565266139 - - 51822.23170400477 - - 51790.89175951282 - - 51757.98949437231 - - 51723.27447048743 - - 51686.47213648018 - - 51647.28382769016 - - 51605.38676617466 - - 51560.4340607086 - - 51512.054706784664 - - 51459.85358661306 - - 51403.41146912176 - - 51342.28500995639 - - 51276.0067514802 - - 51204.08512277419 - - 51126.004439636876 - - 51041.22490458459 - - 50949.182606851275 - - 50849.2895223885 - - 50740.93351386559 - - 50623.47833066944 - - 50496.26360890466 - - 50358.60487139348 - - 50209.79352767591 - - 50049.09687400952 - - 49875.75809336951 - - 49688.99625544888 - - 49488.00631665821 - - 49271.959120125735 - - 49040.00139569743 - - 48791.25575993683 - - 51233.51769877634 - - 51247.38087611714 - - 51258.93476993633 - - 51268.09362248186 - - 51274.74756271932 - - 51278.76260633197 - - 51279.98065572077 - - 51278.21950000429 - - 51273.27281501884 - - 51264.9101633183 - - 51252.8769941743 - - 51236.89464357608 - - 51216.660334230575 - - 51191.84717556239 - - 51162.10416371375 - - 51127.0561815446 - - 51086.30399863253 - - 51039.42427127278 - - 50985.96954247827 - - 50925.46824197961 - - 50857.42468622505 - - 50781.31907838046 - - 50696.60750832945 - - 50602.721952673295 - - 50499.07027473087 - - 50385.03622453879 - - 50259.979438851224 - - 50123.23544114019 - - 49974.11564159515 - - 49811.90733712344 - - 49635.87371134992 - - 49445.25383461714 - - 49239.262663985384 - - 49017.091043232525 - - 48777.905702854136 - - 48520.8492600635 - - 48245.04021879143 - - 52623.12580650763 - - 52595.31704585255 - - 52567.123030159375 - - 52538.45879092106 - - 52509.21524634839 - - 52479.259201369634 - - 52448.43334763089 - - 52416.55626349581 - - 52383.42241404577 - - 52348.802151079806 - - 52312.44171311459 - - 52274.063225384474 - - 52233.36469984145 - - 52190.020035155256 - - 52143.67901671321 - - 52093.96731662036 - - 52040.486493699325 - - 51982.8139934905 - - 51920.503148251875 - - 51853.08317695914 - - 51780.05918530568 - - 51700.91216570242 - - 51615.098997278095 - - 51522.052445879024 - - 51421.18116406924 - - 51311.86969113037 - - 51193.478453061754 - - 51065.34376258042 - - 50926.77781912104 - - 50777.06870883592 - - 50615.48040459509 - - 50441.25276598616 - - 50253.60153931455 - - 50051.71835760317 - - 49834.77074059271 - - 49601.9020947415 - - 49352.23171322555 - - 51807.46311626966 - - 51818.81007269367 - - 51827.91788015806 - - 51834.69701420851 - - 51839.03383710847 - - 51840.79059783899 - - 51839.80543209878 - - 51835.89236230423 - - 51828.84129758941 - - 51818.41803380602 - - 51804.36425352349 - - 51786.39752602883 - - 51764.21130732678 - - 51737.474940139735 - - 51705.83365390771 - - 51668.908564788486 - - 51626.29667565738 - - 51577.57087610745 - - 51522.2799424494 - - 51459.94853771169 - - 51390.07721164024 - - 51312.142400698875 - - 51225.59642806886 - - 51129.86750364933 - - 51024.35972405692 - - 50908.453072626064 - - 50781.50341940875 - - 50642.842521174694 - - 50491.77802141126 - - 50327.593450323504 - - 50149.54822483412 - - 49956.87764858342 - - 49748.7929119295 - - 49524.48109194803 - - 49283.10515243235 - - 49023.803943893516 - - 48745.69220356023 - - 53236.48799934578 - - 53206.26530069462 - - 53175.75803496953 - - 53144.87791027589 - - 53113.51252143682 - - 53081.52534999313 - - 53048.75576420318 - - 53015.01901904311 - - 52980.10625620665 - - 52943.78450410525 - - 52905.79667786797 - - 52865.86157934159 - - 52823.67389709049 - - 52778.90420639682 - - 52731.19896926029 - - 52680.18053439832 - - 52625.44713724598 - - 52566.57289995607 - - 52503.107831398935 - - 52434.57782716267 - - 52360.484669553094 - - 52280.30602759349 - - 52193.49545702505 - - 52099.48240030647 - - 51997.67218661413 - - 51887.446031842155 - - 51768.16103860224 - - 51639.15019622381 - - 51499.7223807539 - - 51349.162354957305 - - 51186.73076831638 - - 51011.664157031206 - - 50823.17494401949 - - 50620.45143891669 - - 50402.65783807577 - - 50168.934224567565 - - 49918.3965681804 - - 52385.906509936656 - - 52394.740856141565 - - 52401.40761961147 - - 52405.813509189866 - - 52407.84112043788 - - 52407.348935634494 - - 52404.17132377612 - - 52398.11854057703 - - 52388.976728468995 - - 52376.507916601586 - - 52360.45002084197 - - 52340.516843774996 - - 52316.39807470315 - - 52287.75928964663 - - 52254.241951343276 - - 52215.46340924861 - - 52171.016899535796 - - 52120.47154509564 - - 52063.37235553671 - - 51999.2402271851 - - 51927.57194308477 - - 51847.84017299707 - - 51759.49347340128 - - 51661.956287494155 - - 51554.62894519027 - - 51436.887663121735 - - 51308.08454463839 - - 51167.547579807746 - - 51014.580645414935 - - 50848.463504962805 - - 50668.45180867189 - - 50473.77709348021 - - 50263.646783043776 - - 50037.244187735894 - - 49793.72850464784 - - 49532.23481758838 - - 49251.874097084044 - - 53853.89088810264 - - 53821.25919231314 - - 53788.44513453216 - - 53755.35709947757 - - 53721.87935858485 - - 53687.8720700071 - - 53653.17127861522 - - 53617.588915997694 - - 53580.912800460675 - - 53542.906637028 - - 53503.31001744113 - - 53461.83842015925 - - 53418.18321035915 - - 53372.01163993537 - - 53322.9668475 - - 53270.66785838291 - - 53214.709584631564 - - 53154.6628250111 - - 53090.07426500432 - - 53020.46647681174 - - 52945.3379193515 - - 52864.1629382594 - - 52776.39176588891 - - 52681.4505213112 - - 52578.741210315005 - - 52467.64172540693 - - 52347.50584581098 - - 52217.66323746902 - - 52077.41945304054 - - 51926.05593190262 - - 51762.830000150134 - - 51586.97487059548 - - 51397.69964276884 - - 51194.18930291797 - - 50975.604724008335 - - 50741.0826657231 - - 50489.73577446303 - - 52968.82632190159 - - 52975.152330907506 - - 52979.38375506567 - - 52981.42353651734 - - 52981.15050412155 - - 52978.419373454926 - - 52973.06074681176 - - 52964.88111320407 - - 52953.662848361484 - - 52939.16421473129 - - 52921.11936147849 - - 52899.23832448575 - - 52873.20702635327 - - 52842.68727639915 - - 52807.316770658916 - - 52766.70909188594 - - 52720.45370955117 - - 52668.11597984323 - - 52609.23714566841 - - 52543.33433665069 - - 52469.9005691317 - - 52388.40474617073 - - 52298.29165754472 - - 52198.981979748336 - - 52089.87227599381 - - 51970.334996211204 - - 51839.71847704803 - - 51697.34694186962 - - 51542.52050075891 - - 51374.51515051657 - - 51192.58277466086 - - 50995.95114342769 - - 50783.8239137707 - - 50555.38062936119 - - 50309.77672058807 - - 50046.14350455801 - - 49763.588185095214 - - 53922.739134711686 - - 53889.84010207234 - - 53856.77015722023 - - 53823.437315607625 - - 53789.725479404435 - - 53755.49443749822 - - 53720.57986549424 - - 53684.79332571542 - - 53647.92226720231 - - 53609.73002571316 - - 53569.955823723896 - - 53528.31477042807 - - 53484.49786173691 - - 53438.17198027936 - - 53388.97989540194 - - 53336.54026316892 - - 53280.44762636217 - - 53220.2724144813 - - 53155.56094374345 - - 53085.835417083596 - - 53010.59392415428 - - 52929.31044132575 - - 52841.43483168584 - - 52746.39284504018 - - 52643.586117911924 - - 52532.39217354203 - - 52412.16442188899 - - 52282.232159629064 - - 52141.900570156125 - - 51990.450723581715 - - 51827.13957673509 - - 51651.19997316307 - - 51461.84064313026 - - 51258.24620361883 - - 51039.57715832867 - - 50804.96989767736 - - 50553.53669880007 - - 53033.87059451183 - - 53039.91819169879 - - 53043.87940329514 - - 53045.6567529194 - - 53045.12865090773 - - 53042.14939431401 - - 53036.549166909695 - - 53028.134039184 - - 53016.685968343736 - - 53001.96279831348 - - 52983.698259735305 - - 52961.60196996914 - - 52935.35943309241 - - 52904.63203990033 - - 52869.05706790573 - - 52828.24768133909 - - 52781.79293114861 - - 52729.257755000064 - - 52670.18297727698 - - 52604.08530908054 - - 52530.45734822952 - - 52448.76757926048 - - 52358.46037342749 - - 52258.955988702466 - - 52149.65056977481 - - 52029.916148051765 - - 51899.100641658064 - - 51756.52785543626 - - 51601.49748094648 - - 51433.28509646652 - - 51251.14216699191 - - 51054.29604423574 - - 50841.94996662886 - - 50613.28305931972 - - 50367.45033417448 - - 50103.58268977697 - - 49820.786911428666 - - 153036.3194145896 - - 153133.5361422717 - - 153269.63657130598 - - 153443.967433906 - - 153655.85134900283 - - 153904.5868222457 - - 154189.44824600127 - - 154509.6858993536 - - 154864.5259481047 - - 155253.17044477424 - - 155674.79732859944 - - 156128.5604255352 - - 156613.5894482543 - - 157128.98999614685 - - 157673.84355532084 - - 158247.2074986018 - - 158848.1150855332 - - 159475.57546237583 - - 160128.57366210822 - - 160806.07060442676 - - 161507.00309574543 - - 162230.28382919566 - - 162974.80138462674 - - 163739.4202286057 - - 164522.98071441715 - - 165324.29908206328 - - 166142.16745826395 - - 166975.35385645684 - - 167822.60217679729 - - 168682.632206158 - - 169554.13961812964 - - 170435.79597302058 - - 171326.24871785665 - - 172224.12118638147 - - 173128.01259905615 - - 174036.49806305981 - - 174948.1285722889 - - 163620.72679160384 - - 163806.83867944442 - - 164023.75845925507 - - 164270.75250050367 - - 164547.06305937638 - - 164851.90827877683 - - 165184.48218832634 - - 165543.95470436383 - - 165929.47162994585 - - 166340.1546548468 - - 166775.10135555852 - - 167233.38519529073 - - 167714.05552397072 - - 168216.13757824342 - - 168738.63248147143 - - 169280.51724373485 - - 169840.74476183194 - - 170418.2438192782 - - 171011.91908630685 - - 171620.6511198689 - - 172243.29636363298 - - 172878.6871479853 - - 173525.6316900296 - - 174182.91409358787 - - 174849.29434919928 - - 175523.5083341206 - - 176204.2678123266 - - 176890.26043450928 - - 177580.14973807902 - - 178272.57514716304 - - 178966.1519726067 - - 179659.47141197298 - - 180351.10054954255 - - 181039.58235631342 - - 181723.43569000176 - - 182401.15529504116 - - 183071.21180258258 - input_power: - - 18788.081517599996 - - 18791.009260612343 - - 18799.347602182712 - - 18813.09654231111 - - 18832.256080997533 - - 18856.826218241975 - - 18886.80695404444 - - 18922.198288404936 - - 18963.000221323455 - - 19009.212752799995 - - 19060.83588283457 - - 19117.869611427162 - - 19180.313938577776 - - 19248.168864286425 - - 19321.434388553087 - - 19400.110511377778 - - 19484.197232760493 - - 19573.69455270123 - - 19668.602471199996 - - 19768.92098825679 - - 19874.6501038716 - - 19985.789818044443 - - 20102.340130775312 - - 20224.301042064195 - - 20351.672551911106 - - 20484.45466031605 - - 20622.647367279013 - - 20766.250672799997 - - 20915.264576879013 - - 21069.689079516047 - - 21229.524180711105 - - 21394.769880464195 - - 21565.426178775306 - - 21741.493075644445 - - 21922.970571071608 - - 22109.858665056796 - - 22302.15735759999 - - 19767.4136196 - - 19777.65958199012 - - 19793.316142938267 - - 19814.38330244444 - - 19840.86106050864 - - 19872.74941713086 - - 19910.048372311107 - - 19952.757926049384 - - 20000.878078345682 - - 20054.408829199998 - - 20113.35017861234 - - 20177.702126582717 - - 20247.464673111106 - - 20322.637818197527 - - 20403.221561841976 - - 20489.21590404444 - - 20580.620844804936 - - 20677.43638412345 - - 20779.662522 - - 20887.299258434567 - - 21000.34659342715 - - 21118.804526977772 - - 21242.67305908642 - - 21371.952189753083 - - 21506.641918977773 - - 21646.74224676049 - - 21792.25317310123 - - 21943.174697999995 - - 22099.506821456784 - - 22261.2495434716 - - 22428.40286404444 - - 22600.966783175307 - - 22778.941300864197 - - 22962.32641711111 - - 23151.122131916043 - - 23345.328445279014 - - 23544.94535719999 - - 18794.435793085995 - - 18797.395013893896 - - 18805.764833259826 - - 18819.545251183772 - - 18838.73626766575 - - 18863.337882705753 - - 18893.35009630377 - - 18928.77290845983 - - 18969.606319173898 - - 19015.850328445995 - - 19067.50493627612 - - 19124.570142664274 - - 19187.045947610437 - - 19254.93235111464 - - 19328.229353176863 - - 19406.936953797107 - - 19491.055152975376 - - 19580.583950711676 - - 19675.52334700599 - - 19775.87334185834 - - 19881.633935268714 - - 19992.805127237105 - - 20109.38691776353 - - 20231.37930684797 - - 20358.782294490433 - - 20491.595880690933 - - 20629.820065449454 - - 20773.454848765992 - - 20922.500230640566 - - 21076.956211073157 - - 21236.822790063772 - - 21402.09996761242 - - 21572.787743719084 - - 21748.88611838378 - - 21930.395091606493 - - 22117.31466338723 - - 22309.644833725994 - - 19774.641918445996 - - 19784.930096196116 - - 19800.62887250427 - - 19821.738247370442 - - 19848.258220794636 - - 19880.188792776862 - - 19917.529963317105 - - 19960.281732415377 - - 20008.44410007168 - - 20062.017066285993 - - 20121.000631058338 - - 20185.394794388718 - - 20255.199556277104 - - 20330.414916723526 - - 20411.040875727973 - - 20497.07743329044 - - 20588.524589410932 - - 20685.382344089452 - - 20787.65069732599 - - 20895.329649120562 - - 21008.419199473152 - - 21126.91934838377 - - 21250.83009585242 - - 21380.151441879083 - - 21514.88338646377 - - 21655.025929606487 - - 21800.57907130723 - - 21951.542811565992 - - 22107.917150382786 - - 22269.7020877576 - - 22436.897623690435 - - 22609.503758181305 - - 22787.520491230192 - - 22970.94782283711 - - 23159.78575300205 - - 23354.03428172501 - - 23553.693409005988 - - 18851.184824599994 - - 18854.427345567903 - - 18863.080465093823 - - 18877.144183177774 - - 18896.618499819753 - - 18921.503415019757 - - 18951.79892877778 - - 18987.505041093827 - - 19028.6217519679 - - 19075.1490614 - - 19127.086969390122 - - 19184.435475938273 - - 19247.19458104444 - - 19315.36428470864 - - 19388.944586930862 - - 19467.93548771111 - - 19552.336987049384 - - 19642.14908494568 - - 19737.371781399994 - - 19838.005076412344 - - 19944.048969982712 - - 20055.503462111108 - - 20172.36855279753 - - 20294.64424204197 - - 20422.330529844436 - - 20555.42741620494 - - 20693.93490112346 - - 20837.852984600006 - - 20987.181666634573 - - 21141.92094722716 - - 21302.070826377774 - - 21467.631304086422 - - 21638.602380353084 - - 21814.98405517778 - - 21996.776328560496 - - 22183.97920050124 - - 22376.592671 - - 19839.257160200006 - - 19849.925276190123 - - 19866.00399073827 - - 19887.493303844447 - - 19914.393215508644 - - 19946.703725730862 - - 19984.42483451111 - - 20027.55654184938 - - 20076.098847745678 - - 20130.051752199997 - - 20189.415255212345 - - 20254.189356782714 - - 20324.37405691111 - - 20399.96935559753 - - 20480.975252841974 - - 20567.39174864444 - - 20659.21884300494 - - 20756.456535923455 - - 20859.104827399995 - - 20967.16371743457 - - 21080.63320602716 - - 21199.513293177777 - - 21323.80397888642 - - 21453.50526315308 - - 21588.617145977772 - - 21729.139627360488 - - 21875.07270730123 - - 22026.4163858 - - 22183.17066285679 - - 22345.335538471605 - - 22512.911012644436 - - 22685.897085375313 - - 22864.2937566642 - - 23048.101026511118 - - 23237.31889491605 - - 23431.947361879014 - - 23631.9864274 - - 18907.142849965996 - - 18910.6686710939 - - 18919.60509077982 - - 18933.952109023776 - - 18953.709725825753 - - 18978.87794118575 - - 19009.456755103773 - - 19045.446167579823 - - 19086.8461786139 - - 19133.656788205994 - - 19185.87799635612 - - 19243.50980306427 - - 19306.552208330442 - - 19375.005212154636 - - 19448.868814536858 - - 19528.14301547711 - - 19612.82781497538 - - 19702.923213031678 - - 19798.429209645994 - - 19899.34580481835 - - 20005.67299854871 - - 20117.410790837108 - - 20234.55918168353 - - 20357.118171087972 - - 20485.08775905044 - - 20618.467945570937 - - 20757.25873064945 - - 20901.460114285997 - - 21051.072096480566 - - 21206.09467723316 - - 21366.527856543773 - - 21532.37163441242 - - 21703.626010839085 - - 21880.290985823776 - - 22062.3665593665 - - 22249.85273146724 - - 22442.749502125997 - - 19903.081395806 - - 19914.12945003612 - - 19930.588102824266 - - 19952.457354170445 - - 19979.737204074638 - - 20012.427652536862 - - 20050.528699557104 - - 20094.04034513538 - - 20142.962589271676 - - 20197.295431965995 - - 20257.038873218342 - - 20322.192913028714 - - 20392.757551397106 - - 20468.732788323527 - - 20550.118623807975 - - 20636.91505785044 - - 20729.122090450932 - - 20826.73972160945 - - 20929.767951325997 - - 21038.20677960057 - - 21152.056206433157 - - 21271.31623182377 - - 21395.98685577242 - - 21526.06807827908 - - 21661.55989934377 - - 21802.46231896649 - - 21948.775337147235 - - 22100.49895388599 - - 22257.633169182784 - - 22420.177983037604 - - 22588.133395450437 - - 22761.499406421306 - - 22940.276015950196 - - 23124.463224037114 - - 23314.06103068205 - - 23509.06943588501 - - 23709.488439645993 - - 18962.309869184 - - 18966.1189904719 - - 18975.33871031783 - - 18989.969028721775 - - 19010.009945683752 - - 19035.461461203748 - - 19066.323575281775 - - 19102.596287917822 - - 19144.2795991119 - - 19191.373508863995 - - 19243.878017174124 - - 19301.793124042273 - - 19365.11882946844 - - 19433.855133452642 - - 19508.00203599486 - - 19587.55953709511 - - 19672.527636753384 - - 19762.906334969673 - - 19858.695631744 - - 19959.895527076344 - - 20066.506020966717 - - 20178.527113415108 - - 20295.958804421538 - - 20418.80109398597 - - 20547.053982108442 - - 20680.717468788935 - - 20819.791554027455 - - 20964.276237824 - - 21114.171520178566 - - 21269.477401091157 - - 21430.193880561776 - - 21596.320958590422 - - 21767.858635177086 - - 21944.80691032178 - - 22127.165784024495 - - 22314.935256285233 - - 22508.115327104 - - 19966.114625264 - - 19977.54261773412 - - 19994.38120876227 - - 20016.630398348443 - - 20044.29018649264 - - 20077.36057319486 - - 20115.841558455108 - - 20159.733142273377 - - 20209.035324649674 - - 20263.748105583993 - - 20323.871485076343 - - 20389.405463126717 - - 20460.350039735105 - - 20536.705214901533 - - 20618.47098862598 - - 20705.647360908442 - - 20798.23433174894 - - 20896.231901147454 - - 20999.640069103996 - - 21108.458835618563 - - 21222.68820069116 - - 21342.328164321774 - - 21467.378726510426 - - 21597.83988725708 - - 21733.711646561776 - - 21874.994004424494 - - 22021.68696084523 - - 22173.790515823996 - - 22331.304669360783 - - 22494.229421455602 - - 22662.56477210844 - - 22836.31072131931 - - 23015.4672690882 - - 23200.03441541511 - - 23390.012160300048 - - 23585.400503743007 - - 23786.19944574399 - - 19016.68588225399 - - 19020.778303701903 - - 19030.281323707823 - - 19045.194942271777 - - 19065.519159393752 - - 19091.253975073752 - - 19122.399389311773 - - 19158.955402107822 - - 19200.9220134619 - - 19248.299223373997 - - 19301.087031844123 - - 19359.285438872274 - - 19422.894444458438 - - 19491.914048602637 - - 19566.34425130486 - - 19646.185052565113 - - 19731.436452383383 - - 19822.098450759684 - - 19918.171047693995 - - 20019.654243186345 - - 20126.548037236713 - - 20238.85242984511 - - 20356.567421011525 - - 20479.693010735973 - - 20608.22919901844 - - 20742.17598585894 - - 20881.533371257454 - - 21026.301355213996 - - 21176.47993772857 - - 21332.069118801155 - - 21493.068898431775 - - 21659.47927662042 - - 21831.300253367084 - - 22008.531828671777 - - 22191.174002534495 - - 22379.226774955234 - - 22572.690145933997 - - 20028.356848573996 - - 20040.164779284118 - - 20057.38330855226 - - 20080.01243637844 - - 20108.052162762637 - - 20141.50248770486 - - 20180.363411205104 - - 20224.634933263376 - - 20274.317053879673 - - 20329.409773053994 - - 20389.913090786344 - - 20455.827007076718 - - 20527.151521925105 - - 20603.886635331528 - - 20686.03234729597 - - 20773.588657818436 - - 20866.555566898936 - - 20964.93307453745 - - 21068.721180733995 - - 21177.91988548857 - - 21292.529188801156 - - 21412.549090671775 - - 21537.979591100415 - - 21668.820690087083 - - 21805.07238763177 - - 21946.734683734496 - - 22093.807578395234 - - 22246.291071613996 - - 22404.185163390786 - - 22567.4898537256 - - 22736.205142618437 - - 22910.331030069305 - - 23089.867516078193 - - 23274.81460064511 - - 23465.172283770044 - - 23660.94056545301 - - 23862.119445693996 - - 19070.270889175998 - - 19074.6466107839 - - 19084.432930949824 - - 19099.62984967378 - - 19120.237366955753 - - 19146.25548279575 - - 19177.684197193776 - - 19214.523510149833 - - 19256.7734216639 - - 19304.433931736 - - 19357.505040366123 - - 19415.986747554274 - - 19479.879053300443 - - 19549.181957604636 - - 19623.895460466858 - - 19704.019561887108 - - 19789.55426186538 - - 19880.499560401677 - - 19976.855457495996 - - 20078.62195314835 - - 20185.799047358712 - - 20298.386740127105 - - 20416.385031453534 - - 20539.793921337976 - - 20668.613409780442 - - 20802.843496780937 - - 20942.484182339453 - - 21087.535466455996 - - 21237.99734913057 - - 21393.869830363157 - - 21555.152910153774 - - 21721.84658850242 - - 21893.95086540909 - - 22071.46574087378 - - 22254.391214896496 - - 22442.72728747723 - - 22636.473958615996 - - 20089.808065735997 - - 20101.99593468612 - - 20119.594402194274 - - 20142.603468260437 - - 20171.02313288464 - - 20204.85339606686 - - 20244.094257807104 - - 20288.745718105387 - - 20338.80777696168 - - 20394.280434375996 - - 20455.163690348345 - - 20521.457544878715 - - 20593.16199796711 - - 20670.277049613524 - - 20752.802699817974 - - 20840.73894858044 - - 20934.085795900937 - - 21032.843241779454 - - 21137.011286216 - - 21246.58992921057 - - 21361.579170763154 - - 21481.979010873772 - - 21607.789449542423 - - 21739.010486769082 - - 21875.64212255377 - - 22017.68435689649 - - 22165.137189797235 - - 22318.000621255997 - - 22476.274651272794 - - 22639.9592798476 - - 22809.054506980443 - - 22983.560332671306 - - 23163.4767569202 - - 23348.803779727117 - - 23539.541401092047 - - 23735.68962101501 - - 23937.248439495994 - - 19093.840763826407 - - 19098.342440685443 - - 19108.254716102507 - - 19123.577590077588 - - 19144.311062610705 - - 19170.455133701842 - - 19202.009803350997 - - 19238.975071558187 - - 19281.350938323394 - - 19329.137403646633 - - 19382.334467527893 - - 19440.942129967178 - - 19504.96039096448 - - 19574.389250519816 - - 19649.228708633178 - - 19729.478765304564 - - 19815.139420533967 - - 19906.210674321403 - - 20002.69252666685 - - 20104.58497757034 - - 20211.888027031844 - - 20324.601675051374 - - 20442.725921628935 - - 20566.260766764506 - - 20695.206210458113 - - 20829.562252709744 - - 20969.3288935194 - - 21114.50613288708 - - 21265.093970812784 - - 21421.09240729651 - - 21582.50144233826 - - 21749.321075938045 - - 21921.551308095848 - - 22099.192138811675 - - 22282.243568085527 - - 22470.705595917403 - - 22664.578222307304 - - 20116.875257459113 - - 20129.232046950736 - - 20146.999435000387 - - 20170.177421608074 - - 20198.766006773767 - - 20232.765190497495 - - 20272.174972779245 - - 20316.995353619026 - - 20367.22633301682 - - 20422.867910972644 - - 20483.920087486495 - - 20550.382862558374 - - 20622.25623618827 - - 20699.540208376195 - - 20782.23477912214 - - 20870.339948426114 - - 20963.855716288115 - - 21062.782082708134 - - 21167.119047686185 - - 21276.866611222256 - - 21392.024773316356 - - 21512.593533968477 - - 21638.572893178625 - - 21769.96285094679 - - 21906.76340727298 - - 22048.974562157204 - - 22196.59631559945 - - 22349.62866759972 - - 22508.07161815801 - - 22671.925167274334 - - 22841.189314948675 - - 23015.864061181044 - - 23195.94940597144 - - 23381.44534931986 - - 23572.351891226303 - - 23768.669031690762 - - 23970.396770713258 - - 19123.064889949994 - - 19127.7239117179 - - 19137.793532043826 - - 19153.273750927776 - - 19174.16456836975 - - 19200.465984369752 - - 19232.17799892777 - - 19269.300612043822 - - 19311.833823717898 - - 19359.777633949994 - - 19413.132042740122 - - 19471.89705008827 - - 19536.072655994434 - - 19605.658860458636 - - 19680.655663480862 - - 19761.06306506111 - - 19846.881065199384 - - 19938.10966389568 - - 20034.748861149998 - - 20136.798656962343 - - 20244.259051332716 - - 20357.130044261106 - - 20475.41163574753 - - 20599.103825791968 - - 20728.20661439444 - - 20862.72000155494 - - 21002.643987273455 - - 21147.978571549997 - - 21298.72375438457 - - 21454.879535777156 - - 21616.445915727774 - - 21783.42289423642 - - 21955.81047130308 - - 22133.608646927783 - - 22316.817421110492 - - 22505.43679385123 - - 22699.466765149995 - - 20150.468276749998 - - 20163.036083940122 - - 20181.014489688267 - - 20204.403493994443 - - 20233.203096858637 - - 20267.413298280862 - - 20307.0340982611 - - 20352.065496799376 - - 20402.50749389567 - - 20458.360089549995 - - 20519.623283762343 - - 20586.29707653271 - - 20658.381467861105 - - 20735.876457747527 - - 20818.78204619197 - - 20907.09823319444 - - 21000.825018754935 - - 21099.96240287345 - - 21204.51038555 - - 21314.468966784567 - - 21429.838146577156 - - 21550.61792492777 - - 21676.80830183642 - - 21808.409277303082 - - 21945.420851327774 - - 22087.843023910485 - - 22235.675795051233 - - 22388.91916475 - - 22547.573133006787 - - 22711.637699821604 - - 22881.11286519444 - - 23055.998629125304 - - 23236.294991614195 - - 23422.001952661114 - - 23613.119512266047 - - 23809.64767042901 - - 24011.586427149992 - - 19175.067884575994 - - 19180.010206503903 - - 19190.363126989825 - - 19206.126646033776 - - 19227.30076363575 - - 19253.88547979575 - - 19285.880794513778 - - 19323.286707789823 - - 19366.103219623896 - - 19414.330330015997 - - 19467.968038966126 - - 19527.016346474273 - - 19591.47525254044 - - 19661.34475716464 - - 19736.624860346863 - - 19817.31556208711 - - 19903.416862385384 - - 19994.92876124168 - - 20091.851258655992 - - 20194.184354628345 - - 20301.928049158712 - - 20415.082342247108 - - 20533.64723389353 - - 20657.62272409797 - - 20787.00881286044 - - 20921.805500180933 - - 21062.012786059462 - - 21207.630670495997 - - 21358.659153490567 - - 21515.09823504316 - - 21676.947915153774 - - 21844.20819382242 - - 22016.879071049087 - - 22194.960546833776 - - 22378.452621176497 - - 22567.35529407723 - - 22761.668565535994 - - 20210.337481616 - - 20223.285227046126 - - 20241.64357103427 - - 20265.412513580442 - - 20294.592054684643 - - 20329.18219434686 - - 20369.18293256711 - - 20414.59426934538 - - 20465.41620468168 - - 20521.648738575994 - - 20583.291871028345 - - 20650.345602038717 - - 20722.809931607106 - - 20800.68485973353 - - 20883.97038641798 - - 20972.66651166044 - - 21066.773235460936 - - 21166.29055781945 - - 21271.218478735995 - - 21381.556998210566 - - 21497.306116243155 - - 21618.465832833772 - - 21745.036147982417 - - 21877.017061689086 - - 22014.40857395378 - - 22157.210684776488 - - 22305.42339415723 - - 22459.046702095995 - - 22618.080608592787 - - 22782.5251136476 - - 22952.38021726044 - - 23127.64591943131 - - 23308.322220160193 - - 23494.40911944711 - - 23685.906617292047 - - 23882.81471369501 - - 24085.13340865599 - - 19226.279873053994 - - 19231.5054951419 - - 19242.141715787824 - - 19258.188534991776 - - 19279.645952753748 - - 19306.51396907375 - - 19338.792583951774 - - 19376.48179738782 - - 19419.581609381898 - - 19468.092019933996 - - 19522.013029044123 - - 19581.344636712274 - - 19646.08684293844 - - 19716.239647722636 - - 19791.803051064864 - - 19872.77705296511 - - 19959.161653423384 - - 20050.95685243967 - - 20148.162650013997 - - 20250.77904614634 - - 20358.806040836713 - - 20472.243634085105 - - 20591.091825891526 - - 20715.350616255968 - - 20845.020005178434 - - 20980.09999265894 - - 21120.590578697454 - - 21266.491763293998 - - 21417.803546448566 - - 21574.525928161158 - - 21736.65890843178 - - 21904.202487260416 - - 22077.156664647082 - - 22255.521440591783 - - 22439.296815094494 - - 22628.48278815523 - - 22823.079359773994 - - 20269.415680334 - - 20282.743364004124 - - 20301.481646232263 - - 20325.630527018442 - - 20355.190006362634 - - 20390.16008426486 - - 20430.540760725104 - - 20476.33203574338 - - 20527.533909319674 - - 20584.14638145399 - - 20646.169452146343 - - 20713.603121396714 - - 20786.447389205106 - - 20864.702255571527 - - 20948.367720495975 - - 21037.443783978444 - - 21131.930446018934 - - 21231.827706617456 - - 21337.135565774 - - 21447.854023488562 - - 21563.983079761158 - - 21685.522734591777 - - 21812.472987980418 - - 21944.833839927083 - - 22082.605290431777 - - 22225.787339494495 - - 22374.37998711523 - - 22528.383233293993 - - 22687.797078030788 - - 22852.621521325604 - - 23022.85656317844 - - 23198.502203589305 - - 23379.558442558195 - - 23566.025280085116 - - 23757.90271617005 - - 23955.190750813013 - - 24157.889384013994 - - 19276.700855383995 - - 19282.209777631902 - - 19293.12929843783 - - 19309.45941780178 - - 19331.200135723753 - - 19358.35145220375 - - 19390.913367241777 - - 19428.885880837828 - - 19472.268992991903 - - 19521.062703704 - - 19575.267012974127 - - 19634.881920802276 - - 19699.907427188442 - - 19770.34353213264 - - 19846.190235634866 - - 19927.447537695112 - - 20014.115438313387 - - 20106.193937489683 - - 20203.683035224 - - 20306.582731516344 - - 20414.89302636672 - - 20528.61391977511 - - 20647.745411741536 - - 20772.28750226598 - - 20902.240191348443 - - 21037.603478988938 - - 21178.377365187454 - - 21324.561849944 - - 21476.156933258575 - - 21633.16261513116 - - 21795.578895561775 - - 21963.405774550425 - - 22136.64325209709 - - 22315.291328201783 - - 22499.350002864496 - - 22688.819276085233 - - 22883.699147863997 - - 20327.702872904003 - - 20341.410494814118 - - 20360.52871528227 - - 20385.057534308442 - - 20414.99695189264 - - 20450.34696803486 - - 20491.10758273511 - - 20537.27879599338 - - 20588.860607809675 - - 20645.853018183996 - - 20708.256027116346 - - 20776.06963460671 - - 20849.293840655104 - - 20927.928645261527 - - 21011.974048425975 - - 21101.430050148443 - - 21196.296650428932 - - 21296.573849267454 - - 21402.261646664003 - - 21513.360042618566 - - 21629.869037131157 - - 21751.78863020177 - - 21879.11882183042 - - 22011.859612017084 - - 22150.01100076178 - - 22293.57298806449 - - 22442.54557392523 - - 22596.928758343995 - - 22756.722541320785 - - 22921.926922855604 - - 23092.541902948436 - - 23268.567481599304 - - 23450.0036588082 - - 23636.850434575113 - - 23829.107808900048 - - 24026.775781783013 - - 24229.854353223993 - - 19326.330831565992 - - 19332.1230539739 - - 19343.325874939826 - - 19359.939294463777 - - 19381.96331254576 - - 19409.397929185754 - - 19442.243144383774 - - 19480.498958139826 - - 19524.165370453902 - - 19573.242381325996 - - 19627.729990756125 - - 19687.628198744274 - - 19752.937005290438 - - 19823.656410394637 - - 19899.786414056864 - - 19981.327016277108 - - 20068.278217055384 - - 20160.64001639167 - - 20258.412414285995 - - 20361.595410738344 - - 20470.189005748714 - - 20584.193199317113 - - 20703.607991443532 - - 20828.433382127972 - - 20958.669371370437 - - 21094.315959170934 - - 21235.37314552945 - - 21381.840930446 - - 21533.719313920566 - - 21691.008295953154 - - 21853.707876543776 - - 22021.818055692416 - - 22195.338833399084 - - 22374.270209663777 - - 22558.612184486494 - - 22748.364757867228 - - 22943.52792980599 - - 20385.199059325994 - - 20399.286619476115 - - 20418.784778184272 - - 20443.693535450442 - - 20474.01289127464 - - 20509.742845656863 - - 20550.883398597103 - - 20597.434550095375 - - 20649.39630015168 - - 20706.768648766 - - 20769.55159593834 - - 20837.745141668714 - - 20911.349285957105 - - 20990.36402880353 - - 21074.789370207975 - - 21164.625310170435 - - 21259.87184869094 - - 21360.52898576945 - - 21466.596721406 - - 21578.07505560057 - - 21694.963988353156 - - 21817.263519663775 - - 21944.97364953242 - - 22078.094377959085 - - 22216.62570494378 - - 22360.567630486494 - - 22509.92015458723 - - 22664.683277245997 - - 22824.85699846279 - - 22990.4413182376 - - 23161.436236570436 - - 23337.841753461307 - - 23519.657868910195 - - 23706.88458291712 - - 23899.521895482045 - - 24097.56980660501 - - 24301.028316285992 - - 19375.169801599994 - - 19381.2453241679 - - 19392.731445293826 - - 19409.628164977777 - - 19431.935483219753 - - 19459.653400019753 - - 19492.781915377775 - - 19531.321029293824 - - 19575.2707417679 - - 19624.6310528 - - 19679.401962390126 - - 19739.583470538273 - - 19805.17557724444 - - 19876.178282508637 - - 19952.591586330862 - - 20034.415488711107 - - 20121.649989649384 - - 20214.295089145675 - - 20312.350787199997 - - 20415.817083812348 - - 20524.693978982712 - - 20638.98147271111 - - 20758.679564997532 - - 20883.788255841973 - - 21014.307545244443 - - 21150.23743320494 - - 21291.57791972346 - - 21438.3290048 - - 21590.49068843457 - - 21748.06297062716 - - 21911.045851377774 - - 22079.439330686422 - - 22253.243408553088 - - 22432.458084977785 - - 22617.083359960496 - - 22807.11923350123 - - 23002.565705599995 - - 20441.904239599997 - - 20456.37173799012 - - 20476.249834938266 - - 20501.538530444443 - - 20532.237824508637 - - 20568.347717130862 - - 20609.868208311105 - - 20656.799298049387 - - 20709.14098634568 - - 20766.8932732 - - 20830.05615861235 - - 20898.629642582717 - - 20972.613725111114 - - 21052.008406197525 - - 21136.813685841975 - - 21227.02956404444 - - 21322.656040804937 - - 21423.693116123453 - - 21530.140789999994 - - 21641.999062434563 - - 21759.267933427156 - - 21881.94740297778 - - 22010.03747108642 - - 22143.538137753087 - - 22282.449402977778 - - 22426.771266760497 - - 22576.503729101234 - - 22731.646789999995 - - 22892.200449456795 - - 23058.164707471602 - - 23229.53956404444 - - 23406.325019175307 - - 23588.521072864198 - - 23776.127725111113 - - 23969.144975916053 - - 24167.572825279014 - - 24371.41127319999 - - 19423.217765486 - - 19429.576588213902 - - 19441.346009499826 - - 19458.52602934377 - - 19481.116647745755 - - 19509.117864705746 - - 19542.52968022377 - - 19581.352094299822 - - 19625.5851069339 - - 19675.228718126 - - 19730.282927876124 - - 19790.747736184272 - - 19856.62314305044 - - 19927.909148474642 - - 20004.605752456868 - - 20086.712954997107 - - 20174.23075609539 - - 20267.15915575167 - - 20365.498153965993 - - 20469.247750738352 - - 20578.407946068713 - - 20692.97873995711 - - 20812.960132403532 - - 20938.352123407974 - - 21069.154712970438 - - 21205.367901090933 - - 21346.991687769456 - - 21494.026073005996 - - 21646.471056800576 - - 21804.326639153154 - - 21967.592820063768 - - 22136.269599532417 - - 22310.356977559088 - - 22489.854954143782 - - 22674.763529286494 - - 22865.08270298723 - - 23060.812475245995 - - 20497.818413726003 - - 20512.665850356123 - - 20532.923885544267 - - 20558.592519290443 - - 20589.671751594637 - - 20626.161582456858 - - 20668.062011877104 - - 20715.373039855378 - - 20768.094666391677 - - 20826.226891486 - - 20889.769715138347 - - 20958.72313734871 - - 21033.08715811711 - - 21112.86177744353 - - 21198.046995327975 - - 21288.642811770445 - - 21384.649226770936 - - 21486.066240329455 - - 21592.893852445988 - - 21705.132063120567 - - 21822.78087235316 - - 21945.840280143777 - - 22074.310286492415 - - 22208.190891399085 - - 22347.48209486378 - - 22492.18389688649 - - 22642.29629746723 - - 22797.819296605998 - - 22958.75289430279 - - 23125.0970905576 - - 23296.851885370437 - - 23474.017278741307 - - 23656.593270670197 - - 23844.579861157115 - - 24037.977050202047 - - 24236.78483780502 - - 24441.003223965992 - - 19470.474723223997 - - 19477.1168461119 - - 19489.169567557827 - - 19506.632887561776 - - 19529.50680612375 - - 19557.79132324375 - - 19591.486438921773 - - 19630.592153157824 - - 19675.1084659519 - - 19725.035377303997 - - 19780.372887214126 - - 19841.120995682275 - - 19907.27970270844 - - 19978.849008292636 - - 20055.82891243486 - - 20138.21941513511 - - 20226.020516393382 - - 20319.232216209683 - - 20417.854514583996 - - 20521.88741151635 - - 20631.33090700672 - - 20746.185001055113 - - 20866.449693661532 - - 20992.124984825972 - - 21123.210874548444 - - 21259.707362828936 - - 21401.614449667464 - - 21548.932135064 - - 21701.660419018568 - - 21859.799301531162 - - 22023.348782601777 - - 22192.308862230424 - - 22366.679540417084 - - 22546.46081716178 - - 22731.652692464497 - - 22922.255166325234 - - 23118.268238743996 - - 20552.941581704 - - 20568.16895657412 - - 20588.806930002273 - - 20614.85550198844 - - 20646.314672532637 - - 20683.18444163486 - - 20725.464809295103 - - 20773.15577551338 - - 20826.25734028968 - - 20884.769503623997 - - 20948.692265516347 - - 21018.025625966715 - - 21092.76958497511 - - 21172.924142541528 - - 21258.489298665976 - - 21349.465053348442 - - 21445.851406588936 - - 21547.64835838745 - - 21654.85590874399 - - 21767.47405765857 - - 21885.50280513116 - - 22008.942151161777 - - 22137.792095750425 - - 22272.052638897087 - - 22411.723780601777 - - 22556.80552086449 - - 22707.29785968523 - - 22863.200797063997 - - 23024.51433300079 - - 23191.238467495605 - - 23363.373200548445 - - 23540.91853215931 - - 23723.874462328196 - - 23912.240991055114 - - 24106.01811834005 - - 24305.205844183012 - - 24509.80416858399 - - 19516.940674813995 - - 19523.8660978619 - - 19536.20211946783 - - 19553.948739631775 - - 19577.105958353754 - - 19605.673775633753 - - 19639.65219147177 - - 19679.041205867827 - - 19723.840818821904 - - 19774.051030333994 - - 19829.671840404124 - - 19890.70324903227 - - 19957.14525621844 - - 20028.99786196264 - - 20106.26106626486 - - 20188.934869125114 - - 20277.019270543384 - - 20370.514270519678 - - 20469.419869053996 - - 20573.736066146346 - - 20683.462861796717 - - 20798.60025600511 - - 20919.148248771533 - - 21045.10684009597 - - 21176.47602997844 - - 21313.255818418937 - - 21455.44620541746 - - 21603.047190973997 - - 21756.058775088568 - - 21914.480957761156 - - 22078.31373899178 - - 22247.55711878042 - - 22422.21109712709 - - 22602.27567403178 - - 22787.750849494496 - - 22978.63662351523 - - 23174.932996093998 - - 20607.273743534 - - 20622.88105664412 - - 20643.898968312267 - - 20670.327478538446 - - 20702.166587322637 - - 20739.416294664858 - - 20782.076600565106 - - 20830.147505023382 - - 20883.629008039676 - - 20942.521109613994 - - 21006.823809746344 - - 21076.537108436718 - - 21151.661005685102 - - 21232.195501491526 - - 21318.140595855974 - - 21409.49628877844 - - 21506.26258025894 - - 21608.439470297453 - - 21716.026958894 - - 21829.025046048562 - - 21947.433731761157 - - 22071.253016031784 - - 22200.482898860417 - - 22335.123380247078 - - 22475.174460191774 - - 22620.636138694485 - - 22771.50841575523 - - 22927.791291373997 - - 23089.48476555079 - - 23256.588838285606 - - 23429.103509578443 - - 23607.02877942931 - - 23790.364647838192 - - 23979.11111480511 - - 24173.268180330044 - - 24372.83584441301 - - 24577.814107053993 - - 19562.615620255998 - - 19569.824343463904 - - 19582.44366522983 - - 19600.47358555378 - - 19623.91410443575 - - 19652.765221875754 - - 19687.02693787378 - - 19726.699252429826 - - 19771.7821655439 - - 19822.275677216 - - 19878.179787446126 - - 19939.494496234274 - - 20006.219803580447 - - 20078.355709484644 - - 20155.902213946865 - - 20238.859316967115 - - 20327.22701854538 - - 20421.005318681677 - - 20520.194217376 - - 20624.793714628348 - - 20734.80381043872 - - 20850.224504807113 - - 20971.055797733534 - - 21097.297689217972 - - 21228.95017926044 - - 21366.01326786094 - - 21508.486955019456 - - 21656.371240736 - - 21809.666125010568 - - 21968.371607843157 - - 22132.487689233778 - - 22302.014369182423 - - 22476.95164768909 - - 22657.29952475378 - - 22843.0580003765 - - 23034.22707455723 - - 23230.806747296 - - 20660.814899216006 - - 20676.802150566124 - - 20698.200000474273 - - 20725.00844894045 - - 20757.227495964646 - - 20794.857141546865 - - 20837.897385687105 - - 20886.348228385385 - - 20940.209669641674 - - 20999.481709455995 - - 21064.164347828344 - - 21134.257584758714 - - 21209.76142024711 - - 21290.675854293528 - - 21377.00088689798 - - 21468.736518060447 - - 21565.882747780935 - - 21668.439576059456 - - 21776.407002895998 - - 21889.78502829057 - - 22008.573652243158 - - 22132.772874753777 - - 22262.38269582242 - - 22397.403115449088 - - 22537.834133633776 - - 22683.675750376497 - - 22834.92796567723 - - 22991.590779535996 - - 23153.664191952794 - - 23321.1482029276 - - 23494.042812460444 - - 23672.348020551308 - - 23856.063827200196 - - 24045.190232407116 - - 24239.727236172046 - - 24439.674838495008 - - 24645.033039375994 - - 19607.49955955 - - 19614.9915829179 - - 19627.894204843822 - - 19646.20742532778 - - 19669.93124436975 - - 19699.065661969755 - - 19733.61067812777 - - 19773.566292843825 - - 19818.932506117897 - - 19869.709317949997 - - 19925.89672834012 - - 19987.494737288274 - - 20054.503344794444 - - 20126.92255085864 - - 20204.752355480865 - - 20287.99275866111 - - 20376.643760399387 - - 20470.705360695676 - - 20570.177559549997 - - 20675.06035696234 - - 20785.353752932722 - - 20901.057747461116 - - 21022.172340547535 - - 21148.697532191974 - - 21280.633322394435 - - 21417.979711154938 - - 21560.73669847345 - - 21708.90428435 - - 21862.48246878457 - - 22021.47125177716 - - 22185.870633327773 - - 22355.68061343642 - - 22530.901192103087 - - 22711.532369327782 - - 22897.574145110495 - - 23089.026519451236 - - 23285.889492349997 - - 20713.56504875 - - 20729.932238340116 - - 20751.71002648827 - - 20778.898413194445 - - 20811.49739845864 - - 20849.506982280862 - - 20892.927164661105 - - 20941.75794559938 - - 20995.999325095676 - - 21055.651303149993 - - 21120.713879762345 - - 21191.187054932714 - - 21267.070828661108 - - 21348.36520094753 - - 21435.070171791973 - - 21527.18574119444 - - 21624.711909154936 - - 21727.648675673452 - - 21835.996040749997 - - 21949.75400438457 - - 22068.92256657716 - - 22193.501727327777 - - 22323.49148663642 - - 22458.891844503087 - - 22599.70280092777 - - 22745.924355910498 - - 22897.556509451228 - - 23054.599261549996 - - 23217.052612206786 - - 23384.916561421604 - - 23558.19110919444 - - 23736.87625552531 - - 23920.97200041419 - - 24110.478343861116 - - 24305.395285866052 - - 24505.722826429006 - - 24711.46096554999 - - 19651.592492695996 - - 19659.367816223898 - - 19672.55373830983 - - 19691.150258953778 - - 19715.15737815575 - - 19744.575095915752 - - 19779.403412233776 - - 19819.642327109825 - - 19865.291840543905 - - 19916.351952536002 - - 19972.822663086128 - - 20034.70397219427 - - 20101.995879860442 - - 20174.698386084638 - - 20252.81149086687 - - 20336.335194207113 - - 20425.269496105386 - - 20519.614396561687 - - 20619.369895575997 - - 20724.53599314835 - - 20835.11268927871 - - 20951.099983967113 - - 21072.497877213536 - - 21199.306369017973 - - 21331.525459380442 - - 21469.155148300943 - - 21612.19543577946 - - 21760.646321816 - - 21914.507806410566 - - 22073.77988956316 - - 22238.462571273776 - - 22408.55585154242 - - 22584.05973036909 - - 22764.974207753778 - - 22951.2992836965 - - 23143.034958197233 - - 23340.181231256 - - 20765.524192136 - - 20782.271319966123 - - 20804.42904635427 - - 20831.997371300447 - - 20864.976294804637 - - 20903.365816866863 - - 20947.1659374871 - - 20996.37665666538 - - 21050.99797440168 - - 21111.029890695998 - - 21176.47240554835 - - 21247.325518958714 - - 21323.589230927108 - - 21405.26354145353 - - 21492.34845053798 - - 21584.843958180445 - - 21682.75006438094 - - 21786.066769139452 - - 21894.794072455996 - - 22008.93197433057 - - 22128.480474763157 - - 22253.439573753778 - - 22383.809271302423 - - 22519.589567409086 - - 22660.780462073777 - - 22807.381955296492 - - 22959.394047077236 - - 23116.816737415997 - - 23279.650026312785 - - 23447.893913767602 - - 23621.54839978044 - - 23800.613484351306 - - 23985.089167480197 - - 24174.97544916712 - - 24370.272329412048 - - 24570.979808215012 - - 24777.097885575997 - - 19694.894419694 - - 19702.953043381898 - - 19716.422265627825 - - 19735.30208643178 - - 19759.592505793757 - - 19789.293523713754 - - 19824.40514019177 - - 19864.92735522783 - - 19910.860168821895 - - 19962.203580973997 - - 20018.95759168412 - - 20081.122200952268 - - 20148.69740877844 - - 20221.683215162637 - - 20300.07962010486 - - 20383.886623605107 - - 20473.104225663385 - - 20567.732426279676 - - 20667.77122545399 - - 20773.220623186342 - - 20884.080619476717 - - 21000.35121432511 - - 21122.03240773153 - - 21249.12419969597 - - 21381.626590218442 - - 21519.539579298933 - - 21662.863166937455 - - 21811.597353133995 - - 21965.74213788857 - - 22125.297521201155 - - 22290.263503071772 - - 22460.640083500417 - - 22636.427262487086 - - 22817.625040031777 - - 23004.233416134495 - - 23196.252390795235 - - 23393.681964014 - - 20816.692329373996 - - 20833.81939544412 - - 20856.357060072267 - - 20884.30532325844 - - 20917.664185002635 - - 20956.43364530486 - - 21000.613704165105 - - 21050.204361583375 - - 21105.205617559677 - - 21165.617472093993 - - 21231.439925186347 - - 21302.672976836715 - - 21379.316627045107 - - 21461.370875811524 - - 21548.835723135973 - - 21641.71116901844 - - 21739.997213458937 - - 21843.693856457452 - - 21952.801098014 - - 22067.318938128567 - - 22187.247376801155 - - 22312.586414031775 - - 22443.336049820417 - - 22579.496284167082 - - 22721.067117071776 - - 22868.04854853449 - - 23020.44057855523 - - 23178.243207133997 - - 23341.45643427078 - - 23510.0802599656 - - 23684.114684218435 - - 23863.559707029304 - - 24048.415328398194 - - 24238.68154832511 - - 24434.358366810047 - - 24635.44578385301 - - 24841.94379945399 - - 19737.405340544 - - 19745.747264391903 - - 19759.499786797824 - - 19778.662907761784 - - 19803.23662728376 - - 19833.220945363755 - - 19868.615862001774 - - 19909.421377197836 - - 19955.637490951904 - - 20007.264203264 - - 20064.301514134124 - - 20126.749423562273 - - 20194.607931548446 - - 20267.877038092643 - - 20346.556743194862 - - 20430.647046855112 - - 20520.147949073387 - - 20615.05944984968 - - 20715.381549184003 - - 20821.114247076348 - - 20932.25754352672 - - 21048.811438535115 - - 21170.775932101533 - - 21298.151024225976 - - 21430.936714908443 - - 21569.13300414894 - - 21712.73989194746 - - 21861.757378304006 - - 22016.185463218568 - - 22176.02414669116 - - 22341.273428721783 - - 22511.93330931042 - - 22688.003788457085 - - 22869.484866161783 - - 23056.3765424245 - - 23248.67881724524 - - 23446.391690624005 - - 20867.069460464 - - 20884.576464774123 - - 20907.49406764227 - - 20935.82226906845 - - 20969.561069052645 - - 21008.71046759486 - - 21053.27046469511 - - 21103.24106035338 - - 21158.622254569684 - - 21219.414047344 - - 21285.616438676345 - - 21357.229428566716 - - 21434.253017015108 - - 21516.687204021535 - - 21604.531989585976 - - 21697.787373708445 - - 21796.453356388938 - - 21900.529937627456 - - 22010.017117423995 - - 22124.914895778566 - - 22245.22327269116 - - 22370.94224816178 - - 22502.07182219042 - - 22638.611994777082 - - 22780.56276592178 - - 22927.924135624493 - - 23080.696103885235 - - 23238.878670704 - - 23402.471836080793 - - 23571.475600015605 - - 23745.889962508445 - - 23925.71492355931 - - 24110.950483168195 - - 24301.596641335113 - - 24497.653398060047 - - 24699.120753343013 - - 24905.998707183997 - - 19779.125255245996 - - 19787.750479253897 - - 19801.786301819826 - - 19821.232722943776 - - 19846.089742625754 - - 19876.35736086575 - - 19912.035577663773 - - 19953.124393019825 - - 19999.623806933898 - - 20051.533819405995 - - 20108.85443043612 - - 20171.585640024274 - - 20239.727448170437 - - 20313.279854874636 - - 20392.242860136863 - - 20476.616463957114 - - 20566.40066633538 - - 20661.595467271676 - - 20762.200866765997 - - 20868.21686481834 - - 20979.643461428714 - - 21096.480656597112 - - 21218.72845032353 - - 21346.38684260797 - - 21479.45583345044 - - 21617.93542285094 - - 21761.825610809454 - - 21911.126397325996 - - 22065.83778240057 - - 22225.959766033156 - - 22391.492348223775 - - 22562.435528972415 - - 22738.78930827909 - - 22920.553686143783 - - 23107.728662566496 - - 23300.314237547227 - - 23498.310411085993 - - 20916.655585406 - - 20934.542527956124 - - 20957.840069064267 - - 20986.548208730444 - - 21020.666946954636 - - 21060.196283736863 - - 21105.136219077103 - - 21155.486752975383 - - 21211.247885431676 - - 21272.419616445997 - - 21339.001946018347 - - 21410.994874148713 - - 21488.398400837104 - - 21571.212526083527 - - 21659.43724988797 - - 21753.072572250443 - - 21852.11849317094 - - 21956.57501264945 - - 22066.44213068599 - - 22181.71984728057 - - 22302.408162433152 - - 22428.507076143775 - - 22560.016588412425 - - 22696.936699239082 - - 22839.267408623768 - - 22987.00871656649 - - 23140.160623067233 - - 23298.723128125996 - - 23462.696231742786 - - 23632.0799339176 - - 23806.87423465044 - - 23987.079133941308 - - 24172.694631790193 - - 24363.720728197117 - - 24560.157423162047 - - 24762.00471668501 - - 24969.262608765992 - - 19820.0541638 - - 19828.962687967905 - - 19843.281810693832 - - 19863.01153197778 - - 19888.15185181975 - - 19918.702770219752 - - 19954.664287177777 - - 19996.036402693822 - - 20042.819116767903 - - 20095.0124294 - - 20152.616340590124 - - 20215.630850338275 - - 20284.05595864444 - - 20357.891665508643 - - 20437.137970930868 - - 20521.794874911116 - - 20611.862377449383 - - 20707.340478545684 - - 20808.229178200003 - - 20914.52847641235 - - 21026.238373182718 - - 21143.358868511114 - - 21265.889962397534 - - 21393.83165484198 - - 21527.18394584444 - - 21665.94683540494 - - 21810.120323523457 - - 21959.7044102 - - 22114.69909543457 - - 22275.10437922716 - - 22440.920261577776 - - 22612.14674248642 - - 22788.783821953082 - - 22970.83149997778 - - 23158.289776560498 - - 23351.158651701233 - - 23549.4381254 - - 20965.4507042 - - 20983.717584990125 - - 21007.395064338274 - - 21036.483142244455 - - 21070.981818708642 - - 21110.891093730865 - - 21156.210967311108 - - 21206.94143944938 - - 21263.08251014568 - - 21324.634179399996 - - 21391.59644721234 - - 21463.969313582715 - - 21541.75277851111 - - 21624.946841997527 - - 21713.551504041974 - - 21807.56676464444 - - 21906.992623804937 - - 22011.829081523454 - - 22122.0761378 - - 22237.733792634564 - - 22358.802046027162 - - 22485.28089797778 - - 22617.170348486427 - - 22754.470397553087 - - 22897.18104517778 - - 23045.302291360495 - - 23198.83413610123 - - 23357.776579399997 - - 23522.12962125679 - - 23691.8932616716 - - 23867.067500644447 - - 24047.652338175307 - - 24233.647774264202 - - 24425.053808911114 - - 24621.870442116047 - - 24824.097673879012 - - 25031.7355042 - - 19860.192066205997 - - 19869.383890533903 - - 19883.986313419824 - - 19903.99933486378 - - 19929.422954865757 - - 19960.257173425754 - - 19996.501990543773 - - 20038.157406219823 - - 20085.2234204539 - - 20137.700033245997 - - 20195.587244596125 - - 20258.88505450427 - - 20327.593462970442 - - 20401.71246999464 - - 20481.24207557686 - - 20566.18227971711 - - 20656.533082415386 - - 20752.29448367168 - - 20853.466483485994 - - 20960.049081858346 - - 21072.04227878871 - - 21189.446074277108 - - 21312.260468323533 - - 21440.485460927976 - - 21574.12105209044 - - 21713.16724181094 - - 21857.624030089457 - - 22007.491416925997 - - 22162.76940232057 - - 22323.457986273155 - - 22489.55716878377 - - 22661.06694985242 - - 22837.987329479085 - - 23020.318307663787 - - 23208.0598844065 - - 23401.212059707235 - - 23599.774833565993 - - 21013.454816845995 - - 21032.101635876123 - - 21056.15905346427 - - 21085.627069610444 - - 21120.505684314638 - - 21160.794897576863 - - 21206.494709397106 - - 21257.605119775377 - - 21314.12612871168 - - 21376.057736205992 - - 21443.39994225834 - - 21516.152746868716 - - 21594.316150037106 - - 21677.890151763535 - - 21766.874752047974 - - 21861.26995089044 - - 21961.075748290943 - - 22066.29214424945 - - 22176.919138766 - - 22292.956731840568 - - 22414.404923473157 - - 22541.26371366378 - - 22673.53310241242 - - 22811.213089719084 - - 22954.30367558377 - - 23102.804860006494 - - 23256.716642987234 - - 23416.039024525995 - - 23580.772004622788 - - 23750.9155832776 - - 23926.46976049044 - - 24107.434536261306 - - 24293.809910590197 - - 24485.595883477115 - - 24682.792454922048 - - 24885.399624925012 - - 25093.417393485997 - - 19864.60300912484 - - 19873.826311273486 - - 19888.460211980146 - - 19908.504711244837 - - 19933.95980906755 - - 19964.825505448287 - - 20001.101800387045 - - 20042.78869388384 - - 20089.88618593865 - - 20142.39427655148 - - 20200.312965722347 - - 20263.64225345123 - - 20332.382139738136 - - 20406.532624583073 - - 20486.093707986038 - - 20571.065389947024 - - 20661.447670466034 - - 20757.24054954307 - - 20858.44402717812 - - 20965.058103371208 - - 21077.08277812231 - - 21194.51805143145 - - 21317.363923298606 - - 21445.620393723784 - - 21579.28746270699 - - 21718.36513024823 - - 21862.853396347484 - - 22012.75226100476 - - 22168.061724220075 - - 22328.781785993397 - - 22494.912446324754 - - 22666.453705214135 - - 22843.40556266154 - - 23025.768018666968 - - 23213.541073230423 - - 23406.7247263519 - - 23605.3189780314 - - 21018.73978382406 - - 21037.428818247958 - - 21061.52845122988 - - 21091.038682769824 - - 21125.95951286779 - - 21166.290941523792 - - 21212.032968737807 - - 21263.18559450985 - - 21319.748818839915 - - 21381.722641728014 - - 21449.107063174128 - - 21521.902083178273 - - 21600.107701740435 - - 21683.72391886063 - - 21772.75073453885 - - 21867.188148775087 - - 21967.03616156936 - - 22072.294772921643 - - 22182.96398283196 - - 22299.043791300308 - - 22420.534198326663 - - 22547.435203911056 - - 22679.746808053475 - - 22817.46901075391 - - 22960.60181201237 - - 23109.145211828865 - - 23263.099210203374 - - 23422.463807135908 - - 23587.23900262648 - - 23757.424796675063 - - 23933.021189281673 - - 24114.028180446312 - - 24300.445770168975 - - 24492.27395844966 - - 24689.512745288364 - - 24892.162130685098 - - 25100.22211463986 - - 15280.694256799998 - - 15337.7638081679 - - 15400.243958093826 - - 15468.134706577777 - - 15541.436053619747 - - 15620.14799921975 - - 15704.270543377774 - - 15793.803686093825 - - 15888.7474273679 - - 15989.1017672 - - 16094.866705590124 - - 16206.042242538271 - - 16322.628378044443 - - 16444.62511210864 - - 16572.032444730863 - - 16704.85037591111 - - 16843.078905649385 - - 16986.718033945683 - - 17135.767760799998 - - 17290.228086212344 - - 17450.099010182716 - - 17615.38053271111 - - 17786.07265379753 - - 17962.175373441973 - - 18143.688691644442 - - 18330.61260840494 - - 18522.947123723454 - - 18720.692237599997 - - 18923.84795003457 - - 19132.41426102716 - - 19346.391170577772 - - 19565.77867868642 - - 19790.576785353085 - - 20020.785490577782 - - 20256.404794360493 - - 20497.43469670123 - - 20743.8751976 - - 17763.346537999998 - - 17846.202919590116 - - 17934.469899738273 - - 18028.14747844444 - - 18127.23565570864 - - 18231.734431530866 - - 18341.643805911106 - - 18456.96377884938 - - 18577.69435034568 - - 18703.8355204 - - 18835.387289012342 - - 18972.349656182716 - - 19114.722621911107 - - 19262.506186197526 - - 19415.700349041977 - - 19574.305110444442 - - 19738.320470404935 - - 19907.746428923456 - - 20082.582985999994 - - 20262.830141634568 - - 20448.48789582716 - - 20639.55624857778 - - 20836.035199886417 - - 21037.92474975308 - - 21245.224898177774 - - 21457.93564516049 - - 21676.056990701236 - - 21899.588934799995 - - 22128.531477456792 - - 22362.8846186716 - - 22602.64835844444 - - 22847.82269677531 - - 23098.4076336642 - - 23354.40316911111 - - 23615.809303116053 - - 23882.626035679015 - - 24154.85336679999 - use_defrost_map: true - heat_source_type: CONDENSER - id: compressor - shut_off_logic: - - comparison_type: GREATER_THAN - heating_logic: - differential_temperature: 8.333333333333334 - temperature_weight_distribution: - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 8.333333333333334 - temperature_weight_distribution: - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - primary_heat_source_id: compressor - tank: - metadata: - schema: RSTANK - performance: - bottom_fraction_of_tank_mixing_on_draw: 0 - fittings_ua: 0 - ua: 8.791381193505783 - volume: 3.028328 -depresses_temperature: false -fixed_volume: false -metadata: - schema_author: Big Ladder Software - schema_name: HPWHSimInput - schema_version: 1.0.0 - author: None - id: 6998e64f-7824-414c-9d48-57e43ee47071 - time_of_creation: 2022-11-23T11:45Z -number_of_nodes: 96 -standard_setpoint: 330.3722222222222 -system_type: CENTRAL diff --git a/examples/ColmacCxA_25_MP.json b/examples/ColmacCxA_25_MP.json new file mode 100644 index 0000000..31fc29d --- /dev/null +++ b/examples/ColmacCxA_25_MP.json @@ -0,0 +1,2174 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0020188853333333334, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 55322.4326445937, + 54639.92550613942, + 54017.19730433983, + 53450.505448396514, + 52936.28015561724, + 52471.12445141614, + 52051.81416931362, + 51675.29795093644, + 51338.69724601756, + 51039.30631239632, + 50774.59221601832, + 50542.19483093542, + 50339.92683930588, + 50165.77373139415, + 50017.893805571046, + 49894.61816831361, + 49794.450734205304, + 49716.06822593574, + 49658.32017430091, + 49620.2289182031, + 49600.98960465092, + 49599.970188759165, + 49616.71143374903, + 49650.92691094798, + 49702.50299978979, + 49771.498887814465, + 49858.14657066841, + 49962.85085210424, + 50086.189343980914, + 50228.91246626365, + 50391.94344702402, + 50576.378322439865, + 50783.48593679526, + 51014.70794248068, + 51271.65879999284, + 51556.12577793474, + 51870.06895301575, + 55406.03362801181, + 54722.956584108404, + 54099.67932297317, + 53532.45274082304, + 53017.70054198112, + 52552.019238876805, + 52132.17815204593, + 51755.1194101305, + 51417.95794987882, + 51117.98151614557, + 50852.650661891676, + 50619.59874818432, + 50416.63194419707, + 50241.72922720972, + 50093.04238260839, + 49968.89600388554, + 49867.787492639785, + 49788.38705857623, + 49729.53771950612, + 49690.25530134708, + 49669.728438123, + 49667.31857196407, + 49682.55995310676, + 49715.15963989389, + 49764.997498774566, + 49832.126204304106, + 49916.771239144255, + 50019.33089406292, + 50140.376267934414, + 50280.65126773928, + 50441.0726085644, + 50622.72981360295, + 50826.885214154354, + 51054.97394962438, + 51308.60396752507, + 51589.556023474775, + 51899.78368119817, + 56159.35729326733, + 55471.251506660585, + 54843.13012673757, + 54271.18543285314, + 53751.78251246834, + 53281.459261150565, + 52856.92638257349, + 52475.06738851708, + 52132.93859886761, + 51827.769141617675, + 51556.960952866095, + 51318.088776818055, + 51108.90016578502, + 50927.31548018475, + 50771.427888541286, + 50639.50336748495, + 50529.98070175241, + 50441.47148418662, + 50372.76011573681, + 50322.803805458534, + 50290.73257051359, + 50275.849236170114, + 50277.62943580253, + 50295.72161089159, + 50329.94701102429, + 50380.299693893925, + 50446.94652530017, + 50530.227179148875, + 50630.654137452264, + 50748.91269032885, + 50885.860936003424, + 51042.52978080707, + 51220.122939177185, + 51420.01693365749, + 51643.761094897956, + 51893.077561654805, + 52169.86128079069, + 56914.29751442092, + 56221.344979163, + 55588.556090513644, + 55012.06451096573, + 54488.17671111813, + 54013.37196967623, + 53584.30237345164, + 53197.79281736227, + 52850.8410044323, + 52540.61744579226, + 52264.46546067895, + 52019.90117643544, + 51804.61352851116, + 51616.46426046177, + 51453.48792394927, + 51313.89187874195, + 51196.056292714384, + 51098.53414184746, + 51020.05121022832, + 50959.50609005046, + 50915.97018161365, + 50888.687693323925, + 50877.07564169368, + 50880.72385134154, + 50899.39495499252, + 50933.0243934778, + 50981.72041573496, + 51045.76407880783, + 51125.60924784657, + 51221.88259610761, + 51335.38360495367, + 51467.08456385382, + 51618.130570383335, + 51789.839530223864, + 51983.70215716336, + 52201.38197309597, + 52444.71530802227, + 57670.8112956248, + 56973.19580004875, + 56335.917807015445, + 55755.05236215567, + 55226.84731920629, + 54747.72334001056, + 54314.27389451805, + 53923.265260784625, + 53571.63652497235, + 53256.49958134974, + 52975.13913229152, + 52725.01268827869, + 52503.7505678986, + 52309.155897844845, + 52139.204612917405, + 51992.045456022446, + 51865.9999781725, + 51759.562538486425, + 51671.400304189214, + 51600.35325061238, + 51545.434161193596, + 51505.828627476854, + 51480.895049112434, + 51470.16463385695, + 51473.34139757331, + 51490.302164230634, + 51521.09656590449, + 51565.947042776585, + 51625.248843135036, + 51699.570023374195, + 51789.65144799473, + 51896.40678960365, + 52020.92252891415, + 52164.45795474583, + 52328.44516402454, + 52514.489061782406, + 52724.36736115795, + 58428.85537400585, + 57726.76250072564, + 57085.175601931674, + 56500.11110639263, + 55967.75825098335, + 55484.47908068497, + 55046.80844858506, + 54651.454015877374, + 54295.296251861946, + 53975.3884339452, + 53688.956647639774, + 53433.39978656465, + 53206.28955244511, + 53005.37045511269, + 52828.55981250524, + 52673.947750666935, + 52539.797203748196, + 52424.5439140058, + 52326.796431802766, + 52245.336115608465, + 52179.11713199853, + 52127.26645565485, + 52089.0838693657, + 52064.04196402561, + 52051.78613863536, + 52052.13460030211, + 52065.07836423927, + 52090.781253766574, + 52129.57990030997, + 52181.983743401834, + 52248.675030680744, + 52330.50881789158, + 52428.51296888558, + 52543.888155620225, + 52678.007858159275, + 52832.41836467283, + 53008.838771437295, + 59188.3862196658, + 58482.003345576326, + 57836.289533925876, + 57247.202596621064, + 56710.873153674656, + 56223.6046332058, + 55781.8732714399, + 55382.32811270867, + 55021.79100945012, + 54697.256622208566, + 54405.892419634634, + 54145.038678485194, + 53912.20848362344, + 53705.08772801888, + 53521.535112747304, + 53359.58214699082, + 53217.433148037795, + 53093.465241282924, + 52986.22836022716, + 52894.445246477786, + 52817.01144974839, + 52752.99532785885, + 52701.63804673526, + 52662.3535804102, + 52634.72871102237, + 52618.52302881677, + 52613.668932144836, + 52620.27162746417, + 52638.609129338736, + 52669.13226043878, + 52712.464651540824, + 52769.402741527745, + 52840.915777388625, + 52928.14581421891, + 53032.407715220324, + 53155.189151700906, + 53298.150603074966, + 59526.5396348735, + 58818.31006915544, + 58170.820345794615, + 57580.00221564079, + 57041.96023764984, + 56552.97177888401, + 56109.48701451188, + 55708.12892780828, + 55345.69331015431, + 55019.14876103744, + 54725.63668805141, + 54462.471306896245, + 54227.13964137825, + 54017.30152341003, + 53830.78959301054, + 53665.609298305004, + 53519.93889552488, + 53392.12944900804, + 53280.70483119852, + 53184.361722646776, + 53101.969612009496, + 53032.57079604966, + 52975.38037963653, + 52929.78627574577, + 52895.34920545924, + 52871.80269796508, + 52859.0530905578, + 52857.179528638146, + 52866.433965713244, + 52887.24116339642, + 52920.19869140734, + 52966.076927572016, + 53025.81905782265, + 53100.5410761978, + 53191.53178484234, + 53300.252794007414, + 53428.338522050464, + 59949.36003568109, + 59238.87633195814, + 58589.219394636304, + 57996.28841876014, + 57456.15540748035, + 56965.065172054, + 56519.43533184444, + 56115.85631432131, + 55751.09135506058, + 55422.07649774447, + 55125.92059416156, + 54859.90530420665, + 54621.48509588086, + 54408.287245291685, + 54218.1118366528, + 54048.9317622842, + 53898.8927226123, + 53766.31322616963, + 53649.68458959514, + 53547.67093763406, + 53459.10920313785, + 53383.00912706433, + 53318.55325847763, + 53265.09695454813, + 53222.1683805525, + 53189.46850987375, + 53166.871124001176, + 53154.42281253035, + 53152.342973163155, + 53161.02381170779, + 53181.0303420787, + 53213.10038629667, + 53258.144574488746, + 53317.24634488835, + 53391.66194383509, + 53482.820425774924, + 53592.32365326011, + 60711.732758102975, + 59997.33919020326, + 59343.92470867603, + 58747.32989170384, + 58203.56812557529, + 57708.825604685364, + 57259.46133153539, + 56852.00711673292, + 56483.16757899185, + 56149.82014513236, + 55849.01505008093, + 55577.97533687034, + 55334.096856639626, + 55114.94826863417, + 54918.27104020565, + 54741.97944681201, + 54584.16057201749, + 54443.07430749269, + 54317.153353014415, + 54205.0032164658, + 54105.402213836336, + 54017.301469221726, + 53939.82491482399, + 53872.269290951524, + 53814.104146018944, + 53764.97183654708, + 53724.687527163274, + 53693.23919060097, + 53670.78760770003, + 53657.66636740655, + 53654.381866772914, + 53661.613310957895, + 53680.212713226414, + 53711.204894949806, + 53755.78748560567, + 53815.3309227779, + 53891.37845215671, + 61475.46005595745, + 60757.34938361855, + 60100.364733632894, + 59500.288067320886, + 58953.0741541091, + 58454.85057153045, + 58001.9177052242, + 57590.748748935875, + 57217.98970451722, + 56880.45938192641, + 56575.14939922786, + 56299.22418259228, + 56050.020966296615, + 55825.04979272421, + 55621.993512364665, + 55438.70778381388, + 55273.22107377399, + 55123.73465705356, + 54988.622616567314, + 54866.43184333636, + 54755.88203648805, + 54655.86570325613, + 54565.44815898046, + 54483.8675271074, + 54410.5347391895, + 54345.03353488555, + 54287.12046196079, + 54236.72487628663, + 54193.948941840834, + 54159.06763070745, + 54132.52872307682, + 54114.952807245616, + 54107.13327961672, + 54110.03634469938, + 54124.80101510917, + 54152.73911156784, + 54195.335262903616, + 62240.49733124527, + 61518.86410848575, + 60858.49846006947, + 60255.12373045479, + 59704.6360722062, + 59203.1044459946, + 58746.770620597155, + 58332.04917289728, + 57955.52748788475, + 57613.96575865562, + 57304.29698641223, + 57023.626980463225, + 56769.23435822353, + 56538.5705452144, + 56329.25977506335, + 56139.09908950421, + 55966.058338377115, + 55808.28017962848, + 55664.08007931105, + 55531.946311583764, + 55410.539958712034, + 55298.69491106742, + 55195.41786712783, + 55099.88833347745, + 55011.45862480679, + 54929.65386391265, + 54854.17198169815, + 54784.883717172655, + 54721.832617451815, + 54665.23503775767, + 54615.48014141849, + 54573.129899868814, + 54538.91909264954, + 54513.75530740787, + 54498.718939897226, + 54495.063193977345, + 54504.21408161434, + 63006.79971894196, + 62281.84029406125, + 61618.28461152308, + 61011.79739892377, + 60458.21619196577, + 59953.55133445787, + 59493.98597831517, + 59075.87608355906, + 58695.75041831723, + 58350.31055882366, + 58036.43088941863, + 57751.15860254872, + 57491.7136987668, + 57255.48898673206, + 57040.05008320992, + 56843.1354130722, + 56662.65620929692, + 56496.69651296845, + 56343.51317327745, + 56201.53584752087, + 56069.36700110195, + 55945.78190753023, + 55829.72864842155, + 55720.32811349807, + 55616.87400058822, + 55518.83281562668, + 55425.84387265455, + 55337.7192938191, + 55254.44400937398, + 55176.17575767911, + 55103.24508520072, + 55036.15534651125, + 54975.582704289576, + 54922.3761293208, + 54877.55740049628, + 54842.32110481373, + 54818.034637377175, + 63774.32208699785, + 63046.23460257629, + 62379.68164450587, + 61770.269323520915, + 61213.77655846177, + 60706.15507627513, + 60243.52941201407, + 59822.196908837934, + 59438.62771801227, + 59089.46479890906, + 58771.523919006526, + 58481.79365388914, + 58217.435387247715, + 57975.78331087939, + 57754.344424687515, + 57550.798536681825, + 57362.99826297833, + 57188.96902779929, + 57026.90906347332, + 56875.18941043527, + 56732.35391722636, + 56597.11924049402, + 56468.37484499209, + 56345.183003580605, + 56226.778797225954, + 56112.57011500074, + 56002.13765408402, + 55895.23491976097, + 55791.78822542321, + 55691.89669256855, + 55595.83225080119, + 55504.03963783152, + 55417.1363994763, + 55335.9128896586, + 55261.332270407715, + 55194.53051185925, + 55136.81639225524, + 64543.01903633798, + 63812.00342923679, + 63142.64774850476, + 62530.499488013986, + 61971.278949742846, + 61460.87924377599, + 60995.366288304365, + 60570.97880962527, + 60184.12834214221, + 59831.39922836508, + 59509.54861891003, + 59215.506472499495, + 58946.37555596221, + 58699.43144423326, + 58472.12252035391, + 58262.06997547183, + 58067.06780884096, + 57885.082827821534, + 57714.25464788006, + 57552.89569258933, + 57399.491193628506, + 57252.69919078301, + 57111.350531944474, + 56974.44887311101, + 56841.17067838688, + 56710.86521998266, + 56583.05457821526, + 56457.433641507865, + 56333.87010639, + 56212.40447749744, + 56093.25006757226, + 55976.79299746287, + 55863.59219612388, + 55754.379400616315, + 55650.05915610745, + 55551.708815870814, + 55460.57854128634, + 65312.84490086219, + 64579.10290222359, + 63907.140845981354, + 63292.44760914558, + 62730.68487683256, + 62217.687142264826, + 61749.461706771355, + 61322.188679787316, + 60932.220978854166, + 60576.08432961977, + 60250.47726583813, + 59952.27112936969, + 59678.5100701811, + 59426.411046345325, + 59193.36382404168, + 58976.930977555676, + 58774.847889279205, + 58585.02274971049, + 58405.53655745389, + 58234.64311922019, + 58070.769049826486, + 57912.513772196085, + 57758.649517358645, + 57608.121324450105, + 57460.047040712714, + 57313.71732149499, + 57168.59563025179, + 57024.318238544234, + 56880.694226039705, + 56737.705480512006, + 56595.50669784111, + 56454.42538201334, + 56314.96184512128, + 56177.78920736392, + 56043.7533970464, + 55913.8731505802, + 55789.34001248316, + 66083.7537474451, + 65347.48888269212, + 64673.118592372084, + 64056.07313663301, + 63491.955583729075, + 62976.541810020826, + 62505.7804999751, + 62075.79314616504, + 61682.87404927005, + 61323.49031807586, + 60994.28186947452, + 60692.061428464316, + 60413.81452814986, + 60156.699509742095, + 59918.047522558176, + 59695.362524021635, + 59486.32127966226, + 59288.773363116205, + 59100.74115612579, + 58920.41984853977, + 58746.177438313054, + 58576.55473150701, + 58410.26534228913, + 58246.19569293338, + 58083.40501381988, + 57921.1253434351, + 57758.76152837187, + 57595.891223329156, + 57432.264891112405, + 57267.80580263324, + 57102.61003690962, + 56936.94648106577, + 56771.256830332255, + 56606.15558804597, + 56442.43006564998, + 56281.04038269374, + 56123.119466833035, + 66855.69937593605, + 66117.11696477272, + 65440.538376088174, + 64821.335253168385, + 64255.05204740548, + 63737.406018297894, + 63264.28723345046, + 62831.75856857423, + 62436.05570748649, + 62073.587142111, + 61740.93417247768, + 61434.85090672277, + 61152.264261088836, + 60890.27395992471, + 60646.15253568553, + 60417.345328932744, + 60201.47048833407, + 59996.318970663604, + 59799.8545408016, + 59610.213771734685, + 59425.70604455585, + 59244.81354846425, + 59066.191280765415, + 58888.66704687118, + 58711.24146029966, + 58533.0879426752, + 58353.55272372857, + 58172.15484129673, + 57988.586141322994, + 57802.71127785695, + 57614.56771305446, + 57424.36571717778, + 57232.48836859534, + 57039.49155378195, + 56846.10396731863, + 56653.22711189275, + 56461.935298298085, + 67628.6353191592, + 66887.9424755704, + 66209.35731851554, + 65588.19287441854, + 65019.93497780946, + 64500.242271324714, + 64024.94620570698, + 63590.05103980528, + 63191.7338405749, + 62826.34448307745, + 62490.40565048085, + 62180.6128340592, + 61893.834333193045, + 61627.111255369164, + 61377.6575161806, + 61142.85983932678, + 60920.27775661334, + 60707.643607952225, + 60502.86254136175, + 60304.012512966445, + 60109.34428699718, + 59917.2814357911, + 59726.42033979166, + 59535.530187548604, + 59343.552975718, + 59149.60350906213, + 58952.96940044971, + 58753.1110708556, + 58549.66174936108, + 58342.427473153664, + 58131.38708752716, + 57916.692245881764, + 57698.66740972378, + 57477.80984866598, + 57254.7896404274, + 57030.44967083329, + 56805.805633815304, + 68402.51484291347, + 67659.92047516502, + 66979.53227401497, + 66356.6046490252, + 65786.56481786369, + 65265.012806304774, + 64787.72144822911, + 64350.63638562362, + 63949.876068581536, + 63581.7317553024, + 63242.66751209203, + 62929.32021336256, + 62638.49954163238, + 62367.18798752623, + 62112.54084977513, + 61871.88623521634, + 61642.7250587935, + 61422.73104355654, + 61209.75072066162, + 61001.803429371226, + 60797.08131705421, + 60593.949339185594, + 60390.9452593468, + 60186.77964922547, + 59980.335888615686, + 59770.67016541759, + 59557.011475637846, + 59338.76162338928, + 59115.4952208911, + 58886.95968846873, + 58653.075254553914, + 58413.9349556848, + 58169.80463650563, + 57921.1229497671, + 57668.501356326175, + 57412.72412514607, + 57154.74833329635, + 69177.29094597249, + 68433.00575661109, + 67751.01982992189, + 67126.52895860469, + 66554.90174346537, + 66031.67959341625, + 65552.5767254759, + 65113.48016476918, + 64710.44974452724, + 64339.71810608762, + 63997.69069889399, + 63680.945780496455, + 63386.23441655136, + 63110.48048082137, + 62850.780655175375, + 62604.404429588685, + 62368.7941021428, + 62141.564779025604, + 61920.50437453119, + 61703.57361105997, + 61488.90601911871, + 61274.80793732045, + 61059.75851238448, + 60842.409699136384, + 60621.586260508164, + 60396.285767537964, + 60165.678599370294, + 59929.107943255985, + 59686.08979455214, + 59436.31295672214, + 59179.63904133567, + 58916.10246806876, + 58645.910464703644, + 58369.44306712895, + 58087.253119339555, + 57800.066273436605, + 57508.780989627616, + 69952.91636008471, + 69207.152845938, + 68523.77630654658, + 67897.92391774816, + 67324.90566348663, + 66800.20433581216, + 66319.47553488129, + 65878.54766895683, + 65473.42195440785, + 65100.27241570977, + 64755.4458854443, + 64435.46200429941, + 64137.0132210694, + 63856.96479265486, + 63592.35478406266, + 63340.39406840598, + 63098.46632690429, + 62864.128048883395, + 62635.108531775324, + 62409.30988111846, + 62184.80701055746, + 61959.847641843306, + 61732.8523048332, + 61502.41433749078, + 61267.29988588582, + 61026.44790419448, + 60778.970154699244, + 60524.1512077888, + 60261.44844195823, + 59990.49204380882, + 59711.08500804823, + 59423.203137490396, + 59126.99504305551, + 58822.782143770084, + 58511.05866676699, + 58192.49164728527, + 57867.92092867041, + 70729.34354997339, + 69982.3160021499, + 69297.7577571741, + 68670.74737402164, + 68096.53621977434, + 67570.54846962028, + 67088.38110685398, + 66645.80392287613, + 66238.75951719379, + 65863.36329742029, + 65515.90347927527, + 65192.841086584645, + 64890.80995128065, + 64606.61671340181, + 64337.2408210929, + 64079.834530605076, + 63831.72290629571, + 63590.4038206286, + 63353.54795417366, + 63118.99879560719, + 62884.77264171184, + 62649.05859737648, + 62410.218575596286, + 62166.78729747274, + 61917.472292213715, + 61661.15389713316, + 61396.885257651535, + 61123.89232729552, + 60841.573867698025, + 60549.50144859835, + 60247.419447842105, + 59935.245051381076, + 59613.06825327347, + 59281.15185568373, + 58939.931468882605, + 58590.01551124714, + 58232.18520926066, + 71506.52471333642, + 70758.44921722564, + 70072.9199680642, + 69444.95690796578, + 68869.75278715006, + 68342.67316394314, + 67859.25640477738, + 67415.21368419146, + 67006.42898483035, + 66628.95909744532, + 66279.03362089397, + 65953.05496214013, + 65647.59833625397, + 65359.41176641195, + 65085.41608389678, + 64822.704928097584, + 64568.544746509666, + 64320.374794734635, + 64075.8071364805, + 63832.626643561445, + 63588.790995897994, + 63342.430681517035, + 63091.84899655164, + 62835.522045241254, + 62572.098739931615, + 62300.40080107468, + 62019.422757228844, + 61728.331945058635, + 61426.46850933499, + 61113.345402935134, + 60788.648386842564, + 60452.23603014706, + 60104.13971004469, + 59744.563611837904, + 59373.88472893535, + 58992.652862851995, + 58601.59062320918, + 72284.41178084661, + 71535.50621611884, + 70849.21845845149, + 70220.50983309606, + 69644.51447341019, + 69116.53932085795, + 68632.06412500964, + 68186.74144354186, + 67776.3966422375, + 67397.0278949858, + 67044.80618378225, + 66716.07529872864, + 66407.35183803306, + 66115.32520800993, + 65836.8576230799, + 65568.98410576992, + 65308.91248671335, + 65054.02340464977, + 64801.870306425015, + 64550.17944699121, + 64296.84988940692, + 64039.95350483686, + 63777.734972552076, + 63508.611779929946, + 63231.17422245414, + 62944.18540371456, + 62646.581235407524, + 62337.47043733552, + 62016.13453740738, + 61682.027871638296, + 61334.77758414968, + 60974.18362716925, + 60600.218761031036, + 60213.028554175406, + 59812.93138314892, + 59400.4184326045, + 58976.153695301386, + 72370.88522366756, + 71621.90095633482, + 70935.54211484692, + 70306.76351146544, + 69730.69276655822, + 69202.63030859934, + 68718.04937416926, + 68272.59600795472, + 67862.0890627487, + 67482.52019945053, + 67130.05388706588, + 66801.02740270662, + 66491.9508315909, + 66199.50706704338, + 65920.55181049473, + 65652.11357148207, + 65391.39366764884, + 65135.76622474472, + 64882.77817662568, + 64630.14926525401, + 64375.77204069835, + 64117.71186113345, + 63854.206892840644, + 63583.66811020728, + 63304.67929572719, + 63015.99704000043, + 62716.55074173337, + 62405.44260773866, + 62081.947652935254, + 61745.5137003484, + 61395.76138110968, + 61032.484134456936, + 60655.648207734266, + 60265.39265639215, + 59862.02934398731, + 59446.04294218277, + 59018.09093074794, + 111021.0287365299, + 110549.46139655932, + 110137.20298878542, + 109776.27748237172, + 109458.881654588, + 109177.38509081033, + 108924.33018452123, + 108692.43213730915, + 108474.57895886932, + 108263.83146700282, + 108053.42328761742, + 107836.76085472685, + 107607.4234104513, + 107359.16300501728, + 107085.90449675753, + 106781.74555211117, + 106440.95664562348, + 106057.98105994613, + 105627.43488583708, + 105144.10702216058, + 104602.95917588718, + 103999.12586209376, + 103327.9144039633, + 102584.80493278547, + 101765.45038795585, + 100865.67651697644, + 99881.4818754557, + 98809.03782710813, + 97644.68854375472, + 96384.95100532263, + 95026.51499984543, + 93566.24312346287, + 92001.1707804211, + 90328.50618307249, + 88545.6303518758, + 86650.09711539598, + 84639.63311030433 + ], + "input_power": [ + 15289.554006200002, + 15460.352624866666, + 15649.802038200001, + 15857.902246200001, + 16084.653248866665, + 16330.055046200005, + 16594.1076382, + 16876.811024866664, + 17178.165206200003, + 17498.1701822, + 17836.825952866675, + 18194.132518200004, + 18570.0898782, + 18964.698032866665, + 19377.956982200005, + 19809.866726199994, + 20260.427264866677, + 20729.638598200003, + 21217.500726199996, + 21724.01364886667, + 22249.177366200005, + 22792.991878199995, + 23355.45718486667, + 23936.5732862, + 24536.340182199998, + 25154.757872866674, + 25791.8263582, + 26447.545638199994, + 27121.915712866677, + 27814.9365822, + 28526.608246199994, + 29256.930704866678, + 30005.903958199997, + 30773.528006200013, + 31559.802848866675, + 32364.7284862, + 33188.30491819999, + 15290.373752913, + 15461.348562050776, + 15650.974165855223, + 15859.250564326334, + 16086.177757464111, + 16331.755745268556, + 16595.984527739667, + 16878.86410487744, + 17180.39447668189, + 17500.575643152995, + 17839.407604290784, + 18196.890360095225, + 18573.02391056633, + 18967.808255704105, + 19381.243395508554, + 19813.329329979668, + 20264.066059117446, + 20733.453582921888, + 21221.491901392994, + 21728.181014530786, + 22253.52092233523, + 22797.511624806328, + 23360.153121944117, + 23941.44541374855, + 24541.388500219662, + 25159.982381357448, + 25797.22705716189, + 26453.122527632993, + 27127.668792770786, + 27820.86585257522, + 28532.71370704632, + 29263.212356184114, + 30012.361799988554, + 30780.16203845968, + 31566.613071597447, + 32371.714899401886, + 33195.46752187298, + 15297.5733483, + 15470.133871677777, + 15661.345189722224, + 15871.207302433333, + 16099.720209811107, + 16346.883911855557, + 16612.698408566666, + 16897.163699944438, + 17200.27978598889, + 17522.0466667, + 17862.464342077783, + 18221.532812122223, + 18599.25207683333, + 18995.622136211103, + 19410.64299025556, + 19844.314638966665, + 20296.63708234445, + 20767.61032038889, + 21257.234353099993, + 21765.509180477784, + 22292.434802522228, + 22838.01121923333, + 23402.238430611116, + 23985.116436655553, + 24586.645237366658, + 25206.824832744445, + 25845.655222788886, + 26503.13640749999, + 27179.268386877786, + 27874.051160922223, + 28587.484729633325, + 29319.56909301112, + 30070.304251055553, + 30839.690203766677, + 31627.72695114445, + 32434.414493188888, + 33259.75282989998, + 15304.452318633, + 15478.59855625078, + 15671.395588535224, + 15882.843415486335, + 16112.942037104109, + 16361.69145338856, + 16629.091664339667, + 16915.14266995744, + 17219.844470241893, + 17543.197065193, + 17885.200454810783, + 18245.854639095225, + 18625.15961804633, + 19023.115391664105, + 19439.721959948554, + 19874.979322899664, + 20328.887480517453, + 20801.44643280189, + 21292.656179752998, + 21802.516721370786, + 22331.02805765523, + 22878.190188606328, + 23444.00311422412, + 24028.466834508556, + 24631.58134945966, + 25253.346659077455, + 25893.762763361887, + 26552.82966231299, + 27230.547355930787, + 27926.915844215222, + 28641.93512716632, + 29375.60520478412, + 30127.92607706855, + 30898.897744019676, + 31688.520205637447, + 32496.79346192189, + 33323.71751287298, + 15311.010663912, + 15486.74261576978, + 15681.125362294224, + 15894.158903485333, + 16125.843239343109, + 16376.17836986756, + 16645.16429505867, + 16932.801014916444, + 17239.08852944089, + 17564.026838632, + 17907.615942489785, + 18269.855841014225, + 18650.746534205333, + 19050.288022063105, + 19468.480304587556, + 19905.323381778664, + 20360.81725363645, + 20834.9619201609, + 21327.757381351992, + 21839.203637209783, + 22369.300687734227, + 22918.048532925328, + 23485.44717278312, + 24071.496607307556, + 24676.19683649866, + 25299.547860356448, + 25941.54967888089, + 26602.20229207199, + 27281.50569992979, + 27979.45990245422, + 28696.064899645324, + 29431.32069150312, + 30185.227278027553, + 30957.784659218676, + 31748.99283507645, + 32558.851805600887, + 33387.36157079198, + 15317.248384137001, + 15494.566050234778, + 15690.534510999227, + 15905.153766430334, + 16138.423816528111, + 16390.344661292558, + 16660.916300723668, + 16950.138734821445, + 17258.011963585894, + 17584.535987017, + 17929.710805114784, + 18293.536417879222, + 18676.012825310332, + 19077.140027408106, + 19496.91802417256, + 19935.34681560367, + 20392.426401701454, + 20868.156782465892, + 21362.537957896995, + 21875.569927994784, + 22407.25269275923, + 22957.586252190333, + 23526.57060628812, + 24114.205755052557, + 24720.491698483664, + 25345.428436581453, + 25989.015969345888, + 26651.254296776995, + 27332.143418874784, + 28031.683335639224, + 28749.874047070323, + 29486.71555316812, + 30242.207853932556, + 31016.35094936368, + 31809.14483946145, + 32620.589524225892, + 33450.68500365699, + 15323.165479307998, + 15502.068859645775, + 15699.623034650222, + 15915.828004321333, + 16150.683768659106, + 16404.190327663557, + 16676.347681334664, + 16967.15582967244, + 17276.61477267689, + 17604.724510347995, + 17951.485042685785, + 18316.89636969023, + 18700.958491361333, + 19103.67140769911, + 19525.035118703556, + 19965.04962437466, + 20423.71492471245, + 20901.031019716887, + 21396.997909387996, + 21911.615593725783, + 22444.884072730227, + 22996.80334640133, + 23567.373414739115, + 24156.594277743556, + 24764.46593541466, + 25390.98838775245, + 26036.16163475689, + 26699.985676427994, + 27382.460512765785, + 28083.58614377022, + 28803.362569441324, + 29541.78978977912, + 30298.867804783553, + 31074.59661445468, + 31868.976218792446, + 32682.006617796887, + 33513.68781146798, + 15325.693256028973, + 15505.301644917856, + 15703.560828473404, + 15920.47080669562, + 16156.031579584496, + 16410.243147140052, + 16683.105509362264, + 16974.618666251143, + 17284.782617806697, + 17613.59736402891, + 17961.062904917795, + 18327.179240473342, + 18711.946370695554, + 19115.36429558443, + 19537.433015139984, + 19978.1525293622, + 20437.522838251087, + 20915.54394180663, + 21412.21584002884, + 21927.538532917733, + 22461.512020473278, + 23014.136302695486, + 23585.41137958438, + 24175.33725113992, + 24783.91391736213, + 25411.141378251028, + 26057.01963380657, + 26721.548684028774, + 27404.728528917673, + 28106.55916847321, + 28827.04060269542, + 29566.172831584317, + 30323.95585513986, + 31100.389673362086, + 31895.47428625096, + 32709.209693806508, + 33541.5958960287, + 15328.761949425, + 15509.251044002776, + 15708.390933247223, + 15926.181617158332, + 16162.62309573611, + 16417.71536898056, + 16691.45843689167, + 16983.85229946944, + 17294.896956713892, + 17624.592408624998, + 17972.938655202786, + 18339.935696447228, + 18725.58353235833, + 19129.882162936105, + 19552.83158818056, + 19994.43180809166, + 20454.682822669452, + 20933.584631913887, + 21431.13723582499, + 21947.340634402786, + 22482.194827647225, + 23035.699815558324, + 23607.85559813612, + 24198.662175380556, + 24808.11954729166, + 25436.227713869448, + 26082.986675113887, + 26748.396431024994, + 27432.456981602783, + 28135.168326847222, + 28856.530466758322, + 29596.543401336115, + 30355.20713058055, + 31132.52165449168, + 31928.48697306945, + 32743.103086313895, + 33576.36999422498, + 15334.037794488, + 15516.112603305777, + 15716.83820679022, + 15936.214604941333, + 16174.241797759109, + 16430.919785243557, + 16706.24856739467, + 17000.22814421244, + 17312.85851569689, + 17644.139681847995, + 17994.071642665782, + 18362.654398150225, + 18749.887948301333, + 19155.772293119106, + 19580.307432603557, + 20023.49336675466, + 20485.33009557245, + 20965.81761905689, + 21464.955937208, + 21982.745050025784, + 22519.184957510224, + 23074.27565966133, + 23648.017156479116, + 24240.409447963553, + 24851.452534114665, + 25481.14641493245, + 26129.49109041689, + 26796.48656056799, + 27482.132825385786, + 28186.429884870224, + 28909.37773902132, + 29650.97638783912, + 30411.22583132355, + 31190.126069474678, + 31987.677102292448, + 32803.87892977689, + 33638.73155192798, + 15338.993014497002, + 15522.653537554776, + 15724.964855279224, + 15945.926967670335, + 16185.53987472811, + 16443.80357645256, + 16720.718072843665, + 17016.283363901442, + 17330.49944962589, + 17663.366330016997, + 18014.884005074786, + 18385.052474799228, + 18773.871739190334, + 19181.341798248104, + 19607.462651972557, + 20052.234300363663, + 20515.656743421452, + 20997.72998114589, + 21498.454013536997, + 22017.828840594782, + 22555.854462319225, + 23112.53087871033, + 23687.858089768117, + 24281.83609549256, + 24894.464895883662, + 25525.74449094145, + 26175.674880665887, + 26844.256065056994, + 27531.488044114787, + 28237.37081783922, + 28961.904386230326, + 29705.088749288123, + 30466.923907012555, + 31247.40985940368, + 32046.546606461456, + 32864.33414818589, + 33700.772484576984, + 15343.627609451998, + 15528.873846749775, + 15732.770878714224, + 15955.318705345333, + 16196.517326643107, + 16456.366742607555, + 16734.866953238667, + 17032.01795853644, + 17347.81975850089, + 17682.272353131997, + 18035.37574242978, + 18407.129926394224, + 18797.53490502533, + 19206.590678323104, + 19634.297246287555, + 20080.654608918663, + 20545.66276621645, + 21029.321718180887, + 21531.631464811995, + 22052.592006109782, + 22592.203342074223, + 23150.465472705328, + 23727.378398003122, + 24322.94211796756, + 24937.156632598657, + 25570.021941896448, + 26221.538045860885, + 26891.70494449199, + 27580.522637789785, + 28287.991125754223, + 29014.11040838532, + 29758.880485683116, + 30522.301357647546, + 31304.373024278677, + 32105.09548557645, + 32924.468741540884, + 33762.492792171986, + 15347.941579352999, + 15534.773530890778, + 15740.256277095225, + 15964.389817966334, + 16207.17415350411, + 16468.60928370856, + 16748.695208579666, + 17047.43192811744, + 17364.819442321892, + 17700.857751192998, + 18055.546854730783, + 18428.886752935225, + 18820.87744580633, + 19231.518933344105, + 19660.81121554855, + 20108.754292419664, + 20575.34816395745, + 21060.592830161888, + 21564.488291032994, + 22087.03454657078, + 22628.231596775226, + 23188.07944164633, + 23766.578081184118, + 24363.727515388553, + 24979.527744259663, + 25613.97876779745, + 26267.080586001888, + 26938.83319887299, + 27629.236606410785, + 28338.29080861522, + 29065.995805486324, + 29812.351597024117, + 30577.358183228553, + 31361.015564099685, + 32163.32373963745, + 32984.28270984189, + 33823.892474712986, + 15351.934924200003, + 15540.352589977781, + 15747.421050422223, + 15973.140305533334, + 16217.51035531111, + 16480.531199755562, + 16762.202838866666, + 17062.52527264444, + 17381.498501088892, + 17719.122524199996, + 18075.397341977787, + 18450.322954422227, + 18843.899361533335, + 19256.126563311107, + 19687.004559755555, + 20136.53335086666, + 20604.71293664445, + 21091.54331708889, + 21597.024492199995, + 22121.156461977782, + 22663.93922642223, + 23225.372785533327, + 23805.45713931112, + 24404.192287755555, + 25021.578230866664, + 25657.61496864445, + 26312.302501088892, + 26985.640828199994, + 27677.62994997779, + 28388.269866422223, + 29117.560577533324, + 29865.50208331112, + 30632.094383755553, + 31417.33747886668, + 32221.231368644454, + 33043.77605308889, + 33884.97153219998, + 15355.607643993, + 15545.61102401078, + 15754.265198695226, + 15981.570168046333, + 16227.525932064107, + 16492.13249074856, + 16775.389844099667, + 17077.29799211744, + 17397.85693480189, + 17737.066672153, + 18094.927204170785, + 18471.438530855223, + 18866.600652206333, + 19280.413568224107, + 19712.877278908556, + 20163.991784259666, + 20633.75708427745, + 21122.173178961886, + 21629.240068313, + 22154.95775233079, + 22699.326231015228, + 23262.34550436633, + 23844.01557238412, + 24444.33643506856, + 25063.308092419662, + 25700.93054443746, + 26357.20379112189, + 27032.12783247299, + 27725.702668490787, + 28437.928299175222, + 29168.804724526326, + 29918.331944544127, + 30686.50995922855, + 31473.33876857968, + 32278.81837259745, + 33102.94877128189, + 33945.729964632985, + 15358.959738732003, + 15550.548832989776, + 15760.788721914227, + 15989.679405505332, + 16237.220883763108, + 16503.41315668756, + 16788.256224278666, + 17091.750086536438, + 17413.89474346089, + 17754.690195052, + 18114.136441309784, + 18492.233482234227, + 18888.98131782533, + 19304.3799480831, + 19738.429373007555, + 20191.12959259866, + 20662.480606856447, + 21152.482415780894, + 21661.135019371995, + 22188.438417629786, + 22734.392610554223, + 23298.997598145328, + 23882.253380403123, + 24484.159957327556, + 25104.71732891866, + 25743.925495176452, + 26401.78445610089, + 27078.294211691995, + 27773.454761949786, + 28487.266106874224, + 29219.72824646532, + 29970.84118072312, + 30740.60490964755, + 31529.019433238685, + 32336.08475149645, + 33161.80086442089, + 34006.167772011984, + 15361.991208417, + 15555.166016914774, + 15766.991620079223, + 15997.468017910332, + 16246.59521040811, + 16514.37319757256, + 16800.801979403666, + 17105.88155590144, + 17429.611927065893, + 17771.993092896995, + 18133.025053394784, + 18512.707808559226, + 18911.041358390332, + 19328.025702888106, + 19763.66084205256, + 20217.94677588366, + 20690.883504381447, + 21182.47102754589, + 21692.70934537699, + 22221.598457874785, + 22769.138365039224, + 23335.32906687033, + 23920.170563368116, + 24523.662854532555, + 25145.805940363658, + 25786.59982086145, + 26446.04449602589, + 27124.13996585699, + 27820.88623035479, + 28536.283289519222, + 29270.331143350326, + 30023.02979184812, + 30794.37923501255, + 31584.37947284368, + 32393.03050534145, + 33220.33233250589, + 34066.28495433699, + 15364.702053047999, + 15559.462575785776, + 15772.873893190226, + 16004.936005261336, + 16255.64891199911, + 16525.01261340356, + 16813.027109474668, + 17119.692400212443, + 17445.00848561689, + 17788.975365688, + 18151.593040425785, + 18532.861509830225, + 18932.780773901333, + 19351.350832639106, + 19788.571686043557, + 20244.443334114665, + 20718.965776852452, + 21212.139014256893, + 21723.963046327997, + 22254.43787306578, + 22803.563494470225, + 23371.339910541326, + 23957.767121279117, + 24562.84512668356, + 25186.57392675466, + 25828.953521492454, + 26489.983910896888, + 27169.665094967997, + 27867.99707370579, + 28584.979847110226, + 29320.61341518132, + 30074.89777791912, + 30847.832935323553, + 31639.418887394684, + 32449.655634132454, + 33278.54317553689, + 34126.08151160798, + 15367.092272625001, + 15563.438509602776, + 15778.435541247223, + 16012.083367558333, + 16264.381988536108, + 16535.33140418056, + 16824.931614491667, + 17133.18261946944, + 17460.08441911389, + 17805.637013424996, + 18169.840402402788, + 18552.694586047226, + 18954.199564358332, + 19374.355337336106, + 19813.161904980556, + 20270.619267291666, + 20746.727424269455, + 21241.48637591389, + 21754.896122224993, + 22286.95666320278, + 22837.667998847224, + 23407.03012915833, + 23995.043054136124, + 24601.706773780556, + 25227.02128809166, + 25870.986597069448, + 26533.602700713887, + 27214.869599024994, + 27914.787292002784, + 28633.35577964722, + 29370.57506195832, + 30126.44513893612, + 30900.966010580552, + 31694.13767689168, + 32505.96013786945, + 33336.43339351389, + 34185.55744382498, + 15369.161867148, + 15567.093818365776, + 15783.676564250223, + 16018.910104801333, + 16272.794440019108, + 16545.32956990356, + 16836.515494454667, + 17146.35221367244, + 17474.83972755689, + 17821.978036107997, + 18187.767139325784, + 18572.207037210228, + 18975.297729761332, + 19397.039216979105, + 19837.43149886356, + 20296.474575414664, + 20774.16844663245, + 21270.513112516892, + 21785.508573067993, + 22319.154828285784, + 22871.451878170228, + 23442.399722721326, + 24031.99836193912, + 24640.247795823554, + 25267.14802437466, + 25912.69904759245, + 26576.900865476888, + 27259.75347802799, + 27961.256885245784, + 28681.411087130222, + 29420.21608368132, + 30177.67187489912, + 30953.778460783553, + 31748.53584133468, + 32561.944016552447, + 33394.00298643689, + 34244.71275098798, + 15370.910836616998, + 15570.428502074776, + 15788.596962199223, + 16025.416216990334, + 16280.886266448108, + 16555.00711057256, + 16847.778749363668, + 17159.20118282144, + 17489.274410945887, + 17837.998433737, + 18205.373251194782, + 18591.398863319224, + 18996.07527011033, + 19419.402471568108, + 19861.380467692554, + 20322.009258483664, + 20801.28884394145, + 21299.21922406589, + 21815.800398856998, + 22351.032368314784, + 22904.915132439222, + 23477.448691230325, + 24068.63304468812, + 24678.468192812554, + 25306.954135603653, + 25954.090873061454, + 26619.878405185886, + 27304.31673197699, + 28007.405853434786, + 28729.145769559225, + 29469.53648035032, + 30228.57798580812, + 31006.27028593255, + 31802.61338072368, + 32617.607270181452, + 33451.25195430589, + 34303.54743309698, + 15372.339181031999, + 15573.442560729776, + 15793.196735094223, + 16031.601704125333, + 16288.657467823106, + 16564.36402618756, + 16858.721379218667, + 17171.72952691644, + 17503.388469280893, + 17853.698206311998, + 18222.658738009784, + 18610.270064374225, + 19016.532185405333, + 19441.4451011031, + 19885.00881146756, + 20347.223316498665, + 20828.088616196448, + 21327.604710560892, + 21845.771599591993, + 22382.589283289784, + 22938.057761654225, + 23512.17703468533, + 24104.947102383114, + 24716.367964747555, + 25346.43962177866, + 25995.16207347645, + 26662.535319840885, + 27348.559360871986, + 28053.234196569785, + 28776.559826934223, + 29518.53625196532, + 30279.16347166312, + 31058.441486027554, + 31856.370295058678, + 32672.94989875645, + 33508.18029712089, + 34362.06149015198, + 15373.446900393003, + 15576.135994330776, + 15797.475882935225, + 16037.466566206334, + 16296.10804414411, + 16573.40031674856, + 16869.343384019667, + 17183.93724595744, + 17517.18190256189, + 17869.077353833, + 18239.623599770784, + 18628.820640375223, + 19036.668475646333, + 19463.167105584107, + 19908.316530188556, + 20372.116749459663, + 20854.56776339745, + 21355.66957200189, + 21875.422175272994, + 22413.825573210786, + 22970.879765815225, + 23546.58475308633, + 24140.94053502412, + 24753.947111628553, + 25385.604482899664, + 26035.912648837453, + 26704.87160944189, + 27392.481364712996, + 28098.74191465079, + 28823.65325925522, + 29567.21539852632, + 30329.42833246412, + 31110.292061068554, + 31909.80658433968, + 32727.971902277444, + 33564.788014881895, + 34420.254922152984, + 15374.233994700002, + 15578.508802877779, + 15801.434405722224, + 16043.010803233334, + 16303.23799541111, + 16582.115982255564, + 16879.64476376667, + 17195.824339944444, + 17530.654710788895, + 17884.135876299995, + 18256.267836477782, + 18647.050591322226, + 19056.48414083333, + 19484.568485011103, + 19931.30362385555, + 20396.689557366662, + 20880.726285544453, + 21383.413808388887, + 21904.752125899995, + 22444.741238077786, + 23003.381144922227, + 23580.671846433328, + 24176.61334261112, + 24791.205633455553, + 25424.44871896666, + 26076.342599144453, + 26746.88727398889, + 27436.082743499992, + 28143.929007677787, + 28870.426066522225, + 29615.573920033323, + 30379.37256821112, + 31161.822011055556, + 31962.922248566676, + 32782.67328074445, + 33621.075107588884, + 34478.12772909998, + 15374.700463953, + 15580.560986370776, + 15805.072303455223, + 16048.234415206334, + 16310.047321624108, + 16590.511022708557, + 16889.625518459667, + 17207.39080887744, + 17543.80689396189, + 17898.873773712996, + 18272.591448130785, + 18664.959917215227, + 19075.979180966333, + 19505.649239384107, + 19953.97009246856, + 20420.94174021966, + 20906.56418263745, + 21410.83741972189, + 21933.761451472998, + 22475.336277890783, + 23035.561898975226, + 23614.438314726332, + 24211.96552514412, + 24828.143530228554, + 25462.97232997966, + 26116.451924397454, + 26788.582313481886, + 27479.363497232993, + 28188.795475650786, + 28916.878248735222, + 29663.611816486322, + 30428.99617890412, + 31213.031335988555, + 32015.717287739684, + 32837.05403415745, + 33677.04157524189, + 34535.679910992985, + 15374.732502224047, + 15580.769215253886, + 15805.456722950395, + 16048.79502531357, + 16310.78412234341, + 16591.424014039923, + 16890.714700403096, + 17208.656181432932, + 17545.248457129448, + 17900.491527492617, + 18274.38539252247, + 18666.930052218973, + 19078.12550658214, + 19507.971755611976, + 19956.46879930849, + 20423.616637671665, + 20909.415270701513, + 21413.864698398014, + 21936.964920761184, + 22478.715937791036, + 23039.11774948754, + 23618.170355850707, + 24215.873756880566, + 24832.227952577065, + 25467.232942940227, + 26120.888727970083, + 26793.19530766658, + 27484.152682029755, + 28193.760851059607, + 28922.01981475611, + 29668.929573119272, + 30434.490126149136, + 31218.70147384563, + 32021.563616208823, + 32843.07655323865, + 33683.24028493516, + 34542.054811298316, + 14987.4777707, + 15272.800195588885, + 15576.773415144447, + 15899.397429366665, + 16240.672238255553, + 16600.597841811115, + 16979.174240033335, + 17376.401432922215, + 17792.27942047778, + 18226.808202699995, + 18679.987779588897, + 19151.818151144445, + 19642.299317366662, + 20151.431278255546, + 20679.21403381111, + 21225.64758403333, + 21790.731928922232, + 22374.46706847778, + 22976.853002699998, + 23597.8897315889, + 24237.577255144442, + 24895.91557336666, + 25572.904686255562, + 26268.544593811115, + 26982.83529603332, + 27715.776792922232, + 28467.369084477778, + 29237.612170699995, + 30026.506051588894, + 30834.050727144444, + 31660.246197366654, + 32505.09246225556, + 33368.5895218111, + 34250.73737603334, + 35151.53602492223, + 36070.98546847778, + 37009.08570669998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 10.201494194952453, + "volume": 3.78541 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_25_SP.json b/examples/ColmacCxA_25_SP.json new file mode 100644 index 0000000..0918057 --- /dev/null +++ b/examples/ColmacCxA_25_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 50449.469670471466, + 50525.57062180798, + 50594.402987795256, + 50655.8951323301, + 50709.93717409781, + 50756.38098657219, + 50795.040198015486, + 50825.690191478556, + 50848.068104800666, + 50861.87283060957, + 50866.765016321566, + 50862.36706414144, + 50848.26313106247, + 50823.9991288664, + 50789.08272412358, + 50742.98333819265, + 50685.13214722093, + 50614.922082144236, + 50531.70782868675, + 50434.805827361255, + 50323.494273469, + 50197.01311709971, + 50054.564063131686, + 49895.31057123161, + 49718.37785585475, + 49522.852886244815, + 49307.78438643411, + 49072.18283524328, + 48815.02046628156, + 48535.23126794673, + 48231.71098342496, + 47903.31711069097, + 47548.86890250801, + 47167.14736642775, + 46756.895264790444, + 46316.81711472475, + 45845.5791881479, + 51590.332897018765, + 51705.08777847259, + 51810.57390917695, + 51906.72567128463, + 51993.43920173704, + 52070.57239226397, + 52137.9448893838, + 52195.3380944033, + 52242.495163417865, + 52279.121007311274, + 52304.88229175585, + 52319.4074372124, + 52322.28661893027, + 52313.07176694726, + 52291.27656608969, + 52256.37645597231, + 52207.80863099847, + 52144.972040359986, + 52067.22738803715, + 51973.8971327987, + 51864.26548820193, + 51737.578422592705, + 51593.043659105264, + 51429.83067566236, + 51247.070704975325, + 51043.856734543886, + 50819.24350665637, + 50572.24751838949, + 50301.847021608526, + 50006.98202296725, + 49686.55428390792, + 49339.42732066127, + 48964.426404246624, + 48560.338560471624, + 48125.91256993265, + 47659.85896801433, + 47160.85004488996, + 50511.25393052698, + 50587.15306329846, + 50655.78965195309, + 50717.0917482654, + 50770.94915879833, + 50817.21344490337, + 50855.69792272048, + 50886.177663178125, + 50908.38949199329, + 50922.0319896714, + 50926.76549150645, + 50922.21208758083, + 50907.95562276558, + 50883.54169672009, + 50848.477663892314, + 50802.23263351868, + 50744.23746962413, + 50673.88479102216, + 50590.528971314634, + 50493.48613889199, + 50382.03417693318, + 50255.41272340559, + 50112.82317106518, + 49953.428667456355, + 49776.35411491202, + 49580.68617055358, + 49365.47324629099, + 49129.72550882261, + 48872.41487963532, + 48592.47503500459, + 48288.80140599422, + 47960.251178456696, + 47605.64329303286, + 47223.75844515211, + 46813.339085032356, + 46373.08941767992, + 45901.67540288973, + 51644.02384757712, + 51758.64586743468, + 51864.0002761153, + 51960.02119825436, + 52046.60451327579, + 52123.60785539205, + 52190.85061360398, + 52248.11393170098, + 52295.140708261, + 52331.63559665038, + 52357.26500502409, + 52371.65709632544, + 52374.401788286385, + 52365.05075342727, + 52343.11741905701, + 52308.07696727294, + 52259.366334960956, + 52196.384213795456, + 52118.4910502393, + 52025.009045543826, + 51915.22215574893, + 51788.376091682934, + 51643.678318962746, + 51480.2980579937, + 51297.36628396965, + 51093.97572687292, + 50869.18087147442, + 50621.99795733344, + 50351.40497879781, + 50056.34168500392, + 49735.70957987652, + 49388.37192212903, + 49013.153725263204, + 48608.84175756942, + 48174.184542126495, + 47707.89235680173, + 47208.63723425095, + 51070.054785749846, + 51144.13460536674, + 51211.00735935396, + 51270.59829038508, + 51322.79439592217, + 51367.44442821577, + 51404.358894304925, + 51433.31005601717, + 51454.03192996861, + 51466.22028756374, + 51469.532654995564, + 51463.58831324568, + 51447.96829808414, + 51422.21540006938, + 51385.834164548505, + 51338.29089165702, + 51279.013636318916, + 51207.39220824676, + 51122.778171941565, + 51024.48484669278, + 50911.78730657847, + 50783.92238046512, + 50640.08865200772, + 50479.446459649815, + 50301.11789662338, + 50104.1868109489, + 49887.69880543535, + 49650.66123768025, + 49392.04322006953, + 49110.775619777756, + 48805.751058767826, + 48475.82391379127, + 48119.810316388015, + 47736.48815288655, + 47324.59706440388, + 46882.83844684543, + 46409.87545090515, + 52130.03191032866, + 52243.455493518246, + 52347.62283498094, + 52442.46574169527, + 52527.87777542833, + 52603.71425273574, + 52669.79224496154, + 52725.89057823827, + 52771.749833487054, + 52807.07234641742, + 52831.522207527436, + 52844.72526210365, + 52846.26911022118, + 52835.70310674347, + 52812.53836132268, + 52776.24773839927, + 52726.26585720232, + 52661.98909174938, + 52582.77557084652, + 52487.94517808818, + 52376.779551857435, + 52248.52208532583, + 52102.37792645338, + 51937.513977988616, + 51753.05889746855, + 51548.1030972187, + 51321.69874435306, + 51072.859760774176, + 50800.56182317299, + 50503.74236302909, + 50181.30056661039, + 49832.09737497346, + 49454.95548396326, + 49048.65934421327, + 48611.95516114553, + 48143.55089497049, + 47642.11626068712, + 51633.786080804646, + 51706.041554940384, + 51771.14743524536, + 51829.02615529218, + 51879.56190344202, + 51922.6006228445, + 51957.950011437744, + 51985.379521948365, + 52004.620361891546, + 52015.36549357087, + 52017.26963407847, + 52009.949255294945, + 51992.982583889425, + 51965.90960131956, + 51928.23204383139, + 51879.41340245957, + 51818.878923027165, + 51746.01560614584, + 51660.17220721565, + 51560.65923642514, + 51446.74895875148, + 51317.67539396023, + 51172.63431660546, + 51010.783256029776, + 50831.24149636424, + 50633.0900765284, + 50415.371790230434, + 50177.091185966805, + 49917.214567022595, + 49634.66999147138, + 49328.34727217526, + 48997.09797678471, + 48639.73542773889, + 48255.034702265235, + 47841.73263237991, + 47398.52780488738, + 46924.080561380695, + 52621.06873706845, + 52733.28928762629, + 52836.2669698425, + 52929.93127303875, + 53014.17344132532, + 53088.84647360097, + 53153.76512355292, + 53208.705899656874, + 53253.40706517716, + 53287.56863816639, + 53310.85239146588, + 53322.881852705315, + 53323.24230430293, + 53311.48078346544, + 53287.10608218809, + 53249.58874725455, + 53198.36108023703, + 53132.81713749626, + 53052.312730181475, + 52956.16542423032, + 52843.65454036898, + 52714.02115411221, + 52566.46809576317, + 52400.159950413545, + 52214.22305794355, + 52007.7455130218, + 51779.777165105595, + 51529.32961844049, + 51255.3762320607, + 50956.85211978891, + 50632.65415023628, + 50281.640946802436, + 49902.632887675645, + 49494.412105832416, + 49055.72248903805, + 48585.26967984612, + 48081.721075598776, + 52202.43842653799, + 52272.86490739969, + 52336.20125954121, + 52392.36710743426, + 52441.24383033912, + 52482.67456230443, + 52516.46419216746, + 52542.37936355387, + 52560.14847487797, + 52569.46167934233, + 52569.970884938244, + 52561.28975444539, + 52542.99370543201, + 52514.619910254696, + 52475.66729605873, + 52425.59654477775, + 52363.83009313397, + 52289.75213263807, + 52202.70860958923, + 52102.007225075096, + 51986.91743497189, + 51856.670449944235, + 51710.459235445305, + 51547.438511716806, + 51366.724753788876, + 51167.396191480155, + 50948.49280939782, + 50709.016346937504, + 50447.93029828336, + 50164.15991240807, + 49856.59219307269, + 49524.075898826944, + 49165.42154300894, + 48779.40139374529, + 48364.74947395119, + 47920.16156133019, + 47444.29518837447, + 53117.14445928784, + 53228.15771118933, + 53329.943472069586, + 53422.428913593554, + 53505.502962214625, + 53579.01629917472, + 53642.781360504225, + 53696.57233702203, + 53740.12517433558, + 53773.13757284076, + 53795.26898772197, + 53806.14062895207, + 53805.335461292496, + 53792.398204293066, + 53766.83533229224, + 53728.11507441685, + 53675.667414582276, + 53608.88409149242, + 53527.11859863966, + 53429.686184304795, + 53315.86385155725, + 53184.89035825485, + 53035.966217044006, + 52868.25369535952, + 52680.87681542477, + 52472.92135425159, + 52243.43484364038, + 51991.4265701799, + 51715.86757524754, + 51415.69065500915, + 51089.790360419, + 50737.02299721998, + 50356.206625943414, + 49946.12106190908, + 49505.507875225376, + 49033.070390789064, + 48527.473688285485, + 52776.00148278462, + 52844.594707113036, + 52906.15926114354, + 52960.611960247035, + 53007.83137458277, + 53047.65782909858, + 53079.893403530725, + 53104.30193240398, + 53120.60900503174, + 53128.501965515694, + 53127.62991274617, + 53117.60370040194, + 53097.995936950276, + 53068.34098564699, + 53028.13496453633, + 52976.83574645106, + 52913.86295901244, + 52838.59798463027, + 52750.38396050279, + 52648.52577861676, + 52532.29008574742, + 52400.905283458545, + 52253.56152810238, + 52089.410730819676, + 51907.566557539656, + 51707.10442898008, + 51487.06152064719, + 51246.43676283569, + 50984.19084062883, + 50699.24619389831, + 50390.487017304426, + 50056.759260295825, + 49696.87062710979, + 49309.590576771945, + 48893.650323096605, + 48447.74283468643, + 47970.52283493263, + 53618.268257466385, + 53728.07027462601, + 53828.66218202002, + 53919.968833656574, + 54001.8768383322, + 54074.23455963206, + 54136.85211592965, + 54189.50138038705, + 54231.91598095486, + 54263.79130037209, + 54284.78447616638, + 54294.51440065373, + 54292.561720938706, + 54278.46883891437, + 54251.73991126229, + 54211.840849452485, + 54158.19931974347, + 54090.204743182345, + 54007.20829560465, + 53908.52290763436, + 53793.42326468406, + 53661.145806954744, + 53510.88872943596, + 53341.81198190571, + 53153.03726893053, + 52943.64804986545, + 52712.68953885395, + 52459.168704828066, + 52182.054271508285, + 51880.27671740359, + 51552.728275811554, + 51198.26293481809, + 50815.696437297796, + 50403.80628091354, + 49961.33171811691, + 49486.973756147854, + 48979.39515703485, + 53354.46395836741, + 53421.220047436895, + 53481.01091794254, + 53533.75057615427, + 53579.31478313047, + 53617.541054718036, + 53648.228661552304, + 53671.13862905717, + 53685.99373744503, + 53692.47852171674, + 53690.23927166163, + 53678.88403185765, + 53657.982601671065, + 53627.06653525683, + 53585.629141558245, + 53533.125484307144, + 53468.9723820239, + 53392.548408017414, + 53303.19389038495, + 53200.210912012386, + 53082.86331057404, + 52950.37667853277, + 52801.93836313989, + 52636.69746643523, + 52453.76484524713, + 52252.213111192395, + 52031.07663067638, + 51789.351524892845, + 51525.99566982413, + 51239.92869624104, + 50930.03198970291, + 50595.148690557486, + 50234.08369394115, + 49845.60364977862, + 49428.43696278327, + 48981.273792456814, + 48502.76605308958, + 54124.44836107174, + 54233.035537343014, + 54332.43198903959, + 54422.56025251275, + 54503.304618902184, + 54574.5111341362, + 54635.98759893152, + 54687.503568793334, + 54728.790354015444, + 54759.541019680044, + 54779.41038565787, + 54788.01502660816, + 54784.933271978596, + 54769.705206005485, + 54741.83266771344, + 54700.77925091574, + 54645.97030421404, + 54576.79293099863, + 54492.59598944816, + 54392.690092529825, + 54276.34760799932, + 54142.80265840087, + 53991.251121067166, + 53820.85062811938, + 53630.72056646721, + 53419.94207780882, + 53187.55805863092, + 52932.57316020866, + 52653.953788605715, + 52350.628104674266, + 52021.486024055, + 51665.37921717701, + 51281.12110925807, + 50867.48688030422, + 50423.213465110224, + 49946.999553259164, + 49437.505589122695, + 53613.21857897802, + 53679.15673274397, + 53738.158518708326, + 53790.13669421482, + 53834.96577139548, + 53872.48201717101, + 53902.48345325043, + 53924.72985613139, + 53938.94275710003, + 53944.805442230914, + 53941.962952387126, + 53930.0220832203, + 53908.55138517051, + 53877.081163466355, + 53835.10347812495, + 53782.07214395182, + 53717.402730541064, + 53640.47256227529, + 53550.62071832559, + 53447.148032651465, + 53329.31709400104, + 53196.35224591085, + 53047.43958670598, + 52881.72696949999, + 52698.32400219493, + 52496.302047481375, + 52274.694222838334, + 52032.495400533386, + 51768.66220762256, + 51482.113025950406, + 51171.72799215, + 50836.34899764278, + 50474.7796886389, + 50085.78546613678, + 49668.09348592356, + 49220.39265857466, + 48741.33364945414, + 54351.12172884874, + 54459.16771514184, + 54558.03223904899, + 54647.63680649124, + 54727.86467817808, + 54798.560869607594, + 54859.5321510662, + 54910.54704762895, + 54951.33583915939, + 54981.59056030946, + 55000.965000519696, + 55009.07470401908, + 55005.49696982511, + 54989.77085174381, + 54961.39715836963, + 54919.83845308556, + 54864.51905406308, + 54794.82503426219, + 54710.10422143138, + 54609.66619810757, + 54492.78230161625, + 54358.6856240714, + 54206.57101237547, + 54035.59506821943, + 53844.87614808275, + 53633.49436323339, + 53400.491579727764, + 53144.87141841085, + 52865.59925491607, + 52561.60221966538, + 52231.76919786925, + 51874.95082952653, + 51489.9595094248, + 51075.56938713982, + 50630.51636703614, + 50153.498108266656, + 49643.174024772765, + 53937.81361109734, + 54002.72907071597, + 54060.744756816486, + 54111.771866567986, + 54155.683351927844, + 54192.313919642074, + 54221.460031245144, + 54242.87990305995, + 54256.293506198024, + 54261.3825665593, + 54257.7905648322, + 54245.12273649367, + 54222.94607180921, + 54190.789315832684, + 54148.142968406595, + 54094.459284161836, + 54029.15227251786, + 53951.597697682606, + 53861.133078652485, + 53757.05768921239, + 53638.6325579358, + 53505.080468184584, + 53355.58595810919, + 53189.29532064851, + 53005.31660352996, + 52802.71960926943, + 52580.535895171364, + 52337.7587733286, + 52073.34331062255, + 51786.20632872315, + 51475.226404088724, + 51139.2438679662, + 50777.06080639095, + 50387.441060186844, + 49969.11022496632, + 49520.755651130174, + 49041.02644386781, + 54635.69204855968, + 54743.06110773533, + 54841.260831462365, + 54930.21143843522, + 55009.794902136804, + 55079.854950838526, + 55140.19706760033, + 55190.588490270544, + 55230.75821148612, + 55260.39697867247, + 55279.15729404344, + 55286.65341460147, + 55282.461352137434, + 55266.11887323067, + 55237.125499249145, + 55194.9425063492, + 55138.99292547566, + 55068.66154236201, + 54983.29489753005, + 54882.201286290154, + 54764.65075874117, + 54629.87511977051, + 54477.067929054014, + 54305.384501056, + 54113.94190502938, + 53901.81896501547, + 53668.05625984411, + 53411.65612313365, + 53131.58264329093, + 52826.76166351134, + 52496.08078177862, + 52138.38935086515, + 51752.49847833177, + 51337.181026527775, + 50891.17161259104, + 50413.16660844784, + 49901.824140813, + 54526.03724777359, + 54589.10896828303, + 54645.348353631874, + 54694.66379188826, + 54736.925425908645, + 54771.96515333813, + 54799.57662661028, + 54819.515252947065, + 54831.49819435912, + 54835.204367645405, + 54830.27444439344, + 54816.31085097933, + 54792.87776856759, + 54759.501133111145, + 54715.668635351634, + 54660.82972081901, + 54594.39558983179, + 54515.73919749704, + 54424.1952537102, + 54319.0602231553, + 54199.592325304846, + 54065.01153441983, + 53914.49957954975, + 53747.19994453262, + 53562.21786799489, + 53358.62034335158, + 53135.43611880622, + 52891.65569735067, + 52626.23133676547, + 52338.07704961962, + 52026.068603270534, + 51689.04351986425, + 51325.80107633517, + 50935.10230440628, + 50515.66999058908, + 50066.18867618347, + 49585.30465727793, + 55152.00564737408, + 55258.15364318593, + 55355.15569661045, + 55442.929708685275, + 55521.355335236425, + 55590.27398687853, + 55649.48882901466, + 55698.76478183635, + 55737.8285203237, + 55766.36847424525, + 55784.034828158095, + 55790.439521407774, + 55785.15624812836, + 55767.72045724236, + 55737.629352460885, + 55694.34189228343, + 55637.27878999805, + 55565.822513681356, + 55479.317286198304, + 55377.06908520244, + 55258.3456431358, + 55122.376447228926, + 54968.352739500864, + 54795.42751675909, + 54602.71553059966, + 54389.29328740706, + 54154.19904835436, + 53896.43282940301, + 53614.95640130302, + 53308.69328959295, + 52976.52877459971, + 52617.3098914389, + 52229.845430014444, + 51812.90593501883, + 51365.22370593313, + 50885.49279702675, + 50372.369017357705, + 55119.12072418339, + 55180.34598045899, + 55234.80833324322, + 55282.413361503255, + 55323.02839899469, + 55356.48253426171, + 55382.56661063685, + 55401.03322624133, + 55411.59673398473, + 55413.93324156515, + 55407.68061146923, + 55392.43846097207, + 55367.76816213728, + 55333.19284181699, + 55288.19738165178, + 55232.228418070714, + 55164.69434229145, + 55084.965300320066, + 54992.37319295114, + 54886.211675767736, + 54765.73615914149, + 54630.16380823245, + 54478.673542989214, + 54310.40603814883, + 54124.463723236906, + 53919.91078256748, + 53695.77315524314, + 53451.038535154934, + 53184.65637098242, + 52895.53786619365, + 52582.5559790452, + 52244.5454225821, + 51880.30266463793, + 51488.58592783468, + 51068.115189582975, + 50617.57218208177, + 50135.60039231864, + 55673.394533947045, + 55778.31885006601, + 55874.122620794165, + 55960.721429512276, + 56037.99261438957, + 56105.77526838385, + 56163.87023924125, + 56212.04012949663, + 56250.00929647313, + 56277.46385228255, + 56294.05166382507, + 56299.382352789435, + 56293.02729565287, + 56274.519623681095, + 56243.35422292833, + 56198.98773423728, + 56140.83855323913, + 56068.28683035366, + 55980.67447078905, + 55877.30513454192, + 55757.444236397554, + 55620.31894592963, + 55465.118187500346, + 55290.99264026038, + 55097.054738148916, + 54882.37866989367, + 54646.000379010744, + 54386.917563804906, + 54104.08967736927, + 53796.437927585524, + 53462.845277123844, + 53102.15644344286, + 52713.177898789814, + 52294.677870200285, + 51845.38633949848, + 51363.995043297036, + 50849.15747299709, + 55717.04894510212, + 55776.4253965529, + 55829.11036949322, + 55875.00663378937, + 55913.97871409603, + 55945.852889856404, + 55970.417195302245, + 55987.42141945368, + 55996.5771061195, + 55997.55755389684, + 55989.9978161714, + 55973.49470111742, + 55947.60677169759, + 55911.854345663036, + 55865.719495553494, + 55808.646048697134, + 55740.039587210624, + 55659.26744799917, + 55565.658722756394, + 55458.504257964516, + 55337.05665489418, + 55200.53026960455, + 55048.10121294327, + 54878.90735054653, + 54692.04830283898, + 54486.58544503375, + 54261.54190713252, + 54015.90257392539, + 53748.614084991015, + 53458.5848346966, + 53144.68497219768, + 52805.74640143843, + 52440.562781151486, + 52047.88952485798, + 51626.443800867564, + 51174.90453227829, + 50691.91239697683, + 56199.863133698665, + 56303.56148373482, + 56398.16668931183, + 56483.59201615373, + 56559.71248477282, + 56626.36487047012, + 56683.34770333498, + 56730.42126824528, + 56767.30760486751, + 56793.69050765647, + 56809.215525855616, + 56813.489963496824, + 56806.082879400514, + 56786.525087175505, + 56754.30915521923, + 56708.88940671757, + 56649.681919644856, + 56576.06452676403, + 56487.37681562644, + 56382.92012857194, + 56261.95756272888, + 56123.71397001416, + 55967.37595713311, + 55792.09188557963, + 55596.97187163604, + 55381.087786373166, + 55143.473255650395, + 54883.12366011557, + 54598.996135205, + 54290.00957114358, + 53955.04461294457, + 53592.943660409845, + 53202.51086812974, + 52782.51214548304, + 52331.675156637146, + 51848.68932054782, + 51332.20581095938, + 56319.805864293325, + 56377.33155486191, + 56428.23918521272, + 56472.42871611109, + 56509.76186311077, + 56540.06209655411, + 56563.11464157182, + 56578.66647808322, + 56586.42634079617, + 56586.06471920686, + 56577.21385760008, + 56559.467755049125, + 56532.38216541581, + 56495.47459735034, + 56448.2243142915, + 56390.072334466575, + 56320.4214308913, + 56238.63613136995, + 56144.04271849529, + 56035.929229648544, + 55913.545456999476, + 55776.10294750631, + 55622.775002915834, + 55452.69667976324, + 55264.964789372316, + 55058.63789785527, + 54832.73632611283, + 54586.2421498342, + 54318.09919949711, + 54027.21306036782, + 53712.45107250103, + 53372.642330739916, + 53006.577684716285, + 52613.00973885025, + 52190.65285235057, + 51738.18313921444, + 51254.23846822754, + 56731.41492103733, + 56833.88534853978, + 56927.29203645006, + 57011.5459328353, + 57086.51974055101, + 57152.04791724136, + 57207.92667533883, + 57253.91398206454, + 57289.72955942807, + 57315.05488422745, + 57329.533188049274, + 57332.76945726859, + 57324.330433048955, + 57303.74461134243, + 57270.50224288954, + 57224.05533321937, + 57163.81764264942, + 57089.164686285774, + 56999.43373402297, + 56893.923810544, + 56771.89569532042, + 56632.571922612246, + 56475.13678146805, + 56298.73631572481, + 56102.47832400808, + 55885.432359731865, + 55646.62973109865, + 55385.06350109949, + 55099.68848751384, + 54789.421262909724, + 54453.1401546437, + 54089.68524486066, + 53697.85837049423, + 53276.42312326628, + 52824.10484968738, + 52339.59065105649, + 51821.52938346111, + 56927.374484508604, + 56983.04784267133, + 57032.178552220656, + 57074.66376482098, + 57110.36238692516, + 57139.09507977461, + 57160.64425939912, + 57174.75409661715, + 57181.13051703556, + 57179.44120104966, + 57169.31558384333, + 57150.34485538896, + 57122.08196044737, + 57084.04159856796, + 57035.70022408852, + 56976.49604613543, + 56905.82902862352, + 56823.06089025616, + 56727.51510452515, + 56618.476899710826, + 56495.19325888203, + 56356.8729198961, + 56202.68637539886, + 56031.76587282462, + 55843.2054143962, + 55636.060757124906, + 55409.34941281062, + 55162.050648041564, + 54893.10548419453, + 54601.416697434914, + 54285.84881871648, + 53945.22813378147, + 53578.342683160765, + 53183.94226217358, + 52760.73842092779, + 52307.40446431959, + 51822.575452033816, + 57268.052419359374, + 57369.29329781644, + 57461.50184548345, + 57544.586692770725, + 57618.41822487696, + 57682.82858178944, + 57737.61165828388, + 57782.5231039245, + 57817.2803230641, + 57841.562474843864, + 57855.01047319353, + 57857.22698683134, + 57847.77643926397, + 57826.185008786735, + 57791.940628483244, + 57744.492986225785, + 57683.25352467501, + 57607.59544128021, + 57516.85368827903, + 57410.32497269766, + 57287.267756350826, + 57146.90225584174, + 56988.41044256205, + 56810.936042692, + 56613.58453720024, + 56395.42316184395, + 56155.48090716885, + 55892.74851850909, + 55606.17849598732, + 55294.685094514716, + 54957.14432379102, + 54592.3939483043, + 54199.23348733131, + 53776.42421493711, + 53322.68915997545, + 52836.71310608846, + 52317.14259170672, + 57539.73685748782, + 57593.556696254665, + 57640.91129132415, + 57681.69498525984, + 57715.76387541364, + 57742.935813926044, + 57762.99040772598, + 57775.66901853086, + 57780.67476284675, + 57777.672511968005, + 57766.28889197759, + 57746.11228374692, + 57716.69282293601, + 57677.54239999322, + 57628.13466015555, + 57567.90500344835, + 57496.25058468556, + 57412.53031346969, + 57316.06485419154, + 57206.13662603061, + 57081.98980295478, + 56942.830313720435, + 56787.82584187254, + 56616.10582574447, + 56426.76145845811, + 56218.84568792389, + 55991.373216840715, + 55743.32050269593, + 55473.62575776544, + 55181.18894911362, + 54864.8717985934, + 54523.49778284609, + 54155.85213330166, + 53760.68183617838, + 53336.69563248323, + 52882.56401801147, + 52396.91924334704, + 57809.777201049474, + 57909.787233888535, + 58000.79834867487, + 58082.716858161984, + 58155.41082989173, + 58218.71008619462, + 58272.40620418947, + 58316.25251578365, + 58349.96410767319, + 58373.217821342405, + 58385.652253064196, + 58386.867753899984, + 58376.426429699626, + 58353.85214110153, + 58318.63050353262, + 58270.20888720819, + 58207.99641713215, + 58131.36397309693, + 58039.644189683364, + 57932.13145626078, + 57808.08191698708, + 57666.71347080864, + 57507.205771460314, + 57328.70022746544, + 57130.30000213588, + 56911.07001357199, + 56670.03693466264, + 56406.18919308514, + 56118.47697130533, + 55805.812206577546, + 55467.068590944655, + 55101.081571237955, + 54706.64834907734, + 54282.52788087101, + 53827.440877815934, + 53340.069805897336, + 52819.05888588908, + 58156.874083958806, + 58208.839600873354, + 58254.419272318344, + 58293.50463175646, + 58325.94896743865, + 58351.56732240451, + 58370.13649448203, + 58381.39503628778, + 58385.04325522678, + 58380.743213492584, + 58368.11872806716, + 58346.755370721075, + 58316.20046801335, + 58275.96310129148, + 58225.51410669153, + 58164.28607513793, + 58091.67335234373, + 58007.03203881046, + 57909.67998982809, + 57798.89681547512, + 57673.923880618546, + 57533.96430491386, + 57378.182962805084, + 57205.70648352464, + 57015.623251093566, + 56806.983404321334, + 56578.79883680593, + 56330.043196933766, + 56059.651887879874, + 55766.5220676077, + 55449.51264886923, + 55107.44429920488, + 54739.099440943675, + 54343.222251203006, + 53918.51866188889, + 53463.65635969571, + 52977.26478610649, + 58356.58988748021, + 58455.368108067756, + 58545.18282727512, + 58625.93804019901, + 58697.49949672445, + 58759.694701525055, + 58812.31291406285, + 58855.10514858841, + 58887.784174140834, + 58910.024514547695, + 58921.46244842501, + 58921.69600917739, + 58910.284984997845, + 58886.75091886798, + 58850.577108557816, + 58801.20860662591, + 58738.05222041925, + 58660.47651207349, + 58567.8117985126, + 58459.350151449114, + 58334.34539738406, + 58192.01311760699, + 58031.53064819593, + 57852.03708001738, + 57652.633258726375, + 57432.38178476647, + 57190.30701336962, + 56925.395054556364, + 56636.59377313568, + 56322.81278870512, + 55982.92347565066, + 55615.75896314679, + 55220.11413515657, + 54794.745630431375, + 54338.37184251132, + 53849.672919724806, + 53327.29076518886, + 58778.76631363765, + 58828.877090777154, + 58872.68341398666, + 58910.07400762789, + 58940.8993508509, + 58964.97167759435, + 58982.06497658537, + 58991.91499133952, + 58994.219220160994, + 58988.63691614236, + 58974.78908716469, + 58952.25849589763, + 58920.58965979933, + 58879.2888511163, + 58827.824096883676, + 58765.62517892506, + 58692.08363385252, + 58606.5527530667, + 58508.3475827566, + 58396.74492389984, + 58270.983332262505, + 58130.26311839915, + 57973.746347652894, + 57800.556840155245, + 57609.780170826285, + 57400.46366937462, + 57171.61642029727, + 56922.20926287979, + 56651.17479119622, + 56357.407354109164, + 56039.76305526962, + 55697.059753117144, + 55328.07706087977, + 54931.55634657407, + 54506.20073300508, + 54050.675097766274, + 53563.60607323974, + 58908.49014901247, + 59006.03592065409, + 59094.65561152337, + 59174.25089906008, + 59244.68521549242, + 59305.78374783721, + 59357.333437899644, + 59399.08298227343, + 59430.74283234086, + 59451.985194272645, + 59462.44402902803, + 59461.7150523547, + 59449.35573478895, + 59424.88530165542, + 59387.78473306739, + 59337.49676392653, + 59273.42588392307, + 59194.938337535765, + 59101.36212403175, + 58991.98699746673, + 58866.06446668495, + 58722.807795319066, + 58561.392001790315, + 58380.95385930834, + 58180.591895871374, + 57959.3663942661, + 57716.299392067645, + 57450.37468163973, + 57160.53781013451, + 56845.69607949267, + 56504.71854644337, + 56136.436022504284, + 55739.64107398157, + 55313.08802196987, + 54855.4929423524, + 54365.533665800765, + 53841.84977777513, + 59405.39274522848, + 59453.64874920386, + 59495.68368410049, + 59531.38346517921, + 59560.59576248912, + 59583.13000086799, + 59598.75735994198, + 59607.21077412581, + 59608.1849326227, + 59601.33627942429, + 59586.28301331082, + 59562.60508785091, + 59529.844211401876, + 59487.503847109234, + 59435.049212907295, + 59371.907281518645, + 59297.4667804545, + 59211.078192014545, + 59112.05375328693, + 58999.667456148294, + 58873.1550472638, + 58731.714028087146, + 58574.503654860426, + 58400.64493861437, + 58209.22064516807, + 57999.275295129155, + 57769.81516389383, + 57519.808281646685, + 57248.18443336086, + 56953.83515879802, + 56635.61375250825, + 56292.33526383018, + 55922.77649689097, + 55525.67601060621, + 55099.73411868005, + 54643.61288960508, + 54155.9361466624, + 59465.47670499513, + 59561.7897209356, + 59649.21608064671, + 59727.655143911375, + 59796.96802530101, + 59856.97759417555, + 59907.468474683395, + 59948.18704576141, + 59978.84144113506, + 59999.1015493182, + 60008.59901361327, + 60006.927232111084, + 59993.64135769115, + 59968.258298021225, + 59930.25671555779, + 59879.077027545696, + 59814.121406018305, + 59734.753777797516, + 59640.29982449372, + 59530.04698250574, + 59403.244443020936, + 59259.10315201521, + 59096.795810252916, + 58915.456873286916, + 58714.18255145853, + 58492.03080989764, + 58248.02136852259, + 57981.13570204025, + 57690.31703994589, + 57374.47036652341, + 57032.462420845106, + 56663.12169677183, + 56265.23844295293, + 55837.5646628262, + 55378.814114618, + 54887.66231134311, + 54362.746520804896, + 60036.73162642368, + 60083.133208379506, + 60123.39909941956, + 60157.41240570376, + 60185.01798818029, + 60206.02246258605, + 60220.19419944619, + 60227.263324074556, + 60226.92171657348, + 60218.82301183368, + 60202.5825995344, + 60177.77762414349, + 60143.946984917166, + 60100.59133590019, + 60047.17308592584, + 59983.116398615864, + 59907.80719238051, + 59820.59314041856, + 59720.78367071722, + 59607.64996605224, + 59480.4249639879, + 59338.30335687688, + 59180.441591860515, + 59005.9578708684, + 58813.9321506189, + 58603.406142618696, + 58373.38331316298, + 58122.82888333549, + 57850.66982900844, + 57555.794880842586, + 57237.05452428709, + 56893.26099957962, + 56523.1883017465, + 56125.57218060235, + 55699.11014075041, + 55242.46144158235, + 54754.24709727834, + 60027.547323765386, + 60122.627607188566, + 60208.86266286053, + 60286.14953290745, + 60354.347014243824, + 60413.27565857287, + 60462.71777238598, + 60502.41741696335, + 60532.08040837354, + 60551.374317473565, + 60559.92846990903, + 60557.333946113984, + 60543.14358131099, + 60516.8719655111, + 60477.99544351385, + 60425.95211490731, + 60360.14183406797, + 60279.92621016096, + 60184.628607139784, + 60073.53414374645, + 59945.889693511504, + 59800.90388475397, + 59637.747100581444, + 59455.55147888982, + 59253.410912363746, + 59030.3810484762, + 58785.479289488656, + 58517.68479245117, + 58225.938469202214, + 57909.14298636883, + 57566.16276536651, + 57195.823982399204, + 56796.9145684595, + 56368.184209328305, + 55908.3443455752, + 55416.06817255809, + 54889.99064042347, + 60672.760253903616, + 60717.308149518096, + 60755.807725691535, + 60788.13927948287, + 60814.14486273942, + 60833.62828209712, + 60846.35509898028, + 60852.052629601756, + 60850.40994496299, + 60841.07787085377, + 60823.668987852434, + 60797.75763132589, + 60762.87989142949, + 60718.533613107, + 60664.17839609086, + 60599.23559490184, + 60523.088318849266, + 60435.081432031075, + 60334.52155333352, + 60220.67705643143, + 60092.77806978815, + 59950.01647665548, + 59791.54591507375, + 59616.48177787179, + 59423.901212666875, + 59212.84312186483, + 58982.30816266004, + 58731.258747035165, + 58458.6190417616, + 58163.274968399135, + 57844.074203296004, + 57499.826177589064, + 57129.30207720359, + 56731.234842853344, + 56304.319170040646, + 55847.21150905624, + 55358.5300649794, + 60594.69882264836, + 60688.54672667718, + 60773.592835368225, + 60849.731873190765, + 60916.82031940251, + 60974.67640804977, + 61023.08012796727, + 61061.77322277821, + 61090.45919089434, + 61108.803285515925, + 61116.432514631655, + 61112.935641018805, + 61097.863182243054, + 61070.72741065865, + 61031.00235340827, + 60978.12379242319, + 60911.48926442306, + 60830.458060916164, + 60734.35122819914, + 60622.451567357195, + 60494.00363426408, + 60348.21373958195, + 60184.24994876152, + 60001.242082041965, + 59798.28171445098, + 59574.42217580473, + 59328.678550707955, + 59060.02767855379, + 58767.40815352389, + 58449.72032458846, + 58105.82629550613, + 57734.549924824125, + 57334.67682587809, + 56904.95436679213, + 56444.091670479, + 55950.759614639785, + 55423.59083176416, + 61313.45497333684, + 61356.15030282187, + 61392.88667765225, + 61423.541585786064, + 61447.95426996967, + 61465.925727738075, + 61477.21871141472, + 61481.55772811152, + 61478.629039728956, + 61468.08066295594, + 61449.522369269944, + 61422.52568493684, + 61386.62389101116, + 61341.312023335704, + 61286.046872542, + 61220.24698404994, + 61143.29265806791, + 61054.52594959287, + 60953.25066841023, + 60838.73237909386, + 60710.19840100623, + 60566.83780829817, + 60407.80142990913, + 60232.201849567, + 60039.11340578816, + 59827.57219187754, + 59596.5760559285, + 59345.08460082293, + 59072.019184231154, + 58776.26291861215, + 58456.66067121322, + 58112.01906407031, + 57741.10647400771, + 57342.653032638314, + 56915.35062636355, + 56457.852896373195, + 55968.77523864564, + 61166.92706795742, + 61259.54327565398, + 61343.40312436135, + 61418.39902089204, + 61484.38512684686, + 61541.17735861529, + 61588.55338737525, + 61626.25263909311, + 61653.97629452377, + 61671.38728921063, + 61678.11031348563, + 61673.731812469145, + 61657.79998607006, + 61629.82478898571, + 61589.27793070206, + 61535.59287549344, + 61468.16484242277, + 61386.35080534139, + 61289.46949288923, + 61176.80138849457, + 61047.588730374344, + 60901.03551153388, + 60736.30747976706, + 60552.532137656264, + 60348.798742572275, + 60124.15830667453, + 59877.623596910824, + 59608.16913501753, + 59314.73119751943, + 58996.20781572995, + 58651.45877575083, + 58279.3056184725, + 57878.53163957373, + 57447.88188952185, + 56986.06317357274, + 56491.74405177065, + 55963.55483894843, + 61958.791179380125, + 61999.635447481196, + 62034.61211902578, + 62063.595872871025, + 62086.423142662396, + 62102.89211683394, + 62112.76273860814, + 62115.756705996115, + 62111.55747179734, + 62099.81024359985, + 62080.12198378015, + 62052.061409503265, + 62015.158992722725, + 61968.90696018053, + 61912.75929340719, + 61846.13172872168, + 61768.401757231506, + 61678.90862483272, + 61576.953332209785, + 61461.79863483566, + 61332.66904297187, + 61188.75082166841, + 61029.19199076373, + 60853.10232488483, + 60659.55335344718, + 60447.5783606548, + 60216.172385500104, + 59964.292221764044, + 59690.856418016105, + 59394.745277614296, + 59074.800858705035, + 58729.826974223244, + 58358.58919189244, + 57959.81483422453, + 57532.19297852003, + 57074.37445686777, + 56584.971856145276, + 61744.226974994075, + 61835.612499359566, + 61918.28910501969, + 61992.14688113011, + 62057.03767163482, + 62112.77507526653, + 62159.13444554615, + 62195.85289078337, + 62222.629274076244, + 62239.12421331132, + 62244.96008116364, + 62239.72100509679, + 62222.95286736284, + 62194.16330500234, + 62152.821709844335, + 62098.35922850635, + 62030.16876239444, + 61947.6049677032, + 61849.98425541562, + 61736.58479130324, + 61606.64649592608, + 61459.37104463272, + 61293.921867560144, + 61109.42414963387, + 60904.96483056798, + 60679.59260486495, + 60432.3179218158, + 60162.11298550001, + 59867.911754785615, + 59548.60994332914, + 59203.06501957557, + 58830.09620675839, + 58428.484482899636, + 57996.97258080974, + 57534.26498808781, + 57039.0279471212, + 56509.88945508596, + 62608.74331567822, + 62647.73841167453, + 62680.959262524244, + 62708.27773798351, + 62729.52746259695, + 62744.50381569765, + 62752.963931407285, + 62754.62669863591, + 62749.172761082154, + 62736.244517233135, + 62715.44612036443, + 62686.34347854015, + 62648.4642546129, + 62601.29786622373, + 62544.29548580229, + 62476.87004056664, + 62398.39621252333, + 62308.2104384675, + 62205.61090998268, + 62089.85757344098, + 61960.17213000294, + 61815.73803561763, + 61655.700501022686, + 61479.16649174405, + 61285.20472809635, + 61072.845685182656, + 60841.08159289453, + 60588.866435911965, + 60315.115953703535, + 60018.7076405263, + 59698.48074542574, + 59353.236272235976, + 58981.736979579466, + 58582.707380867294, + 58154.83374429901, + 57696.764092862584, + 57207.10820433454, + 62326.59250804788, + 62416.748692022615, + 62498.24540151102, + 62570.970408011905, + 62634.773237812435, + 62689.46517198849, + 62734.81924640424, + 62770.57025171238, + 62796.41473335422, + 62812.01099155946, + 62816.97908134633, + 62810.90081252156, + 62793.31974968041, + 62763.74121220654, + 62721.63227427224, + 62666.421764838145, + 62597.50026765348, + 62514.22012125603, + 62415.89541897193, + 62301.802008915925, + 62171.17749399118, + 62023.221231889394, + 61857.0943350908, + 61671.91967086406, + 61466.781861266354, + 61240.72728314337, + 60992.76406812935, + 60721.862102646905, + 60426.95302790722, + 60106.930239909976, + 59760.64888944331, + 59386.92588208397, + 58984.53987819703, + 58552.231292936194, + 58088.70229624365, + 57592.61681285001, + 57062.60052227443, + 63263.284874864075, + 63300.43307256846, + 63331.902369847805, + 63357.56182735741, + 63377.24226054092, + 63390.736239630554, + 63397.79808964699, + 63398.14389039942, + 63391.45147648559, + 63377.36043729163, + 63355.472116992234, + 63325.34961455056, + 63286.51778371838, + 63238.46323303575, + 63180.63432583142, + 63112.44118022254, + 63033.25566911473, + 62942.41142020224, + 62839.20381596765, + 62722.889993682154, + 62592.68884540541, + 62447.781017985566, + 62287.30891305924, + 62110.376687051605, + 61916.05025117629, + 61703.35727143546, + 61471.28716861974, + 61218.79111830824, + 60944.78205086858, + 60648.13465145696, + 60327.68536001789, + 59982.232371284575, + 59610.53563477859, + 59211.31685481007, + 58783.259490477656, + 58325.00875566838, + 57835.17161905793, + 62914.01668039656, + 63002.94519685997, + 63083.26568699125, + 63154.86360463246, + 63217.58615841394, + 63271.242311754606, + 63315.60278286191, + 63350.40004473169, + 63375.32832514837, + 63390.04360668491, + 63394.16362670263, + 63387.2678773515, + 63368.897605569866, + 63338.555813084604, + 63295.70725641109, + 63239.778446853285, + 63170.157650503475, + 63086.19488824259, + 62987.20193574001, + 62872.45232345357, + 62741.18133662965, + 62592.58601530313, + 62425.82515429734, + 62240.01930322414, + 62034.250766483914, + 61807.56360326551, + 61558.96362754628, + 61287.41840809206, + 60991.85726845718, + 60671.171286984485, + 60324.21329680528, + 59949.79788583947, + 59546.70139679533, + 59113.661927169705, + 58649.37932924796, + 58152.51521010385, + 57621.69293159974, + 63922.38839855883, + 63957.69235631778, + 63987.41475168496, + 64011.42183621482, + 64029.54161625004, + 64041.56385292194, + 64047.24006215028, + 64046.283514643364, + 64038.36923589794, + 64023.13400619932, + 64000.17636062119, + 63969.056589025866, + 63929.29673606412, + 63880.38060117517, + 63821.75373858681, + 63752.823457315295, + 63672.95882116527, + 63581.490648730134, + 63477.711513391536, + 63360.87574331974, + 63230.19942147346, + 63084.860385599946, + 62923.998228234916, + 62746.714296702645, + 62552.071693115766, + 62339.09527437559, + 62106.77165217182, + 61854.04919298261, + 61579.83801807469, + 61283.01000350331, + 60962.39878011215, + 60616.79973353341, + 60244.97000418781, + 59845.628487284484, + 59417.455832821244, + 58959.09444558417, + 58469.148485147976, + 63506.49155430604, + 63594.19440607663, + 63673.342683604584, + 63743.81952307507, + 63805.46981546159, + 63858.10020652631, + 63901.47909681972, + 63935.336641680944, + 63959.36475123754, + 63973.217090405575, + 63976.509078889605, + 63968.81789118269, + 63949.68245656643, + 63918.60345911084, + 63875.04333767448, + 63818.42628590441, + 63748.13825223612, + 63663.52693989374, + 63563.90180688978, + 63448.53406602525, + 63316.65668488967, + 63167.46438586112, + 63000.11364610612, + 62813.722697579695, + 62607.37152702532, + 62380.101875975066, + 62130.91724074946, + 61858.78287245746, + 61562.62577699658, + 61241.33471505286, + 60893.7602021008, + 60518.71450840336, + 60114.97165901212, + 59681.26743376695, + 59216.2993672965, + 58718.72674901763, + 58187.17062313587, + 63995.90256011372, + 64031.00178295841, + 64060.530381801094, + 64084.35429607358, + 64102.301219996036, + 64114.16060257717, + 64119.683647614176, + 64118.58331369276, + 64110.53431418716, + 64095.173117260034, + 64072.097945862566, + 64040.86877773445, + 64001.00734540392, + 63951.997136187594, + 63893.28339219069, + 63824.273110306916, + 63744.33504221833, + 63652.799694395726, + 63548.95932809822, + 63432.067959373475, + 63301.34135905767, + 63155.95705277542, + 62995.05432093994, + 62817.73419875287, + 62623.059476204326, + 62410.05469807296, + 62177.706163925985, + 61924.96192811898, + 61650.73179979605, + 61353.88734288988, + 61033.26187612161, + 60687.650473000824, + 60315.80996182569, + 59916.45892568279, + 59488.27770244732, + 59029.90838478281, + 58539.954820141415, + 63572.63354355759, + 63660.20034821634, + 63739.21864145805, + 63809.571301950265, + 63871.10296314888, + 63923.620013298416, + 63966.89059543172, + 64000.6446073703, + 64024.57370172407, + 64038.33128589147, + 64041.53252205942, + 64033.75432720338, + 64014.53537308727, + 63983.376086263466, + 63939.738648072984, + 63883.046994645156, + 63812.686816897876, + 63728.00556053766, + 63628.31242605935, + 63512.87836874632, + 63380.93609867054, + 63231.68008069236, + 63064.26653446072, + 62877.81343441298, + 62671.40050977501, + 62444.06924456124, + 62194.82287757459, + 61922.62640240634, + 61626.40656743642, + 61305.05187583317, + 60957.412585553546, + 60582.30070934281, + 60178.49001473494, + 59744.71602405217, + 59279.676014405486, + 58782.029017694156, + 58250.3958206061, + 184876.63534396785, + 184953.30797525487, + 185069.48309465786, + 185224.55221567568, + 185417.86860659643, + 185648.74729049584, + 185916.46504523893, + 186220.26040347872, + 186559.33365265693, + 186932.8468350036, + 187339.92374753774, + 187779.64994206603, + 188251.07272518464, + 188753.20115827728, + 189285.0060575169, + 189845.4199938644, + 190433.33729306987, + 191047.61403567088, + 191687.06805699438, + 192350.47894715553, + 193036.58805105794, + 193744.09846839373, + 194471.6750536434, + 195217.94441607632, + 195981.49491975, + 196760.8766835105, + 197554.6015809925, + 198361.143240619, + 199178.93704560178, + 200006.38013394084, + 200841.83139842498, + 201683.61148663107, + 202530.00280092476, + 203379.24949846015, + 204229.55749117988, + 205079.09444581496, + 205925.9897838851, + 196204.80598517813, + 196384.29778925178, + 196593.05495150076, + 196830.56892410532, + 197096.29291403416, + 197389.6418830447, + 197709.9925476825, + 198056.68337928204, + 198429.01460396594, + 198826.24820264545, + 199247.6079110204, + 199692.279219579, + 200159.409373598, + 200648.10737314276, + 201157.44397306672, + 201686.4516830124, + 202234.12476741048, + 202799.41924548004, + 203381.25289122912, + 203978.5052334535, + 204590.01755573833, + 205214.59289645663, + 205850.9960487702, + 206497.95356062902, + 207154.1537347722, + 207818.24662872648, + 208488.84405480805, + 209164.51958012066, + 209843.80852655743, + 210525.20797079915, + 211207.17674431598, + 211888.13543336562, + 212566.46637899507, + 213240.5136770394, + 213908.5831781222, + 214568.94248765594, + 215219.820965841 + ], + "input_power": [ + 22918.819060200007, + 22939.624564871603, + 22967.08647408642, + 23001.204787844446, + 23041.97950614568, + 23089.41062899013, + 23143.498156377776, + 23204.24208830864, + 23271.64242478272, + 23345.699165800004, + 23426.4123113605, + 23513.7818614642, + 23607.807816111108, + 23708.490175301227, + 23815.828939034574, + 23929.824107311113, + 24050.475680130865, + 24177.78365749383, + 24311.748039399998, + 24452.368825849386, + 24599.646016841976, + 24753.579612377776, + 24914.169612456797, + 25081.416017079013, + 25255.318826244446, + 25435.878039953088, + 25623.093658204943, + 25816.965680999994, + 26017.49410833827, + 26224.678940219754, + 26438.52017664444, + 26659.017817612348, + 26886.171863123458, + 27119.98231317778, + 27360.44916777531, + 27607.57242691605, + 27861.352090599998, + 24452.1574024, + 24478.49352182716, + 24511.486045797537, + 24551.134974311113, + 24597.440307367902, + 24650.402044967897, + 24710.020187111113, + 24776.294733797527, + 24849.225685027162, + 24928.813040800003, + 25015.056801116058, + 25107.95696597531, + 25207.513535377777, + 25313.726509323456, + 25426.59588781235, + 25546.121670844444, + 25672.303858419757, + 25805.14245053827, + 25944.637447200002, + 26090.788848404947, + 26243.596654153083, + 26403.060864444444, + 26569.18147927902, + 26741.958498656786, + 26921.391922577775, + 27107.48175104198, + 27300.227984049387, + 27499.630621599998, + 27705.68966369383, + 27918.405110330867, + 28137.77696151111, + 28363.80521723457, + 28596.48987750124, + 28835.830942311117, + 29081.828411664206, + 29334.482285560498, + 29593.792564, + 22925.835903236, + 22946.6605733476, + 22974.141648002416, + 23008.279127200443, + 23049.073010941676, + 23096.523299226123, + 23150.62999205377, + 23211.39308942464, + 23278.812591338712, + 23352.888497795993, + 23433.620808796495, + 23521.009524340192, + 23615.05464442711, + 23715.756169057233, + 23823.114098230573, + 23937.12843194711, + 24057.79917020686, + 24185.126313009827, + 24319.109860355995, + 24459.749812245384, + 24607.046168677974, + 24760.998929653775, + 24921.608095172793, + 25088.87366523501, + 25262.795639840442, + 25443.374018989085, + 25630.608802680934, + 25824.499990915996, + 26025.04758369427, + 26232.251581015753, + 26446.111982880437, + 26666.628789288345, + 26893.802000239455, + 27127.631615733786, + 27368.117635771312, + 27615.260060352048, + 27869.058889475993, + 24460.574359955997, + 24486.932456769824, + 24519.94695812686, + 24559.61786402711, + 24605.94517447056, + 24658.92888945723, + 24718.56900898711, + 24784.86553306019, + 24857.81846167649, + 24937.42779483599, + 25023.693532538717, + 25116.615674784636, + 25216.194221573773, + 25322.429172906122, + 25435.32052878168, + 25554.868289200444, + 25681.072454162422, + 25813.933023667603, + 25953.449997716, + 26099.62337630761, + 26252.453159442426, + 26411.939347120442, + 26578.081939341682, + 26750.88093610612, + 26930.336337413773, + 27116.448143264643, + 27309.21635365871, + 27508.640968596, + 27714.721988076493, + 27927.4594121002, + 28146.853240667107, + 28372.903473777234, + 28605.61011143056, + 28844.973153627117, + 29090.992600366862, + 29343.66845164982, + 29603.000707475996, + 22988.5331639, + 23009.5303229716, + 23037.18388658642, + 23071.493854744447, + 23112.460227445674, + 23160.08300469012, + 23214.36218647777, + 23275.297772808637, + 23342.889763682713, + 23417.138159100003, + 23498.04295906049, + 23585.604163564192, + 23679.82177261111, + 23780.69578620123, + 23888.22620433457, + 24002.41302701111, + 24123.256254230862, + 24250.75588599382, + 24384.911922299998, + 24525.72436314938, + 24673.19320854198, + 24827.318458477777, + 24988.100112956785, + 25155.53817197901, + 25329.632635544443, + 25510.38350365309, + 25697.790776304937, + 25891.8544535, + 26092.574535238266, + 26299.951021519748, + 26513.98391234444, + 26734.673207712345, + 26962.018907623453, + 27196.021012077777, + 27436.679521075304, + 27683.99443461605, + 27937.965752699994, + 24535.8726513, + 24562.428544593822, + 24595.640842430865, + 24635.509544811113, + 24682.03465173456, + 24735.216163201232, + 24795.05407921111, + 24861.548399764193, + 24934.69912486049, + 25014.5062545, + 25100.969788682716, + 25194.08972740864, + 25293.866070677777, + 25400.298818490122, + 25513.387970845684, + 25633.133527744438, + 25759.53548918642, + 25892.593855171603, + 26032.3086257, + 26178.67980077161, + 26331.70738038642, + 26491.39136454444, + 26657.731753245676, + 26830.72854649012, + 27010.381744277776, + 27196.69134660864, + 27389.65735348271, + 27589.2797649, + 27795.558580860492, + 28008.493801364195, + 28228.085426411104, + 28454.333456001234, + 28687.237890134566, + 28926.798728811118, + 29173.015972030866, + 29425.88961979383, + 29685.419672099997, + 23050.412636576002, + 23071.5822846076, + 23099.408337182416, + 23133.890794300445, + 23175.029655961676, + 23222.82492216612, + 23277.276592913775, + 23338.38466820464, + 23406.149148038716, + 23480.570032416, + 23561.647321336495, + 23649.381014800198, + 23743.771112807106, + 23844.817615357235, + 23952.520522450566, + 24066.879834087107, + 24187.89555026686, + 24315.567670989825, + 24449.896196256, + 24590.88112606538, + 24738.522460417975, + 24892.820199313777, + 25053.77434275279, + 25221.38489073501, + 25395.651843260446, + 25576.575200329084, + 25764.154961940938, + 25958.391128096, + 26159.283698794272, + 26366.832674035748, + 26581.03805382044, + 26801.899838148343, + 27029.418027019456, + 27263.592620433777, + 27504.423618391313, + 27751.911020892054, + 28006.054827935997, + 24610.353154656008, + 24637.106844429818, + 24670.516938746867, + 24710.58343760711, + 24757.306341010564, + 24810.68564895723, + 24870.721361447107, + 24937.41347848019, + 25010.762000056497, + 25090.766926175995, + 25177.428256838717, + 25270.74599204464, + 25370.720131793776, + 25477.35067608612, + 25590.63762492168, + 25710.580978300444, + 25837.18073622242, + 25970.4368986876, + 26110.349465695996, + 26256.91843724761, + 26410.143813342416, + 26570.02559398044, + 26736.563779161683, + 26909.75836888612, + 27089.609363153777, + 27276.11676196464, + 27469.280565318717, + 27669.100773215996, + 27875.577385656492, + 28088.710402640198, + 28308.499824167106, + 28534.94565023723, + 28768.047880850565, + 29007.806516007113, + 29254.22155570686, + 29507.292999949826, + 29767.020848735996, + 23111.474321263995, + 23132.8164582556, + 23160.814999790415, + 23195.469945868437, + 23236.781296489677, + 23284.74905165412, + 23339.373211361773, + 23400.653775612638, + 23468.590744406723, + 23543.184117743993, + 23624.43389562449, + 23712.340078048193, + 23806.902665015114, + 23908.121656525233, + 24015.99705257857, + 24130.528853175103, + 24251.71705831486, + 24379.561667997823, + 24514.062682223994, + 24655.220100993374, + 24803.03392430597, + 24957.504152161775, + 25118.630784560784, + 25286.413821503007, + 25460.85326298844, + 25641.949109017092, + 25829.701359588937, + 26024.110014703994, + 26225.17507436227, + 26432.896538563753, + 26647.274407308436, + 26868.308680596343, + 27095.999358427453, + 27330.346440801775, + 27571.349927719308, + 27819.009819180046, + 28073.326115183994, + 24684.015870024, + 24710.96735627782, + 24744.575247074856, + 24784.83954241511, + 24831.760242298566, + 24885.33734672523, + 24945.570855695107, + 25012.46076920819, + 25086.007087264483, + 25166.209809863994, + 25253.068937006712, + 25346.58446869264, + 25446.756404921776, + 25553.584745694116, + 25667.069491009675, + 25787.210640868438, + 25914.008195270413, + 26047.4621542156, + 26187.572517703997, + 26334.3392857356, + 26487.762458310415, + 26647.84203542844, + 26814.57801708968, + 26987.97040329412, + 27168.01919404177, + 27354.72438933264, + 27548.085989166713, + 27748.10399354399, + 27954.77840246449, + 28168.109215928194, + 28388.096433935105, + 28614.740056485232, + 28848.040083578566, + 29087.996515215116, + 29334.609351394865, + 29587.878592117828, + 29847.804237384, + 23171.718217963997, + 23193.2328439156, + 23221.403874410415, + 23256.23130944844, + 23297.71514902968, + 23345.855393154117, + 23400.652041821777, + 23462.105095032635, + 23530.214552786714, + 23604.980415083995, + 23686.40268192449, + 23774.481353308194, + 23869.216429235104, + 23970.607909705228, + 24078.65579471857, + 24193.360084275108, + 24314.720778374864, + 24442.737877017822, + 24577.41138020399, + 24718.74128793338, + 24866.727600205973, + 25021.370317021774, + 25182.669438380788, + 25350.624964283008, + 25525.236894728438, + 25706.505229717084, + 25894.429969248937, + 26089.01111332399, + 26290.24866194227, + 26498.14261510375, + 26712.692972808436, + 26933.899735056348, + 27161.762901847458, + 27396.282473181782, + 27637.458449059304, + 27885.290829480044, + 28139.77961444399, + 24756.860797404, + 24784.010080137825, + 24817.815767414864, + 24858.277859235113, + 24905.39635559856, + 24959.17125650523, + 25019.60256195511, + 25086.6902719482, + 25160.434386484496, + 25240.834905563992, + 25327.891829186716, + 25421.605157352646, + 25521.974890061774, + 25629.001027314116, + 25742.68356910968, + 25863.022515448443, + 25990.01786633042, + 26123.6696217556, + 26263.977781723996, + 26410.942346235603, + 26564.563315290423, + 26724.840688888446, + 26891.77446702968, + 27065.36464971412, + 27245.61123694177, + 27432.51422871264, + 27626.07362502671, + 27826.289425883995, + 28033.161631284496, + 28246.690241228196, + 28466.875255715106, + 28693.716674745232, + 28927.214498318568, + 29167.368726435117, + 29414.179359094862, + 29667.64639629782, + 29927.76983804399, + 23231.144326676, + 23252.831441587598, + 23281.174961042416, + 23316.174885040436, + 23357.831213581674, + 23406.143946666118, + 23461.113084293775, + 23522.738626464637, + 23591.02057317871, + 23665.958924436, + 23747.553680236495, + 23835.804840580196, + 23930.712405467104, + 24032.276374897232, + 24140.496748870566, + 24255.373527387103, + 24376.906710446852, + 24505.096298049823, + 24639.94229019599, + 24781.444686885377, + 24929.60348811797, + 25084.418693893775, + 25245.89030421279, + 25414.018319075007, + 25588.802738480437, + 25770.24356242909, + 25958.34079092094, + 26153.094423955994, + 26354.50446153427, + 26562.57090365575, + 26777.293750320438, + 26998.673001528343, + 27226.708657279458, + 27461.400717573775, + 27702.74918241131, + 27950.754051792046, + 28205.41532571599, + 24828.887936796007, + 24856.23501600982, + 24890.238499766863, + 24930.89838806711, + 24978.214680910565, + 25032.187378297225, + 25092.816480227113, + 25160.101986700196, + 25234.04389771649, + 25314.642213276, + 25401.896933378717, + 25495.808058024642, + 25596.37558721377, + 25703.599520946125, + 25817.47985922168, + 25938.016602040443, + 26065.20974940242, + 26199.059301307607, + 26339.565257755996, + 26486.72761874761, + 26640.546384282417, + 26801.021554360443, + 26968.153128981685, + 27141.941108146122, + 27322.385491853776, + 27509.486280104647, + 27703.243472898717, + 27903.657070235997, + 28110.72707211649, + 28324.453478540196, + 28544.836289507108, + 28771.87550501723, + 29005.571125070568, + 29245.923149667113, + 29492.931578806863, + 29746.596412489827, + 30006.91765071599, + 23257.302554607304, + 23279.06635811052, + 23307.48656615695, + 23342.563178746594, + 23384.29619587944, + 23432.685617555504, + 23487.73144377477, + 23549.433674537253, + 23617.792309842946, + 23692.807349691848, + 23774.47879408396, + 23862.806643019274, + 23957.790896497805, + 24059.431554519542, + 24167.7286170845, + 24282.682084192653, + 24404.291955844023, + 24532.558232038595, + 24667.480912776387, + 24809.05999805739, + 24957.295487881598, + 25112.187382249016, + 25273.735681159644, + 25441.94038461348, + 25616.801492610528, + 25798.31900515079, + 25986.492922234254, + 26181.32324386093, + 26382.80997003082, + 26590.95310074392, + 26805.752636000227, + 27027.208575799745, + 27255.32092014247, + 27490.089669028406, + 27731.514822457557, + 27979.59638042991, + 28234.334342945473, + 24860.648582967635, + 24888.083602496463, + 24922.17502656851, + 24962.922855183766, + 25010.32708834223, + 25064.387726043904, + 25125.10476828879, + 25192.47821507688, + 25266.508066408187, + 25347.1943222827, + 25434.53698270043, + 25528.53604766136, + 25629.1915171655, + 25736.503391212857, + 25850.471669803424, + 25971.096352937195, + 26098.37744061418, + 26232.314932834368, + 26372.908829597778, + 26520.159130904394, + 26674.065836754213, + 26834.628947147245, + 27001.848462083486, + 27175.724381562937, + 27356.2567055856, + 27543.445434151476, + 27737.290567260556, + 27937.79210491284, + 28144.95004710835, + 28358.76439384706, + 28579.235145128976, + 28806.36230095411, + 29040.145861322457, + 29280.585826234008, + 29527.68219568876, + 29781.43496968674, + 30041.844148227912, + 23289.752647399997, + 23311.6122512716, + 23340.128259686408, + 23375.30067264444, + 23417.129490145675, + 23465.614712190116, + 23520.756338777774, + 23582.554369908634, + 23651.008805582707, + 23726.119645799998, + 23807.886890560494, + 23896.310539864196, + 23991.390593711105, + 24093.12705210123, + 24201.51991503457, + 24316.569182511106, + 24438.27485453086, + 24566.636931093824, + 24701.655412199994, + 24843.330297849378, + 24991.66158804197, + 25146.649282777773, + 25308.29338205679, + 25476.593885879007, + 25651.55079424444, + 25833.16410715308, + 26021.433824604937, + 26216.359946599994, + 26417.94247313827, + 26626.18140421975, + 26841.076739844437, + 27062.628480012343, + 27290.836624723455, + 27525.701173977774, + 27767.22212777531, + 28015.399486116043, + 28270.23324899999, + 24900.097288200002, + 24927.642163893823, + 24961.84344413086, + 25002.701128911103, + 25050.215218234567, + 25104.385712101226, + 25165.21261051111, + 25232.69591346419, + 25306.835620960483, + 25387.631732999995, + 25475.084249582713, + 25569.19317070864, + 25669.958496377774, + 25777.380226590118, + 25891.458361345678, + 26012.19290064444, + 26139.58384448641, + 26273.631192871602, + 26414.334945799998, + 26561.695103271602, + 26715.71166528641, + 26876.38463184444, + 27043.71400294568, + 27217.69977859012, + 27398.341958777775, + 27585.64054350864, + 27779.59553278271, + 27980.20692659999, + 28187.474724960488, + 28401.398927864193, + 28621.979535311108, + 28849.21654730123, + 29083.109963834566, + 29323.659784911113, + 29570.866010530863, + 29824.728640693822, + 30085.247675399994, + 23347.543180135995, + 23369.5752729676, + 23398.263770342415, + 23433.608672260445, + 23475.609978721677, + 23524.26768972612, + 23579.581805273774, + 23641.552325364635, + 23710.179249998713, + 23785.462579176, + 23867.40231289649, + 23955.99845116019, + 24051.25099396711, + 24153.15994131723, + 24261.725293210566, + 24376.947049647104, + 24498.82521062686, + 24627.359776149828, + 24762.55074621599, + 24904.39812082538, + 25052.901899977973, + 25208.062083673773, + 25369.878671912786, + 25538.35166469501, + 25713.481062020433, + 25895.266863889083, + 26083.709070300938, + 26278.807681255996, + 26480.56269675427, + 26688.974116795747, + 26904.041941380434, + 27125.76617050835, + 27354.146804179454, + 27589.18384239378, + 27830.877285151306, + 28079.227132452048, + 28334.233384295992, + 24970.488851615995, + 24998.231523789822, + 25032.63060050686, + 25073.68608176711, + 25121.397967570563, + 25175.76625791723, + 25236.79095280711, + 25304.472052240195, + 25378.80955621649, + 25459.803464735996, + 25547.453777798713, + 25641.76049540464, + 25742.723617553776, + 25850.343144246122, + 25964.61907548168, + 26085.551411260436, + 26213.140151582415, + 26347.385296447606, + 26488.286845855997, + 26635.844799807608, + 26790.05915830242, + 26950.929921340437, + 27118.457088921677, + 27292.64066104612, + 27473.480637713772, + 27660.977018924645, + 27855.129804678712, + 28055.938994975997, + 28263.40458981649, + 28477.5265892002, + 28698.304993127098, + 28925.73980159724, + 29159.83101461057, + 29400.578632167115, + 29647.982654266863, + 29902.043080909825, + 30162.759912095993, + 23404.515924884003, + 23426.720506675596, + 23455.581493010417, + 23491.09888388844, + 23533.272679309674, + 23582.10287927412, + 23637.58948378177, + 23699.732492832638, + 23768.531906426713, + 23843.987724564, + 23926.099947244496, + 24014.868574468193, + 24110.293606235107, + 24212.375042545234, + 24321.11288339857, + 24436.507128795107, + 24558.557778734863, + 24687.264833217825, + 24822.628292243997, + 24964.64815581338, + 25113.324423925973, + 25268.657096581774, + 25430.64617378079, + 25599.291655523008, + 25774.59354180844, + 25956.551832637084, + 26145.166528008936, + 26340.437627923995, + 26542.36513238227, + 26750.949041383752, + 26966.189354928436, + 27188.086073016348, + 27416.63919564745, + 27651.848722821782, + 27893.714654539308, + 28142.236990800047, + 28397.415731603996, + 25040.062627044, + 25068.003095697823, + 25102.599968894865, + 25143.85324663511, + 25191.762928918564, + 25246.329015745232, + 25307.551507115106, + 25375.430403028196, + 25449.965703484486, + 25531.157408484, + 25619.005518026715, + 25713.51003211264, + 25814.670950741776, + 25922.488273914118, + 26036.96200162968, + 26158.09213388844, + 26285.878670690417, + 26420.321612035605, + 26561.420957924, + 26709.176708355608, + 26863.58886333042, + 27024.657422848442, + 27192.382386909678, + 27366.763755514123, + 27547.801528661774, + 27735.495706352645, + 27929.84628858671, + 28130.853275363996, + 28338.516666684496, + 28552.8364625482, + 28773.8126629551, + 29001.44526790523, + 29235.734277398562, + 29476.679691435118, + 29724.281510014862, + 29978.539733137826, + 30239.454360803997, + 23460.670881644004, + 23483.0479523956, + 23512.081427690417, + 23547.77130752844, + 23590.11759190968, + 23639.12028083412, + 23694.779374301776, + 23757.09487231264, + 23826.066774866715, + 23901.695081963997, + 23983.979793604492, + 24072.920909788194, + 24168.518430515105, + 24270.772355785233, + 24379.682685598564, + 24495.249419955107, + 24617.472558854864, + 24746.352102297828, + 24881.888050283993, + 25024.080402813383, + 25172.929159885975, + 25328.434321501776, + 25490.595887660787, + 25659.41385836301, + 25834.888233608443, + 26017.019013397083, + 26205.80619772894, + 26401.249786603996, + 26603.349780022265, + 26812.106177983755, + 27027.518980488443, + 27249.588187536345, + 27478.31379912745, + 27713.69581526178, + 27955.734235939308, + 28204.429061160045, + 28459.780290923994, + 25108.818614484, + 25136.956879617825, + 25171.751549294862, + 25213.202623515113, + 25261.31010227856, + 25316.07398558523, + 25377.494273435106, + 25445.570965828192, + 25520.304062764488, + 25601.693564243993, + 25689.739470266715, + 25784.441780832636, + 25885.800495941774, + 25993.815615594125, + 26108.48713978968, + 26229.81506852844, + 26357.79940181042, + 26492.4401396356, + 26633.737282004, + 26781.69082891561, + 26936.30078037042, + 27097.567136368445, + 27265.48989690968, + 27440.069061994127, + 27621.304631621784, + 27809.19660579264, + 28003.744984506713, + 28204.949767763996, + 28412.81095556449, + 28627.328547908193, + 28848.502544795105, + 29076.332946225233, + 29310.819752198568, + 29551.962962715115, + 29799.76257777486, + 30054.21859737783, + 30315.33102152399, + 23516.008050416, + 23538.55761012759, + 23567.763574382414, + 23603.625943180436, + 23646.144716521674, + 23695.31989440612, + 23751.151476833773, + 23813.639463804633, + 23882.783855318714, + 23958.584651376, + 24041.041851976493, + 24130.155457120192, + 24225.92546680711, + 24328.351881037233, + 24437.434699810565, + 24553.173923127102, + 24675.56955098686, + 24804.62158338982, + 24940.33002033599, + 25082.69486182538, + 25231.716107857967, + 25387.39375843377, + 25549.72781355279, + 25718.718273215, + 25894.36513742044, + 26076.668406169087, + 26265.628079460937, + 26461.24415729599, + 26663.516639674268, + 26872.44552659575, + 27088.030818060437, + 27310.27251406834, + 27539.170614619452, + 27774.725119713778, + 28016.936029351302, + 28265.803343532047, + 28521.32706225599, + 25176.756813935997, + 25205.092875549817, + 25240.08534170686, + 25281.73421240711, + 25330.039487650563, + 25385.001167437233, + 25446.619251767108, + 25514.893740640196, + 25589.82463405649, + 25671.411932015995, + 25759.655634518716, + 25854.55574156464, + 25956.112253153773, + 26064.325169286123, + 26179.194489961676, + 26300.720215180438, + 26428.902344942417, + 26563.7408792476, + 26705.235818095996, + 26853.387161487604, + 27008.194909422415, + 27169.659061900435, + 27337.779618921675, + 27512.55658048611, + 27693.989946593774, + 27882.079717244647, + 28076.825892438712, + 28278.228472175997, + 28486.287456456495, + 28701.002845280196, + 28922.374638647107, + 29150.40283655723, + 29385.087439010564, + 29626.428446007114, + 29874.425857546856, + 30129.07967362982, + 30390.389894255997, + 23570.5274312, + 23593.249479871592, + 23622.627933086413, + 23658.66279084444, + 23701.354053145675, + 23750.70171999012, + 23806.705791377768, + 23869.366267308636, + 23938.68314778271, + 24014.656432799995, + 24097.28612236049, + 24186.572216464192, + 24282.5147151111, + 24385.11361830123, + 24494.368926034564, + 24610.280638311102, + 24732.84875513086, + 24862.073276493822, + 24997.954202399993, + 25140.491532849377, + 25289.685267841967, + 25445.53540737777, + 25608.041951456788, + 25777.204900079003, + 25953.024253244435, + 26135.500010953085, + 26324.632173204936, + 26520.420739999994, + 26722.86571133826, + 26931.967087219746, + 27147.72486764444, + 27370.139052612343, + 27599.209642123453, + 27834.936636177776, + 28077.320034775308, + 28326.35983791604, + 28582.056045599984, + 25243.877225399996, + 25272.411083493822, + 25307.601346130858, + 25349.448013311106, + 25397.951085034565, + 25453.11056130123, + 25514.926442111107, + 25583.39872746419, + 25658.527417360485, + 25740.31251179999, + 25828.75401078271, + 25923.85191430864, + 26025.606222377766, + 26134.016934990123, + 26249.084052145674, + 26370.80757384444, + 26499.187500086413, + 26634.2238308716, + 26775.916566199994, + 26924.2657060716, + 27079.271250486414, + 27240.933199444444, + 27409.251552945672, + 27584.226310990118, + 27765.857473577773, + 27954.145040708645, + 28149.08901238271, + 28350.689388599996, + 28558.946169360494, + 28773.859354664186, + 28995.428944511103, + 29223.65493890123, + 29458.537337834565, + 29700.076141311114, + 29948.27134933086, + 30203.122961893827, + 30464.630978999983, + 23624.229023996002, + 23647.123561627606, + 23676.674503802416, + 23712.881850520447, + 23755.74560178168, + 23805.265757586123, + 23861.44231793378, + 23924.27528282464, + 23993.764652258717, + 24069.910426236, + 24152.7126047565, + 24242.171187820193, + 24338.28617542711, + 24441.057567577227, + 24550.48536427057, + 24666.56956550711, + 24789.31017128686, + 24918.70718160983, + 25054.760596475993, + 25197.470415885382, + 25346.836639837977, + 25502.859268333774, + 25665.538301372788, + 25834.87373895501, + 26010.865581080438, + 26193.513827749088, + 26382.81847896094, + 26578.779534716, + 26781.396995014275, + 26990.670859855752, + 27206.60112924044, + 27429.187803168348, + 27658.43088163946, + 27894.33036465378, + 28136.886252211312, + 28386.098544312044, + 28641.967240955993, + 25310.179848876003, + 25338.91150344983, + 25374.29956256687, + 25416.344026227114, + 25465.04489443056, + 25520.402167177235, + 25582.41584446712, + 25651.085926300195, + 25726.412412676495, + 25808.395303596004, + 25897.03459905872, + 25992.330299064648, + 26094.28240361378, + 26202.89091270612, + 26318.155826341685, + 26440.077144520445, + 26568.65486724242, + 26703.888994507608, + 26845.779526316, + 26994.32646266761, + 27149.529803562422, + 27311.389549000447, + 27479.905698981685, + 27655.078253506126, + 27836.907212573773, + 28025.392576184648, + 28220.534344338717, + 28422.332517035997, + 28630.7870942765, + 28845.898076060203, + 29067.665462387107, + 29296.08925325724, + 29531.16944867057, + 29772.906048627116, + 30021.299053126866, + 30276.348462169826, + 30538.054275755996, + 23677.112828804, + 23700.179855395603, + 23729.903286530414, + 23766.283122208442, + 23809.319362429676, + 23859.012007194124, + 23915.361056501773, + 23978.36651035264, + 24048.028368746713, + 24124.346631684002, + 24207.321299164494, + 24296.952371188196, + 24393.239847755107, + 24496.18372886523, + 24605.78401451857, + 24722.04070471511, + 24844.953799454863, + 24974.523298737826, + 25110.749202563995, + 25253.63151093338, + 25403.170223845973, + 25559.365341301775, + 25722.216863300793, + 25891.724789843007, + 26067.889120928437, + 26250.709856557085, + 26440.18699672894, + 26636.320541443994, + 26839.110490702275, + 27048.55684450375, + 27264.65960284844, + 27487.418765736347, + 27716.834333167455, + 27952.90630514178, + 28195.634681659307, + 28445.019462720044, + 28701.060648323997, + 25375.664684364, + 25404.59413541783, + 25440.179991014862, + 25482.42225115511, + 25531.32091583856, + 25586.87598506523, + 25649.087458835107, + 25717.955337148192, + 25793.479620004488, + 25875.660307404, + 25964.497399346714, + 26059.990895832645, + 26162.140796861775, + 26270.947102434122, + 26386.40981254968, + 26508.52892720845, + 26637.304446410417, + 26772.736370155606, + 26914.824698443997, + 27063.56943127561, + 27218.97056865042, + 27381.028110568448, + 27549.74205702968, + 27725.11240803412, + 27907.139163581774, + 28095.82232367264, + 28291.161888306713, + 28493.157857484, + 28701.810231204494, + 28917.1190094682, + 29139.084192275106, + 29367.705779625237, + 29602.98377151857, + 29844.91816795512, + 30093.508968934864, + 30348.756174457823, + 30610.659784523992, + 23729.178845624, + 23752.418361175605, + 23782.314281270417, + 23818.866605908443, + 23862.075335089678, + 23911.940468814122, + 23968.462007081776, + 24031.63994989264, + 24101.474297246714, + 24177.965049144, + 24261.112205584497, + 24350.915766568192, + 24447.375732095108, + 24550.492102165234, + 24660.26487677857, + 24776.694055935106, + 24899.779639634864, + 25029.52162787783, + 25165.920020663994, + 25308.97481799338, + 25458.686019865974, + 25615.053626281777, + 25778.077637240796, + 25947.758052743015, + 26124.09487278844, + 26307.08809737709, + 26496.737726508938, + 26693.043760184, + 26896.006198402272, + 27105.625041163752, + 27321.900288468445, + 27544.831940316348, + 27774.41999670745, + 28010.664457641786, + 28253.56532311931, + 28503.122593140044, + 28759.336267703995, + 25440.331731864004, + 25469.458979397823, + 25505.242631474863, + 25547.682688095116, + 25596.779149258567, + 25652.532014965236, + 25714.941285215114, + 25784.006960008195, + 25859.729039344493, + 25942.107523224, + 26031.14241164672, + 26126.833704612643, + 26229.181402121776, + 26338.185504174126, + 26453.846010769685, + 26576.162921908443, + 26705.13623759042, + 26840.765957815613, + 26983.052082584003, + 27131.994611895607, + 27287.59354575042, + 27449.848884148443, + 27618.760627089687, + 27794.32877457412, + 27976.553326601774, + 28165.434283172646, + 28360.971644286714, + 28563.165409943995, + 28772.015580144496, + 28987.522154888196, + 29209.68513417511, + 29438.504518005237, + 29673.980306378566, + 29916.11249929512, + 30164.901096754864, + 30420.346098757826, + 30682.447505303997, + 23780.427074455998, + 23803.8390789676, + 23833.90748802241, + 23870.632301620444, + 23914.013519761673, + 23964.051142446122, + 24020.74516967377, + 24084.09560144464, + 24154.102437758716, + 24230.765678615997, + 24314.085324016498, + 24404.06137396019, + 24500.69382844711, + 24603.98268747723, + 24713.927951050573, + 24830.5296191671, + 24953.787691826863, + 25083.702169029824, + 25220.273050775995, + 25363.500337065387, + 25513.38402789797, + 25669.924123273777, + 25833.120623192783, + 26002.97352765501, + 26179.48283666044, + 26362.648550209087, + 26552.470668300935, + 26748.949190935993, + 26952.08411811427, + 27161.875449835752, + 27378.323186100446, + 27601.427326908342, + 27831.187872259452, + 28067.60482215378, + 28310.678176591307, + 28560.40793557205, + 28816.794099095994, + 25504.180991376, + 25533.506035389823, + 25569.487483946865, + 25612.12533704711, + 25661.41959469056, + 25717.37025687723, + 25779.977323607105, + 25849.240794880192, + 25925.160670696492, + 26007.73695105599, + 26096.969635958718, + 26192.85872540464, + 26295.404219393775, + 26404.60611792612, + 26520.46442100168, + 26642.979128620438, + 26772.15024078242, + 26907.9777574876, + 27050.461678736, + 27199.60200452761, + 27355.398734862418, + 27517.85186974044, + 27686.961409161675, + 27862.727353126123, + 28045.14970163377, + 28234.228454684642, + 28429.96361227871, + 28632.355174415996, + 28841.4031410965, + 29057.107512320195, + 29279.468288087108, + 29508.48546839723, + 29744.159053250565, + 29986.489042647117, + 30235.475436586865, + 30491.118235069822, + 30753.417438095996, + 23830.8575153, + 23854.4420087716, + 23884.682906786413, + 23921.58020934444, + 23965.133916445677, + 24015.344028090123, + 24072.210544277776, + 24135.733465008638, + 24205.91279028271, + 24282.748520099998, + 24366.24065446049, + 24456.389193364197, + 24553.194136811104, + 24656.655484801235, + 24766.773237334564, + 24883.547394411107, + 25006.977956030867, + 25137.06492219383, + 25273.808292899997, + 25417.20806814938, + 25567.264247941974, + 25723.976832277778, + 25887.345821156796, + 26057.371214579005, + 26234.05301254444, + 26417.39121505309, + 26607.385822104938, + 26804.036833699996, + 27007.344249838272, + 27217.308070519757, + 27433.92829574444, + 27657.204925512342, + 27887.137959823453, + 28123.727398677784, + 28366.97324207531, + 28616.875490016053, + 28873.4341425, + 25567.212462900003, + 25596.735303393823, + 25632.91454843086, + 25675.75019801111, + 25725.242252134565, + 25781.39071080123, + 25844.195574011108, + 25913.656841764194, + 25989.774514060493, + 26072.548590899998, + 26161.979072282717, + 26258.06595820865, + 26360.809248677775, + 26470.208943690122, + 26586.26504324568, + 26708.977547344442, + 26838.346455986415, + 26974.3717691716, + 27117.053486899997, + 27266.391609171606, + 27422.386135986417, + 27585.037067344445, + 27754.344403245686, + 27930.30814369012, + 28112.928288677776, + 28302.204838208643, + 28498.137792282716, + 28700.7271509, + 28909.972914060498, + 29125.875081764196, + 29348.433654011107, + 29577.64863080123, + 29813.520012134562, + 30056.047798011114, + 30305.231988430867, + 30561.072583393827, + 30823.569582899996, + 23880.470168156004, + 23904.2271505876, + 23934.64053756242, + 23971.710329080444, + 24015.43652514168, + 24065.819125746122, + 24122.858130893776, + 24186.55354058464, + 24256.905354818715, + 24333.913573596004, + 24417.578196916493, + 24507.8992247802, + 24604.876657187113, + 24708.510494137237, + 24818.800735630575, + 24935.74738166711, + 25059.350432246858, + 25189.60988736982, + 25326.525747035994, + 25470.09801124538, + 25620.326679997976, + 25777.211753293777, + 25940.753231132792, + 26110.951113515013, + 26287.80540044044, + 26471.316091909084, + 26661.483187920945, + 26858.30668847599, + 27061.786593574274, + 27271.922903215753, + 27488.715617400438, + 27712.16473612834, + 27942.270259399458, + 28179.032187213783, + 28422.45051957131, + 28672.525256472054, + 28929.256397915997, + 25629.426146436006, + 25659.146783409822, + 25695.523824926866, + 25738.557270987112, + 25788.24712159056, + 25844.59337673723, + 25907.59603642711, + 25977.255100660193, + 26053.57056943649, + 26136.542442756, + 26226.170720618713, + 26322.455403024644, + 26425.396489973773, + 26534.99398146613, + 26651.247877501683, + 26774.158178080444, + 26903.72488320242, + 27039.94799286761, + 27182.827507076003, + 27332.363425827603, + 27488.55574912242, + 27651.404476960444, + 27820.909609341685, + 27997.071146266124, + 28179.889087733776, + 28369.363433744642, + 28565.494184298717, + 28768.281339396, + 28977.724899036497, + 29193.824863220198, + 29416.5812319471, + 29645.994005217228, + 29882.06318303057, + 30124.788765387115, + 30374.17075228686, + 30630.209143729826, + 30892.903939715998, + 23929.265033023996, + 23953.1945044156, + 23983.780380350414, + 24021.022660828443, + 24064.921345849674, + 24115.476435414123, + 24172.687929521773, + 24236.555828172637, + 24307.080131366714, + 24384.260839103994, + 24468.097951384498, + 24558.591468208193, + 24655.74138957511, + 24759.54771548523, + 24870.01044593857, + 24987.129580935107, + 25110.905120474865, + 25241.33706455782, + 25378.425413183995, + 25522.170166353375, + 25672.571324065975, + 25829.628886321774, + 25993.342853120786, + 26163.71322446301, + 26340.740000348433, + 26524.42318077709, + 26714.762765748936, + 26911.758755263996, + 27115.411149322266, + 27325.719947923746, + 27542.685151068436, + 27766.306758756346, + 27996.584770987454, + 28233.519187761776, + 28477.110009079308, + 28727.35723494005, + 28984.260865343993, + 25690.822041984, + 25720.740475437822, + 25757.31531343486, + 25800.546555975114, + 25850.434203058565, + 25906.978254685226, + 25970.178710855103, + 26040.035571568194, + 26116.54883682449, + 26199.71850662399, + 26289.544580966707, + 26386.02705985264, + 26489.165943281776, + 26598.961231254118, + 26715.41292376968, + 26838.521020828437, + 26968.28552243042, + 27104.7064285756, + 27247.783739264, + 27397.517454495603, + 27553.90757427042, + 27716.95409858844, + 27886.657027449677, + 28063.016360854122, + 28246.03209880177, + 28435.704241292646, + 28632.032788326713, + 28835.017739903997, + 29044.65909602449, + 29260.9568566882, + 29483.911021895103, + 29713.521591645233, + 29949.788565938565, + 30192.711944775114, + 30442.291728154865, + 30698.527916077826, + 30961.420508543993, + 23977.242109904, + 24001.3440702556, + 24032.102435150413, + 24069.51720458844, + 24113.58837856968, + 24164.31595709412, + 24221.69994016177, + 24285.74032777264, + 24356.43711992671, + 24433.790316623996, + 24517.799917864493, + 24608.465923648193, + 24705.788333975102, + 24809.767148845232, + 24920.40236825857, + 25037.693992215107, + 25161.642020714862, + 25292.246453757823, + 25429.507291343994, + 25573.42453347338, + 25723.99818014597, + 25881.228231361776, + 26045.11468712079, + 26215.657547423005, + 26392.856812268434, + 26576.712481657087, + 26767.22455558894, + 26964.393034063996, + 27168.217917082267, + 27378.699204643755, + 27595.836896748442, + 27819.630993396346, + 28050.081494587448, + 28287.18840032178, + 28530.95171059931, + 28781.371425420046, + 29038.44754478399, + 25751.400149544002, + 25781.516379477824, + 25818.289013954865, + 25861.718052975113, + 25911.803496538563, + 25968.545344645234, + 26031.943597295107, + 26101.99825448819, + 26178.709316224493, + 26262.076782504002, + 26352.100653326717, + 26448.78092869264, + 26552.117608601777, + 26662.11069305412, + 26778.760182049686, + 26902.066075588442, + 27032.02837367042, + 27168.6470762956, + 27311.922183463997, + 27461.853695175607, + 27618.441611430415, + 27781.68593222844, + 27951.586657569682, + 28128.14378745412, + 28311.357321881773, + 28501.227260852644, + 28697.75360436672, + 28900.936352424, + 29110.775505024492, + 29327.271062168198, + 29550.423023855106, + 29780.23139008524, + 30016.696160858563, + 30259.81733617511, + 30509.59491603487, + 30766.028900437825, + 31029.11928938399, + 24024.401398796002, + 24048.675848107603, + 24079.60670196242, + 24117.19396036044, + 24161.43762330168, + 24212.33769078612, + 24269.89416281377, + 24334.10703938464, + 24404.976320498707, + 24482.502006155995, + 24566.68409635649, + 24657.522591100194, + 24755.017490387105, + 24859.168794217232, + 24969.97650259057, + 25087.44061550711, + 25211.561132966865, + 25342.338054969827, + 25479.77138151599, + 25623.86111260538, + 25774.60724823797, + 25932.009788413772, + 26096.068733132794, + 26266.78408239501, + 26444.155836200436, + 26628.183994549083, + 26818.868557440936, + 27016.209524875994, + 27220.206896854274, + 27430.860673375755, + 27648.170854440443, + 27872.137440048347, + 28102.760430199454, + 28340.03982489378, + 28583.975624131308, + 28834.567827912048, + 29091.816436235986, + 25811.160469116003, + 25841.474495529827, + 25878.444926486867, + 25922.071761987114, + 25972.35500203056, + 26029.29464661723, + 26092.890695747108, + 26163.143149420193, + 26240.05200763649, + 26323.617270395993, + 26413.838937698714, + 26510.717009544634, + 26614.25148593377, + 26724.44236686612, + 26841.289652341682, + 26964.793342360445, + 27094.953436922417, + 27231.769936027606, + 27375.242839675993, + 27525.372147867605, + 27682.15786060242, + 27845.59997788044, + 28015.698499701677, + 28192.453426066124, + 28375.86475697377, + 28565.93249242464, + 28762.65663241871, + 28966.037176955997, + 29176.074126036496, + 29392.767479660197, + 29616.117237827108, + 29846.123400537235, + 30082.785967790565, + 30326.10493958712, + 30576.08031592686, + 30832.71209680982, + 31096.00028223599, + 24070.742899699995, + 24095.1898379716, + 24126.293180786415, + 24164.05292814444, + 24208.469080045677, + 24259.54163649013, + 24317.27059747777, + 24381.655963008638, + 24452.69773308271, + 24530.3959077, + 24614.750486860496, + 24705.761470564186, + 24803.428858811105, + 24907.752651601233, + 25018.732848934567, + 25136.36945081111, + 25260.662457230865, + 25391.611868193824, + 25529.217683699993, + 25673.47990374938, + 25824.39852834197, + 25981.97355747778, + 26146.20499115679, + 26317.092829379006, + 26494.637072144436, + 26678.837719453088, + 26869.694771304934, + 27067.208227699994, + 27271.37808863827, + 27482.204354119753, + 27699.687024144438, + 27923.826098712347, + 28154.62157782345, + 28392.07346147778, + 28636.18174967531, + 28886.946442416047, + 29144.367539699997, + 25870.103000699997, + 25900.614823593827, + 25937.78305103086, + 25981.60768301111, + 26032.088719534568, + 26089.22616060123, + 26153.02000621111, + 26223.470256364195, + 26300.576911060485, + 26384.339970299992, + 26474.759434082713, + 26571.83530240864, + 26675.56757527777, + 26785.956252690125, + 26903.001334645673, + 27026.70282114444, + 27157.060712186423, + 27294.0750077716, + 27437.745707899998, + 27588.072812571605, + 27745.05632178642, + 27908.69623554445, + 28078.992553845685, + 28255.94527669012, + 28439.554404077775, + 28629.819936008647, + 28826.74187248271, + 29030.3202135, + 29240.5549590605, + 29457.446109164197, + 29680.9936638111, + 29911.197623001233, + 30148.057986734562, + 30391.574755011115, + 30641.747927830867, + 30898.577505193825, + 31162.063487099997, + 24116.266612615997, + 24140.886039847603, + 24172.161871622415, + 24210.09410794044, + 24254.68274880168, + 24305.92779420612, + 24363.82924415377, + 24428.387098644638, + 24499.601357678708, + 24577.472021256, + 24661.999089376495, + 24753.182562040194, + 24851.02243924711, + 24955.518720997232, + 25066.671407290563, + 25184.480498127108, + 25308.94599350686, + 25440.06789342982, + 25577.846197895993, + 25722.28090690538, + 25873.37202045797, + 26031.119538553776, + 26195.523461192788, + 26366.583788375014, + 26544.300520100434, + 26728.673656369087, + 26919.70319718094, + 27117.389142535998, + 27321.731492434268, + 27532.73024687575, + 27750.385405860434, + 27974.696969388347, + 28205.664937459453, + 28443.289310073775, + 28687.57008723131, + 28938.50726893205, + 29196.10085517599, + 25928.227744296, + 25958.937363669822, + 25996.30338758686, + 26040.32581604711, + 26091.004649050563, + 26148.339886597227, + 26212.331528687104, + 26282.97957532019, + 26360.28402649649, + 26444.244882215997, + 26534.862142478716, + 26632.135807284638, + 26736.065876633773, + 26846.65235052612, + 26963.895228961675, + 27087.79451194044, + 27218.350199462413, + 27355.562291527596, + 27499.430788135996, + 27649.955689287606, + 27807.136994982415, + 27970.97470522044, + 28141.468820001675, + 28318.619339326124, + 28502.42626319377, + 28692.889591604642, + 28890.009324558716, + 29093.785462055996, + 29304.218004096492, + 29521.306950680195, + 29745.052301807104, + 29975.454057477233, + 30212.512217690568, + 30456.226782447106, + 30706.597751746864, + 30963.625125589824, + 31227.30890397599, + 24121.274326202125, + 24145.912918889062, + 24177.20791611921, + 24215.15931789257, + 24259.767124209142, + 24311.031335068914, + 24368.951950471896, + 24433.528970418094, + 24504.762394907502, + 24582.652223940117, + 24667.198457515948, + 24758.401095634978, + 24856.260138297228, + 24960.77558550268, + 25071.947437251347, + 25189.775693543226, + 25314.260354378308, + 25445.401419756603, + 25583.198889678108, + 25727.652764142826, + 25878.76304315075, + 26036.529726701883, + 26200.95281479623, + 26372.03230743378, + 26549.768204614546, + 26734.16050633852, + 26925.209212605703, + 27122.9143234161, + 27327.275838769707, + 27538.293758666518, + 27755.968083106538, + 27980.29881208978, + 28211.285945616215, + 28448.92948368587, + 28693.229426298738, + 28944.18577345481, + 29201.79852515409, + 25934.63557352222, + 25965.3671703003, + 26002.755171621582, + 26046.79957748608, + 26097.50038789378, + 26154.8576028447, + 26218.87122233882, + 26289.541246376157, + 26366.867674956702, + 26450.85050808046, + 26541.48974574742, + 26638.785387957596, + 26742.73743471098, + 26853.345886007566, + 26970.61074184738, + 27094.532002230393, + 27225.109667156616, + 27362.34373662605, + 27506.234210638697, + 27656.78108919455, + 27813.984372293613, + 27977.844059935884, + 28148.36015212137, + 28325.53264885006, + 28509.361550121957, + 28699.846855937074, + 28896.9885662954, + 29100.786681196932, + 29311.24120064168, + 29528.352124629622, + 29752.119453160783, + 29982.54318623516, + 30219.623323852746, + 30463.359866013543, + 30713.75281271754, + 30970.80216396475, + 31234.507919755175, + 20062.2496478, + 20116.019709271604, + 20176.44617528642, + 20243.529045844443, + 20317.26832094568, + 20397.664000590124, + 20484.716084777774, + 20578.424573508644, + 20678.789466782713, + 20785.8107646, + 20899.488466960494, + 21019.822573864196, + 21146.813085311114, + 21280.46000130123, + 21420.763321834565, + 21567.723046911105, + 21721.339176530866, + 21881.611710693833, + 22048.54064939999, + 22222.125992649377, + 22402.367740441976, + 22589.265892777777, + 22782.820449656785, + 22983.03141107901, + 23189.89877704444, + 23403.422547553087, + 23623.602722604937, + 23850.439302199997, + 24083.93228633827, + 24324.08167501975, + 24570.88746824444, + 24824.349666012346, + 25084.46826832346, + 25351.24327517778, + 25624.674686575312, + 25904.76250251605, + 26191.506723, + 24003.7849644, + 24067.922188893823, + 24138.71581793086, + 24216.165851511112, + 24300.272289634562, + 24391.035132301233, + 24488.45437951111, + 24592.530031264196, + 24703.26208756049, + 24820.6505484, + 24944.695413782712, + 25075.396683708645, + 25212.754358177775, + 25356.768437190123, + 25507.438920745677, + 25664.765808844444, + 25828.749101486424, + 25999.388798671604, + 26176.6849004, + 26360.63740667161, + 26551.24631748642, + 26748.511632844446, + 26952.433352745684, + 27163.01147719012, + 27380.246006177775, + 27604.136939708642, + 27834.684277782715, + 28071.888020399994, + 28315.748167560494, + 28566.2647192642, + 28823.437675511104, + 29087.267036301237, + 29357.752801634564, + 29634.89497151112, + 29918.693545930862, + 30209.148524893826, + 30506.259908399992 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 10.201494194952453, + "volume": 3.78541 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_30_MP.json b/examples/ColmacCxA_30_MP.json new file mode 100644 index 0000000..e5ed4c0 --- /dev/null +++ b/examples/ColmacCxA_30_MP.json @@ -0,0 +1,2174 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.002586696833333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 63945.960559188454, + 63174.91427666841, + 62477.164211392956, + 61847.21465169169, + 61279.872043421834, + 60770.244989968094, + 60313.74425224281, + 59906.0827486858, + 59543.27555526453, + 59221.63990547393, + 58937.79519033654, + 58688.66295840243, + 58471.46691574921, + 58283.732925982134, + 58123.28901023384, + 57988.265347164735, + 57877.09427296262, + 57788.51028134286, + 57721.55002354849, + 57675.552308349965, + 57650.15810204541, + 57645.31052846044, + 57661.25486894819, + 57698.53856238945, + 57758.01120519247, + 57840.82455129314, + 57948.432512154795, + 58082.591156768474, + 58245.3587116526, + 58439.09556085333, + 58666.46424594419, + 58930.42946602643, + 59234.25807772874, + 59581.51909520742, + 59976.083690146246, + 60422.125191756735, + 60924.11908677773, + 64031.448582954734, + 63260.61115890317, + 62563.0619903208, + 61933.29853725809, + 61366.12041729309, + 60856.62940553146, + 60400.22943460637, + 59992.62659467857, + 59629.82913343631, + 59308.14745609546, + 59024.19412539942, + 58774.88386161916, + 58557.433542553146, + 58369.36220352749, + 58208.491037395754, + 58072.94339453919, + 57961.14478286644, + 57871.82286781384, + 57804.00747234522, + 57757.030576951955, + 57730.526319653014, + 57724.43099599489, + 57738.98305905166, + 57774.72311942491, + 57832.49394524382, + 57913.4404621651, + 58019.009753373015, + 58150.95105957947, + 58311.31577902375, + 58502.45746747289, + 58727.03183822131, + 58987.99676209113, + 59288.61226743188, + 59632.440540120784, + 60023.34592356252, + 60465.494918689394, + 60963.3561839612, + 64800.67582667591, + 64031.87615175484, + 63336.286352865485, + 62708.342435546205, + 62142.782562862965, + 61634.647055409296, + 61179.27839130626, + 60772.321206202505, + 60409.722293274164, + 60087.73060322502, + 59802.89724428634, + 59552.07548221697, + 59332.42074030331, + 59141.39059935931, + 58976.74479772649, + 58836.545231273885, + 58719.15595339815, + 58623.243175023454, + 58547.77526460148, + 58492.02274811159, + 58455.558309060565, + 58438.25678848281, + 58440.295184940274, + 58462.15265452248, + 58504.610510846425, + 58568.75222505682, + 58655.96342582573, + 58767.931899352945, + 58906.6475893657, + 59074.40259711887, + 59273.791181394816, + 59507.70975850349, + 59779.35690228235, + 60092.23334409652, + 60450.14197283854, + 60857.18783492865, + 61317.77813431443, + 65569.55978316338, + 64803.08377295405, + 64109.72715711313, + 63483.86448666693, + 62920.17247016929, + 62413.6299737016, + 61959.51802087287, + 61553.41979281958, + 61191.220628205796, + 60869.108023223154, + 60583.57163159084, + 60331.40326455559, + 60109.69689089165, + 59915.84863690096, + 59747.55678641281, + 59602.82178078423, + 59479.946218899684, + 59377.534857171275, + 59294.49460953861, + 59230.03454746883, + 59183.665899956664, + 59155.202053524474, + 59144.75855222204, + 59152.75309762672, + 59179.905548843555, + 59227.23792250495, + 59296.07439277102, + 59388.04129132938, + 59505.06710739517, + 59649.38248771114, + 59823.52023654755, + 60030.315315702246, + 60272.90484450058, + 60554.72809979552, + 60879.52651596755, + 61251.34368492479, + 61674.52535610273, + 66338.03447945784, + 65574.17014465023, + 64883.32262032198, + 64259.80500298726, + 63698.23254668782, + 63193.52266299294, + 62740.8949209995, + 62335.87104733186, + 61974.274926142025, + 61652.23259910948, + 61366.17226544131, + 61112.82428187217, + 60889.221162664166, + 60692.697579607106, + 60520.89036201822, + 60371.73849674242, + 60243.48312815204, + 60134.667558147084, + 60044.13724615499, + 59971.03980913093, + 59914.825021557444, + 59875.244815444734, + 59852.353280330506, + 59846.506663280066, + 59858.36336888623, + 59888.883959269435, + 59939.3311540776, + 60011.26983048623, + 60106.56702319835, + 60227.391924444615, + 60376.21588398323, + 60555.81240909981, + 60769.257164607756, + 61019.927972847785, + 61311.50481368834, + 61647.9698245254, + 62033.607300282376, + 67106.03378821687, + 66345.0712346098, + 65657.01080536719, + 65036.10414249116, + 64476.905045511274, + 63974.26947148476, + 63523.35553499637, + 63119.62350815839, + 62758.83582061063, + 62437.05705952056, + 62150.653969583094, + 61896.295453020764, + 61670.95256958368, + 61471.8985365494, + 61296.70872872314, + 61143.26067843762, + 61009.73407555315, + 60894.61076745756, + 60796.67475906623, + 60715.012212822185, + 60649.01144869587, + 60598.36294418536, + 60563.05933431629, + 60543.39541164179, + 60539.96812624267, + 60553.67658572714, + 60585.72205523106, + 60637.60795741787, + 60711.13987247847, + 60808.42553813133, + 60931.87484962259, + 61084.19985972579, + 61268.41477874219, + 61487.83597450038, + 61746.081972356726, + 62047.07345519511, + 62395.03326342679, + 67873.49142771486, + 67115.72285621587, + 66430.72962074066, + 65812.70190877924, + 65256.13206534906, + 64755.814592995266, + 64306.84615179047, + 63904.62555933486, + 63544.85379075612, + 63223.533978709645, + 62936.9714133782, + 62681.77354247226, + 62454.84997122976, + 62253.41246241618, + 62074.974936324645, + 61917.35347077574, + 61778.66630111766, + 61657.33382022616, + 61552.078578504494, + 61461.9252838835, + 61386.20080182165, + 61324.53415530484, + 61276.856524846575, + 61243.40124848796, + 61224.703821797586, + 61221.60189787164, + 61235.235287333795, + 61267.04595833541, + 61318.77803655531, + 61392.47780519986, + 61490.49370500303, + 61615.47633422631, + 61770.37844865877, + 61958.45496161703, + 62183.26294394518, + 62448.66162401508, + 62758.81238772591, + 68214.51176598966, + 67458.2576230036, + 66774.7185595019, + 66158.05744029838, + 65602.73928773453, + 65103.53128167929, + 64655.502759529256, + 64254.025216208545, + 63894.772304168735, + 63573.71983338912, + 63287.145771376396, + 63031.630243165004, + 62804.05553131666, + 62601.60607592092, + 62421.76847459472, + 62262.331482482594, + 62121.386012256684, + 61997.325134116596, + 61888.84407578951, + 61794.94022253029, + 61714.91311712116, + 61648.36445987203, + 61595.1981086203, + 61555.62007873097, + 61530.13854309659, + 61519.563832137224, + 61525.00843380052, + 61547.88699356171, + 61589.91631442349, + 61653.115356916205, + 61739.805239097775, + 61852.60923655347, + 61994.45278239644, + 62168.56346726707, + 62378.47103933352, + 62628.00740429146, + 62921.306625363955, + 68640.34096184307, + 67886.06066846848, + 67204.41682055118, + 66589.5381510691, + 66035.85555052756, + 65538.10206695956, + 65091.31290592565, + 64690.8254305139, + 64332.27916133991, + 64011.61577654692, + 63725.07911180561, + 63469.215160314314, + 63240.872072798855, + 63037.20015751269, + 62855.65188023673, + 62693.981864279536, + 62550.24689047712, + 62422.80589719316, + 62310.3199803188, + 62211.75239327282, + 62126.36854700147, + 62053.73600997859, + 61993.72450820563, + 61946.505925211466, + 61912.5543020527, + 61892.64583731332, + 61887.858887104994, + 61899.5739650669, + 61929.473742365706, + 61979.543047695726, + 62052.068867278875, + 62149.64034486443, + 62275.14878172943, + 62431.78763667828, + 62623.05252604311, + 62852.74122368357, + 63124.953660986735, + 69406.51580010953, + 68656.02017598442, + 67978.01000452435, + 67366.55256419505, + 66816.01729098982, + 66321.07577842954, + 65876.7017775626, + 65478.17119696499, + 65121.0621027402, + 64801.25471851934, + 64514.931425461, + 64258.57676225142, + 64028.97742510433, + 63823.22226776101, + 63638.70230149027, + 63473.110695088595, + 63324.44277487992, + 63190.99602471573, + 63071.37008597511, + 62964.4667575647, + 62869.48999591871, + 62785.94591499882, + 62713.64278629434, + 62652.69103882211, + 62603.503259126526, + 62566.794191279565, + 62543.58073688073, + 62535.1819550571, + 62543.21906246324, + 62569.615433281375, + 62616.59659922123, + 62686.69024952006, + 62782.72623094275, + 62907.83654778164, + 63065.45536185669, + 63259.31899251547, + 63493.46591663293, + 70171.94919763917, + 69425.53672899744, + 68751.44661800262, + 68143.6846886084, + 67596.55892229592, + 67104.67945807398, + 66662.95859247886, + 66266.61077957442, + 65911.15263095207, + 65592.4029157308, + 65306.482560557066, + 65049.81464960503, + 64819.12442457629, + 64611.439284700005, + 64424.088786732944, + 64254.704644959405, + 64101.22073119124, + 63961.87307476784, + 63835.1998625562, + 63720.04143895077, + 63615.54030587369, + 63521.141122774556, + 63436.590706630566, + 63361.938031946454, + 63297.53423075446, + 63244.032592614516, + 63202.38856461392, + 63173.85975136771, + 63160.00591501837, + 63162.68897523596, + 63184.07300921809, + 63226.62425168998, + 63293.11109490429, + 63386.604088641376, + 63510.47594020896, + 63668.40151444262, + 63864.35783370516, + 70936.57425517372, + 70194.54552335794, + 69524.66395194523, + 68920.8739103771, + 68377.4219256226, + 67888.8566821784, + 67450.02902206873, + 67056.09194484528, + 66702.50060758735, + 66385.01232490187, + 66099.68656892315, + 65842.88496931325, + 65611.27131326163, + 65401.811545485434, + 65211.77376822919, + 65038.7282412652, + 64880.54738189312, + 64735.405764940304, + 64601.78012276155, + 64478.44934523933, + 64364.494479783556, + 64259.29873133174, + 64162.547462348986, + 64074.22819282789, + 63994.63060028866, + 63924.34651977903, + 63864.26994387426, + 63815.59702267725, + 63779.82606381832, + 63758.7575324555, + 63754.494051274305, + 63769.44040048771, + 63806.30351783642, + 63868.09249858857, + 63958.11859553989, + 64079.99521901373, + 64237.637936860825, + 71700.32391907173, + 70962.98160053334, + 70297.5991429283, + 69698.05946118604, + 69158.54762776352, + 68673.55087264527, + 68237.85858334339, + 67846.5623048975, + 67495.0557398748, + 67179.03474837006, + 66894.49734800553, + 66637.74371393114, + 66405.37617882424, + 66194.29923288981, + 66001.71952386037, + 65825.14585699604, + 65662.38919508443, + 65511.5626584407, + 65371.0815249076, + 65239.663229855476, + 65116.327366182144, + 65000.39568431298, + 64891.492092201, + 64789.542655326695, + 64694.775596698135, + 64607.721296850934, + 64529.21229384829, + 64460.38328328097, + 64402.671118267215, + 64357.814809452866, + 64327.85552501139, + 64315.13659064365, + 64322.30348957824, + 64352.30386257116, + 64408.38750790607, + 64494.10638139418, + 64613.31459637411, + 72463.13098130858, + 71730.77984760773, + 71070.18917314475, + 70475.18041833694, + 69939.87720112914, + 69458.70529699378, + 69026.39263893085, + 68637.9693174679, + 68288.76758065994, + 67974.42183408968, + 67690.86864086727, + 67434.34672163049, + 67201.39695454463, + 66988.86237530256, + 66793.88817712465, + 66613.9217107589, + 66446.71248448086, + 66290.31216409357, + 66143.07457292762, + 66003.6556918413, + 65871.01365922029, + 65744.40877097791, + 65623.40348055499, + 65507.86239891993, + 65397.95229456872, + 65294.14209352487, + 65197.20287933944, + 65108.207893091094, + 65028.53253338593, + 64959.854356357755, + 64904.153075667884, + 64863.71056250506, + 64841.11084558578, + 64839.240111153966, + 64861.28670298109, + 64910.74112236629, + 64991.39602813615, + 73224.9280794765, + 72497.87499728214, + 71842.37087040432, + 71252.17570474827, + 70721.35166374673, + 70244.26306836001, + 69815.57639707596, + 69430.26028591, + 69083.58552840514, + 68771.12507563188, + 68488.75403618829, + 68232.64967620005, + 67999.29141932032, + 67785.46084672984, + 67588.24169713695, + 67405.01986677751, + 67233.4834094149, + 67071.6225363401, + 66917.72961637162, + 66770.39917585555, + 66628.52789866556, + 66491.31462620277, + 66358.26035739601, + 66229.16824870149, + 66104.1436141031, + 65983.59392511225, + 65868.22881076788, + 65759.0600576365, + 65657.40160981224, + 65564.86956891668, + 65483.382194099, + 65415.15990203596, + 65362.725266931826, + 65328.90302051848, + 65316.82005205523, + 65329.905408329185, + 65371.89029365473, + 73985.64769678452, + 73264.20162787435, + 72614.08090813362, + 72028.98408895546, + 71502.91187926044, + 71030.1671454968, + 70605.35491164033, + 70223.3823591943, + 69879.45882718958, + 69569.09581218459, + 69288.10696826529, + 69032.60810704526, + 68799.01719766554, + 68584.05436679476, + 68384.74189862915, + 68198.40423489243, + 68022.66797483592, + 67855.46187523848, + 67695.01685040651, + 67539.86597217397, + 67388.84446990241, + 67241.08973048093, + 67096.04129832608, + 66953.44087538212, + 66813.33232112076, + 66676.06165254132, + 66542.27704417061, + 66412.9288280631, + 66289.26949380069, + 66172.85368849295, + 66065.53821677691, + 65969.48204081724, + 65887.14628030607, + 65821.29421246314, + 65774.9912720358, + 65751.60505129887, + 65754.80530005472, + 74745.22216205859, + 74029.69416331907, + 73385.25580537612, + 72805.54418511066, + 72284.49855693127, + 71816.360332774, + 71395.67308210254, + 71017.28253190809, + 70676.33656670936, + 70368.2852285527, + 70088.88071701193, + 69834.17738918855, + 69600.53175971146, + 69384.60250073722, + 69183.3504419499, + 68994.03857056114, + 68814.23203131015, + 68641.79812646373, + 68474.90631581603, + 68312.02821668905, + 68151.93760393215, + 67993.7104099223, + 67836.72472456403, + 67680.66079528944, + 67525.5010270581, + 67371.52998235727, + 67219.33438120164, + 67069.80310113354, + 66924.1271772228, + 66783.79980206683, + 66650.61632579064, + 66526.67425604665, + 66414.37325801504, + 66316.41515440337, + 66235.80392544679, + 66175.84570890816, + 66140.14880007763, + 75503.58364974137, + 74794.28687316776, + 74155.83192679197, + 73581.79445298293, + 73066.05225163695, + 72602.78528017808, + 72186.47565355788, + 71811.90764425542, + 71474.16768227729, + 71168.64435515778, + 70891.02840795857, + 70637.31274326904, + 70403.79242120599, + 70187.0646594139, + 69984.02883306466, + 69791.88647485788, + 69608.14127502059, + 69430.59908130747, + 69257.36789900069, + 69086.85789091005, + 68917.78137737277, + 68749.15283625376, + 68580.28890294545, + 68410.80837036773, + 68240.63218896823, + 68069.98346672194, + 67899.38746913153, + 67729.67161922723, + 67561.96549756669, + 67397.70084223525, + 67238.61154884585, + 67086.7336705387, + 66944.40541798198, + 66814.26715937104, + 66699.26142042903, + 66602.63288440657, + 66527.92839208184, + 76260.6641798924, + 75557.91387258872, + 74925.74548265834, + 74357.67319795804, + 73847.5133638721, + 73389.38448331245, + 72977.7072167185, + 72607.20438205717, + 72272.90095482308, + 71970.12406803829, + 71694.50301225243, + 71441.96923554271, + 71208.7563435139, + 70991.40009929825, + 70786.73842355571, + 70591.91139447365, + 70404.36124776705, + 70221.83237667845, + 70042.37133197793, + 69864.32682196316, + 69686.34971245927, + 69507.39302681905, + 69326.7119459228, + 69143.86380817837, + 68958.70810952118, + 68771.4065034142, + 68582.42280084794, + 68392.52297034052, + 68202.7751379375, + 68014.54958721212, + 67829.5187592652, + 67649.65725272485, + 67477.24182374707, + 67314.8513860152, + 67165.36701074021, + 67031.9719266607, + 66918.15152004262, + 77016.3956181881, + 76320.50912236712, + 75694.9325288691, + 75133.11857103877, + 74628.82213974824, + 74176.10028339736, + 73769.31220791339, + 73403.11927675124, + 73072.4850108933, + 72772.67508884959, + 72499.25734665759, + 72248.10177788246, + 72015.38053361679, + 71797.56792248081, + 71591.44041062225, + 71394.07662171645, + 71202.85733696628, + 71015.4654951021, + 70829.88619238195, + 70644.40668259133, + 70457.61637704336, + 70268.40684457865, + 70075.97181156537, + 69879.8071618993, + 69679.71093700378, + 69475.78333582959, + 69268.42671485516, + 69058.34558808652, + 68846.5466270571, + 68634.33866082813, + 68423.33267598809, + 68215.44181665323, + 68012.88138446728, + 67818.16883860154, + 67634.1237957549, + 67463.86803015375, + 67310.82547355203, + 77770.70967592164, + 77082.00642890489, + 76463.328966935, + 75908.06856884454, + 75409.91867099359, + 74962.8748672698, + 74561.23490908838, + 74199.59870539207, + 73872.86832265125, + 73576.2479848637, + 73305.24407355493, + 73055.66512777787, + 72823.62184411308, + 72605.52707666863, + 72398.0958370802, + 72198.34529451096, + 72003.59477565167, + 71811.46576472066, + 71619.88190346376, + 71427.06899115443, + 71231.55498459363, + 71032.16999810988, + 70828.0463035593, + 70618.61833032548, + 70403.62266531964, + 70183.09805298051, + 69957.3853952744, + 69727.1277516952, + 69493.27033926429, + 69257.06053253068, + 69020.04786357081, + 68784.0840219889, + 68551.32285491645, + 68324.2203670127, + 68105.53472046435, + 67898.32623498578, + 67705.95738781881, + 78523.53791000304, + 77842.33944422087, + 77230.87054398365, + 76682.46103361178, + 76190.74289495326, + 75749.65026738368, + 75353.41944780611, + 74996.58889065121, + 74673.99920787712, + 74380.7931689697, + 74112.41570094218, + 73864.61388833552, + 73633.43697321808, + 73415.23635518589, + 73206.66559136241, + 73004.6803963988, + 72806.5386424737, + 72609.8003592933, + 72412.3277340913, + 72212.2851116291, + 72008.13899419553, + 71798.65804160702, + 71582.91307120753, + 71360.27705786859, + 71130.42513398928, + 70893.33458949625, + 70649.2848718437, + 70398.85758601339, + 70142.9364945146, + 69882.70751738416, + 69619.6587321866, + 69355.58037401372, + 69092.56483548522, + 68833.00666674801, + 68579.60257547685, + 68335.3514268739, + 68103.55424366887, + 79274.81172295928, + 78601.44166595074, + 77997.49285275943, + 77456.23365319366, + 76971.23459458929, + 76536.36836180977, + 76145.80979724611, + 75794.03590081683, + 75475.825829968, + 75186.2608996733, + 74920.72458243396, + 74674.90250827871, + 74444.78246476389, + 74226.65439697332, + 74017.11040751848, + 73813.04475653835, + 73611.65386169948, + 73410.43629819587, + 73207.19279874925, + 73000.02625360883, + 72787.3417105513, + 72567.84637488102, + 72340.54960942986, + 72104.76293455723, + 71860.10002815007, + 71606.47672562297, + 71344.11101991795, + 71073.52306150469, + 70795.5351583804, + 70511.27177606981, + 70222.15953762522, + 69929.92722362648, + 69636.60577218102, + 69344.52827892383, + 69056.32999701732, + 68774.9483371518, + 68503.62286754466, + 80024.46236293392, + 79359.2464373469, + 78763.13133162356, + 78229.32396106012, + 77751.33339848033, + 77322.97087423556, + 76938.34977620465, + 76591.88564979403, + 76278.29619793766, + 75992.60128109714, + 75730.12291726157, + 75486.48528194755, + 75257.61470819937, + 75039.73968658873, + 74829.3908652149, + 74623.40104970486, + 74418.90520321294, + 74213.34044642124, + 74004.44605753913, + 73790.26347230385, + 73569.13628397997, + 73339.71024335978, + 73100.93325876289, + 72852.05539603673, + 72592.62887855612, + 72322.50808722348, + 72041.84956046878, + 71751.11199424962, + 71451.05624205094, + 71142.74531488551, + 70827.54438129353, + 70507.12076734263, + 70183.44395662824, + 69858.78559027311, + 69535.71946692774, + 69217.1215427701, + 68906.16993150565, + 80772.42092368759, + 80115.6869472787, + 79527.72126455417, + 79001.66933629809, + 78530.97878082212, + 78109.39937396544, + 77730.98304909487, + 77390.0838971047, + 77081.35816641686, + 76799.76426298074, + 76540.5627502733, + 76299.31634929916, + 76071.88993859035, + 75854.45055420655, + 75643.46738973499, + 75435.71179629039, + 75228.25728251507, + 75018.47951457894, + 74804.05631617937, + 74582.96766854142, + 74353.49571041757, + 74114.22473808791, + 73864.0412053601, + 73602.13372356936, + 73327.99306157847, + 73041.41214577762, + 72742.4860600848, + 72431.61204594535, + 72109.48950233233, + 71777.11998574622, + 71435.80721021508, + 71087.1570472946, + 70733.07752606795, + 70375.77883314583, + 70017.77331266664, + 69661.87546629623, + 69311.20195322794, + 80855.42004909429, + 80199.64883892717, + 79612.60822800995, + 79087.43684884219, + 78617.57549145087, + 78196.76710339065, + 77819.05678974379, + 77478.79181311993, + 77170.62159365637, + 76889.49770901803, + 76630.67389439726, + 76389.70604251401, + 76162.45220361582, + 75945.07258547777, + 75734.02955340238, + 75526.08763021995, + 75318.31349628816, + 75108.07598949231, + 74893.04610524517, + 74671.19699648724, + 74440.80397368643, + 74200.44450483825, + 73948.99821546572, + 73685.64688861952, + 73409.87446487776, + 73121.46704234624, + 72820.51287665812, + 72507.40238097437, + 72182.82812598326, + 71847.78483990087, + 71503.56940847059, + 71151.78087496349, + 70794.3204401782, + 70433.39146244088, + 70071.49945760527, + 69711.45209905264, + 69356.35921769176, + 114508.14545673016, + 114742.865731407, + 115014.19272391006, + 115312.19234113877, + 115627.2326475202, + 115949.983865009, + 116271.41837308729, + 116582.81070876488, + 116875.73756657893, + 117142.0777985943, + 117374.01241440342, + 117564.0245811262, + 117704.8996234101, + 117789.72502343029, + 117811.89042088925, + 117765.08761301718, + 117643.3105545718, + 117440.85535783839, + 117152.32029262974, + 116772.60578628625, + 116296.91442367584, + 115720.75094719403, + 115039.9222567638, + 114250.53740983584, + 113349.0076213883, + 112332.04626392675, + 111196.6688674846, + 109940.19311962256, + 108560.23886542908, + 107054.72810752006, + 105421.88500603905, + 103660.23587865691, + 101768.6092005725, + 99746.13560451164, + 97592.2478807282, + 95306.68097700358, + 92889.47199864642 + ], + "input_power": [ + 15459.738096400002, + 15688.797280992589, + 15940.210962059262, + 16213.9791396, + 16510.101813614812, + 16828.578984103708, + 17169.410651066668, + 17532.596814503697, + 17918.13747441482, + 18326.0326308, + 18756.282283659268, + 19208.886432992596, + 19683.845078799997, + 20181.158221081474, + 20700.82585983704, + 21242.847995066662, + 21807.224626770385, + 22393.955754948147, + 23003.041379599996, + 23634.48150072593, + 24288.276118325928, + 24964.425232399997, + 25662.928842948157, + 26383.786949970374, + 27126.99955346666, + 27892.566653437047, + 28680.488249881477, + 29490.764342799997, + 30323.3949321926, + 31178.380018059266, + 32055.71960039999, + 32955.41367921483, + 33877.462254503705, + 34821.86532626669, + 35788.62289450371, + 36777.73495921482, + 37789.20152039999, + 15460.722679463, + 15690.070752944477, + 15941.77332290004, + 16215.830389329667, + 16512.241952233366, + 16831.00801161115, + 17172.128567462998, + 17535.603619788923, + 17921.43316858893, + 18329.617213863, + 18760.155755611155, + 19213.04879383337, + 19688.296328529665, + 20185.89835970003, + 20705.854887344485, + 21248.165911463002, + 21812.831432055602, + 22399.85144912226, + 23009.225962662997, + 23640.95497267782, + 24295.038479166706, + 24971.47648212966, + 25670.268981566715, + 26391.415977477816, + 27134.917469862994, + 27900.773458722266, + 28688.983944055588, + 29499.548925862997, + 30332.46840414449, + 31187.74237890004, + 32065.370850129653, + 32965.353817833384, + 33887.69128201115, + 34832.38324266302, + 35799.42969978893, + 36788.830653388926, + 37800.58610346299, + 15469.321427, + 15701.269500481478, + 15955.572070437041, + 16232.229136866668, + 16531.24069977037, + 16852.60675914815, + 17196.327315, + 17562.402367325918, + 17950.831916125928, + 18361.6159614, + 18794.754503148157, + 19250.247541370376, + 19728.095076066667, + 20228.297107237035, + 20750.85363488149, + 21295.764658999997, + 21863.030179592603, + 22452.650196659262, + 23064.62471019999, + 23698.953720214824, + 24355.637226703708, + 25034.67522966666, + 25736.067729103714, + 26459.814725014818, + 27205.91621739999, + 27974.372206259268, + 28765.182691592592, + 29578.347673399996, + 30413.867151681487, + 31271.741126437035, + 32151.969597666655, + 33054.55256537038, + 33979.49002954814, + 34926.78199020002, + 35896.42844732593, + 36888.42940092593, + 37902.78485099998, + 15477.447674482999, + 15711.995747964478, + 15968.89831792004, + 16248.155384349666, + 16549.766947253367, + 16873.733006631148, + 17220.053562482997, + 17588.72861480892, + 17979.758163608927, + 18393.142208882997, + 18828.880750631153, + 19286.973788853375, + 19767.42132354966, + 20270.22335472003, + 20795.379882364487, + 21342.890906482997, + 21912.7564270756, + 22504.976444142263, + 23119.550957682997, + 23756.479967697825, + 24415.763474186704, + 25097.40147714966, + 25801.393976586718, + 26527.74097249781, + 27276.442464882995, + 28047.498453742264, + 28840.90893907559, + 29656.67392088299, + 30494.79339916449, + 31355.267373920036, + 32238.09584514966, + 33143.27881285338, + 34070.81627703115, + 35020.708237683015, + 35992.95469480893, + 36987.55564840893, + 38004.51109848299, + 15485.101421911999, + 15722.249495393477, + 15981.75206534904, + 16263.609131778665, + 16567.820694682367, + 16894.38675406015, + 17243.307309911997, + 17614.582362237918, + 18008.211911037928, + 18424.195956311996, + 18862.53449806015, + 19323.227536282375, + 19806.275070978663, + 20311.677102149028, + 20839.433629793482, + 21389.544653912, + 21962.010174504598, + 22556.830191571258, + 23174.00470511199, + 23813.533715126825, + 24475.417221615706, + 25159.655224578662, + 25866.24772401571, + 26595.194719926818, + 27346.49621231199, + 28120.152201171266, + 28916.162686504595, + 29734.527668311992, + 30575.24714659349, + 31438.321121349036, + 32323.749592578657, + 33231.53256028237, + 34161.670024460145, + 35114.16198511201, + 36089.00844223793, + 37086.20939583793, + 38105.76484591199, + 15492.282669287, + 15732.03074276848, + 15994.13331272404, + 16278.59037915367, + 16585.401942057368, + 16914.56800143515, + 17266.088557287, + 17639.963609612925, + 18036.193158412927, + 18454.777203686997, + 18895.715745435155, + 19359.00878365737, + 19844.656318353664, + 20352.658349524027, + 20883.014877168484, + 21435.725901286998, + 22010.7914218796, + 22608.211438946262, + 23227.985952486993, + 23870.114962501822, + 24534.59846899071, + 25221.436471953664, + 25930.628971390717, + 26662.175967301813, + 27416.077459686992, + 28192.333448546266, + 28990.943933879593, + 29811.908915686992, + 30655.228393968493, + 31520.90236872404, + 32408.930839953653, + 33319.31380765738, + 34252.05127183515, + 35207.14323248701, + 36184.58968961293, + 37184.39064321293, + 38206.54609328699, + 15498.991416608, + 15741.33949008948, + 16006.04206004504, + 16293.099126474668, + 16602.510689378367, + 16934.27674875615, + 17288.397304608, + 17664.872356933924, + 18063.701905733928, + 18484.885951008, + 18928.424492756152, + 19394.317530978376, + 19882.56506567467, + 20393.167096845027, + 20926.12362448949, + 21481.434648608, + 22059.100169200603, + 22659.120186267264, + 23281.494699807998, + 23926.223709822825, + 24593.307216311707, + 25282.745219274664, + 25994.53771871171, + 26728.684714622814, + 27485.186207007995, + 28264.04219586727, + 29065.25268120059, + 29888.81766300799, + 30734.737141289494, + 31603.01111604504, + 32493.639587274658, + 33406.62255497838, + 34341.96001915615, + 35299.65197980802, + 36279.698436933926, + 37282.09939053393, + 38306.854840607986, + 15501.822389560526, + 15745.326423042005, + 16011.184952997568, + 16299.397979427195, + 16609.965502330895, + 16942.887521708675, + 17298.164037560524, + 17675.79504988645, + 18075.780558686456, + 18498.120563960525, + 18942.815065708677, + 19409.864063930905, + 19899.26755862719, + 20411.025549797556, + 20945.138037442015, + 21501.605021560525, + 22080.426502153132, + 22681.602479219793, + 23305.132952760523, + 23951.017922775354, + 24619.25738926424, + 25309.851352227193, + 26022.79981166424, + 26758.102767575343, + 27515.760219960524, + 28295.772168819796, + 29098.138614153122, + 29922.85955596052, + 30769.934994242023, + 31639.36492899757, + 32531.14936022719, + 33445.2882879309, + 34381.78171210868, + 35340.629632760545, + 36321.83204988646, + 37325.38896348646, + 38351.30037356051, + 15505.227663874999, + 15750.175737356478, + 16017.47830731204, + 16307.135373741667, + 16619.146936645368, + 16953.51299602315, + 17310.233551874997, + 17689.30860420092, + 18090.738153000926, + 18514.522198274997, + 18960.660740023155, + 19429.153778245374, + 19920.001312941662, + 20433.203344112026, + 20968.759871756487, + 21526.670895875, + 22106.936416467597, + 22709.55643353426, + 23334.530947074996, + 23981.85995708983, + 24651.54346357871, + 25343.581466541662, + 26057.973965978716, + 26794.720961889816, + 27553.822454274992, + 28335.278443134262, + 29139.08892846759, + 29965.253910274994, + 30813.773388556492, + 31684.647363312033, + 32577.875834541657, + 33493.45880224538, + 34431.39626642315, + 35391.688227075014, + 36374.33468420093, + 37379.33563780093, + 38406.691087874984, + 15510.991411088002, + 15758.539484569481, + 16028.442054525041, + 16320.699120954669, + 16635.310683858366, + 16972.27674323615, + 17331.597299088, + 17713.272351413925, + 18117.30190021393, + 18543.685945488, + 18992.424487236156, + 19463.517525458374, + 19956.965060154667, + 20472.767091325033, + 21010.923618969486, + 21571.434643087996, + 22154.300163680604, + 22759.52018074726, + 23387.094694287996, + 24037.023704302817, + 24709.307210791707, + 25403.945213754665, + 26120.937713191714, + 26860.28470910282, + 27621.986201487995, + 28406.042190347263, + 29212.45267568059, + 30041.217657487996, + 30892.337135769496, + 31765.811110525043, + 32661.639581754655, + 33579.82254945838, + 34520.36001363615, + 35483.251974288025, + 36468.49843141394, + 37476.099385013935, + 38506.05483508798, + 15516.282658247, + 15766.43073172848, + 16038.933301684043, + 16333.790368113669, + 16651.00193101737, + 16990.567990395153, + 17352.488546246997, + 17736.76359857292, + 18143.393147372928, + 18572.377192647, + 19023.715734395155, + 19497.408772617375, + 19993.456307313667, + 20511.85833848403, + 21052.614866128486, + 21615.725890246995, + 22201.191410839605, + 22809.01142790626, + 23439.185941447, + 24091.714951461825, + 24766.598457950706, + 25463.836460913662, + 26183.428960350713, + 26925.37595626182, + 27689.67744864699, + 28476.333437506273, + 29285.34392283959, + 30116.708904646992, + 30970.42838292849, + 31846.50235768404, + 32744.930828913653, + 33665.71379661738, + 34608.85126079515, + 35574.343221447016, + 36562.189678572926, + 37572.39063217292, + 38604.946082246985, + 15521.101405352, + 15773.849478833477, + 16048.95204878904, + 16346.409115218667, + 16666.22067812237, + 17008.38673750015, + 17372.907293352, + 17759.78234567792, + 18169.011894477928, + 18600.595939752, + 19054.53448150015, + 19530.827519722377, + 20029.475054418665, + 20550.47708558903, + 21093.833613233484, + 21659.544637352, + 22247.6101579446, + 22858.03017501126, + 23490.804688551994, + 24145.933698566827, + 24823.41720505571, + 25523.255208018665, + 26245.447707455714, + 26989.994703366818, + 27756.896195751993, + 28546.152184611266, + 29357.76266994459, + 30191.72765175199, + 31048.047130033487, + 31926.721104789034, + 32827.74957601866, + 33751.13254372238, + 34696.87000790014, + 35664.961968552016, + 36655.408425677924, + 37668.20937927793, + 38703.36482935198, + 15525.447652403, + 15780.795725884478, + 16058.49829584004, + 16358.555362269666, + 16680.966925173365, + 17025.73298455115, + 17392.853540402997, + 17782.328592728918, + 18194.158141528926, + 18628.342186803, + 19084.880728551154, + 19563.773766773375, + 20065.021301469667, + 20588.623332640032, + 21134.57986028448, + 21702.890884402994, + 22293.5564049956, + 22906.57642206226, + 23541.950935602992, + 24199.679945617823, + 24879.76345210671, + 25582.20145506966, + 26306.99395450671, + 27054.14095041782, + 27823.64244280299, + 28615.49843166227, + 29429.70891699559, + 30266.27389880299, + 31125.193377084488, + 32006.467351840038, + 32910.095823069656, + 33836.078790773376, + 34784.416254951146, + 35755.10821560302, + 36748.15467272893, + 37763.55562632893, + 38801.311076402984, + 15529.3213994, + 15787.269472881479, + 16067.572042837042, + 16370.229109266671, + 16695.24067217037, + 17042.606731548152, + 17412.3272874, + 17804.402339725923, + 18218.83188852593, + 18655.6159338, + 19114.754475548154, + 19596.247513770377, + 20100.095048466665, + 20626.297079637032, + 21174.85360728149, + 21745.764631399998, + 22339.030151992603, + 22954.650169059263, + 23592.624682599995, + 24252.953692614825, + 24935.63719910371, + 25640.675202066664, + 26368.067701503714, + 27117.81469741482, + 27889.91618979999, + 28684.372178659265, + 29501.182663992593, + 30340.347645799993, + 31201.86712408149, + 32085.74109883704, + 32991.969570066656, + 33920.55253777038, + 34871.49000194814, + 35844.78196260002, + 36840.428419725926, + 37858.429373325926, + 38898.7848234, + 15532.722646343002, + 15793.270719824479, + 16076.173289780041, + 16381.430356209667, + 16709.041919113366, + 17059.007978491154, + 17431.328534343, + 17826.00358666892, + 18243.03313546893, + 18682.417180743, + 19144.155722491156, + 19628.248760713377, + 20134.696295409667, + 20663.49832658003, + 21214.654854224485, + 21788.165878343, + 22384.031398935604, + 23002.251416002262, + 23642.825929542993, + 24305.75493955782, + 24991.038446046707, + 25698.67644900966, + 26428.668948446713, + 27181.015944357816, + 27955.717436742994, + 28752.77342560227, + 29572.183910935593, + 30413.948892742992, + 31278.06837102449, + 32164.542345780043, + 33073.37081700966, + 34004.55378471338, + 34958.09124889115, + 35933.98320954302, + 36932.22966666893, + 37952.83062026893, + 38995.78607034299, + 15535.651393232, + 15798.799466713477, + 16084.30203666904, + 16392.159103098667, + 16722.370666002367, + 17074.936725380147, + 17449.857281231998, + 17847.132333557918, + 18266.76188235793, + 18708.745927631997, + 19173.084469380152, + 19659.777507602375, + 20168.825042298664, + 20700.22707346903, + 21253.983601113483, + 21830.094625231995, + 22428.560145824602, + 23049.380162891262, + 23692.554676432, + 24358.083686446826, + 25045.967192935706, + 25756.205195898667, + 26488.797695335714, + 27243.744691246815, + 28021.04618363199, + 28820.702172491267, + 29642.712657824588, + 30487.077639631992, + 31353.79711791349, + 32242.871092669033, + 33154.299563898654, + 34088.082531602384, + 35044.21999578015, + 36022.71195643201, + 37023.55841355793, + 38046.75936715792, + 39092.31481723198, + 15538.107640067, + 15803.855713548479, + 16091.958283504042, + 16402.415349933664, + 16735.22691283737, + 17090.392972215148, + 17467.913528066998, + 17867.788580392924, + 18290.01812919293, + 18734.602174467, + 19201.540716215153, + 19690.83375443738, + 20202.481289133666, + 20736.48332030403, + 21292.839847948486, + 21871.550872066997, + 22472.616392659602, + 23096.036409726268, + 23741.810923266996, + 24409.939933281825, + 25100.423439770708, + 25813.261442733667, + 26548.45394217071, + 27306.00093808182, + 28085.90243046699, + 28888.158419326268, + 29712.768904659595, + 30559.73388646699, + 31429.053364748495, + 32320.72733950404, + 33234.75581073366, + 34171.13877843738, + 35129.876242615144, + 36110.968203267024, + 37114.41466039293, + 38140.21561399293, + 39188.37106406698, + 15540.091386848, + 15808.439460329477, + 16099.14203028504, + 16412.19909671467, + 16747.610659618367, + 17105.37671899615, + 17485.497274847996, + 17887.97232717392, + 18312.801875973928, + 18759.985921248, + 19229.524462996153, + 19721.417501218377, + 20235.665035914662, + 20772.26706708503, + 21331.223594729487, + 21912.534618847996, + 22516.2001394406, + 23142.22015650726, + 23790.594670047994, + 24461.323680062826, + 25154.407186551707, + 25869.84518951466, + 26607.637688951716, + 27367.78468486281, + 28150.286177247996, + 28955.142166107264, + 29782.35265144059, + 30631.917633247995, + 31503.837111529494, + 32398.111086285033, + 33314.73955751466, + 34253.72252521838, + 35215.059989396155, + 36198.75195004802, + 37204.798407173934, + 38233.19936077392, + 39283.95481084798, + 15541.602633575001, + 15812.550707056478, + 16105.853277012042, + 16421.510343441667, + 16759.521906345366, + 17119.887965723152, + 17502.608521575, + 17907.68357390092, + 18335.11312270093, + 18784.897167974996, + 19257.035709723157, + 19751.528747945376, + 20268.37628264167, + 20807.578313812028, + 21369.134841456485, + 21953.045865574997, + 22559.311386167603, + 23187.931403234263, + 23838.90591677499, + 24512.234926789828, + 25207.918433278704, + 25925.956436241664, + 26666.348935678714, + 27429.09593158982, + 28214.197423974994, + 29021.65341283427, + 29851.463898167593, + 30703.628879974993, + 31578.14835825649, + 32475.022333012035, + 33394.25080424166, + 34335.833771945385, + 35299.771236123146, + 36286.063196775016, + 37294.70965390093, + 38325.71060750093, + 39379.066057574986, + 15542.641380247998, + 15816.18945372948, + 16112.09202368504, + 16430.34909011467, + 16770.960653018366, + 17133.92671239615, + 17519.247268247997, + 17926.92232057392, + 18356.95186937393, + 18809.335914648, + 19284.074456396153, + 19781.167494618378, + 20300.615029314664, + 20842.41706048503, + 21406.573588129486, + 21993.084612247996, + 22601.950132840604, + 23233.17014990726, + 23886.744663447993, + 24562.67367346282, + 25260.957179951707, + 25981.59518291466, + 26724.587682351714, + 27489.934678262813, + 28277.636170647995, + 29087.69215950727, + 29920.102644840586, + 30774.867626647996, + 31651.98710492949, + 32551.46107968504, + 33473.289550914655, + 34417.47251861838, + 35384.009982796146, + 36372.90194344802, + 37384.14840057393, + 38417.74935417393, + 39473.704804247995, + 15543.207626867, + 15819.355700348478, + 16117.858270304041, + 16438.715336733665, + 16781.926899637365, + 17147.49295901515, + 17535.413514867, + 17945.68856719292, + 18378.31811599293, + 18833.302161266995, + 19310.640703015157, + 19810.333741237373, + 20332.38127593366, + 20876.783307104026, + 21443.539834748484, + 22032.650858866997, + 22644.1163794596, + 23277.936396526256, + 23934.110910066993, + 24612.639920081823, + 25313.523426570704, + 26036.761429533657, + 26782.35392897072, + 27550.30092488182, + 28340.602417266993, + 29153.258406126268, + 29988.268891459586, + 30845.63387326699, + 31725.35335154849, + 32627.427326304038, + 33551.855797533644, + 34498.63876523738, + 35467.77622941515, + 36459.26819006702, + 37473.11464719293, + 38509.31560079292, + 39567.87105086698, + 15543.301373431997, + 15822.04944691348, + 16123.152016869042, + 16446.609083298667, + 16792.420646202365, + 17160.58670558015, + 17551.107261431996, + 17963.982313757922, + 18399.21186255793, + 18856.795907832, + 19336.73444958015, + 19839.027487802377, + 20363.675022498664, + 20910.67705366903, + 21480.033581313488, + 22071.744605432, + 22685.810126024604, + 23322.230143091263, + 23981.004656631994, + 24662.133666646827, + 25365.61717313571, + 26091.45517609866, + 26839.647675535714, + 27610.194671446818, + 28403.096163831993, + 29218.352152691266, + 30055.962638024594, + 30915.92761983199, + 31798.247098113494, + 32702.921072869038, + 33629.94954409866, + 34579.33251180238, + 35551.06997598015, + 36545.161936632016, + 37561.60839375793, + 38600.40934735793, + 39661.56479743199, + 15542.922619943001, + 15824.27069342448, + 16127.973263380041, + 16454.03032980967, + 16802.441892713367, + 17173.20795209115, + 17566.328507943, + 17981.803560268923, + 18419.63310906893, + 18879.817154342996, + 19362.355696091156, + 19867.248734313376, + 20394.49626900967, + 20944.098300180027, + 21516.054827824482, + 22110.365851942996, + 22727.031372535606, + 23366.05138960226, + 24027.425903142997, + 24711.15491315783, + 25417.238419646706, + 26145.676422609657, + 26896.468922046715, + 27669.615917957817, + 28465.11741034299, + 29282.97339920227, + 30123.183884535592, + 30985.74886634299, + 31870.66834462449, + 32777.94231938004, + 33707.57079060966, + 34659.55375831338, + 35633.89122249115, + 36630.58318314302, + 37649.629640268926, + 38691.030593868934, + 39754.78604394298, + 15542.0713664, + 15826.01943988148, + 16132.32200983704, + 16460.979076266663, + 16811.990639170366, + 17185.356698548152, + 17581.0772544, + 17999.152306725922, + 18439.58185552593, + 18902.365900799996, + 19387.504442548157, + 19894.99748077037, + 20424.845015466664, + 20977.047046637028, + 21551.603574281482, + 22148.514598399997, + 22767.7801189926, + 23409.400136059263, + 24073.374649599988, + 24759.70365961482, + 25468.3871661037, + 26199.42516906666, + 26952.81766850371, + 27728.56466441481, + 28526.666156799994, + 29347.122145659265, + 30189.932630992585, + 31055.097612799993, + 31942.617091081487, + 32852.491065837035, + 33784.71953706666, + 34739.30250477038, + 35716.239968948146, + 36715.531929600016, + 37737.17838672593, + 38781.17934032593, + 39847.53479039999, + 15540.747612803001, + 15827.295686284479, + 16136.198256240043, + 16467.45532266967, + 16821.06688557337, + 17197.032944951156, + 17595.353500803, + 18016.028553128923, + 18459.05810192893, + 18924.442147203, + 19412.180688951157, + 19922.27372717338, + 20454.721261869665, + 21009.52329304003, + 21586.679820684487, + 22186.190844803004, + 22808.056365395605, + 23452.276382462263, + 24118.850896002998, + 24807.77990601783, + 25519.06341250671, + 26252.701415469666, + 27008.693914906715, + 27787.040910817817, + 28587.742403202992, + 29410.79839206227, + 30256.2088773956, + 31123.97385920299, + 32014.093337484497, + 32926.56731224004, + 33861.39578346966, + 34818.57875117339, + 35798.116215351154, + 36800.008176003015, + 37824.254633128934, + 38870.85558672893, + 39939.81103680299, + 15540.571362256667, + 15827.408324858145, + 16136.599783933707, + 16468.145739483334, + 16822.046191507034, + 17198.301140004816, + 17596.910584976664, + 18017.874526422584, + 18461.192964342594, + 18926.865898736665, + 19414.893329604824, + 19925.27525694704, + 20458.01168076333, + 21013.1026010537, + 21590.54801781815, + 22190.34793105666, + 22812.50234076927, + 23457.011246955928, + 24123.874649616657, + 24813.09254875149, + 25524.664944360375, + 26258.591836443327, + 27014.873225000378, + 27793.509110031486, + 28594.49949153665, + 29417.844369515937, + 30263.54374396925, + 31131.59761489666, + 32022.005982298153, + 32934.768846173705, + 33869.88620652332, + 34827.35806334704, + 35807.184416644806, + 36809.36526641669, + 37833.9006126626, + 38880.790455382594, + 39950.034794576655, + 14869.321113400001, + 15286.158075770367, + 15725.349534614821, + 16186.895489933335, + 16670.79594172592, + 17177.050889992595, + 17705.66033473333, + 18256.624275948143, + 18829.942713637043, + 19425.615647799998, + 20043.643078437046, + 20684.025005548152, + 21346.76142913333, + 22031.852349192584, + 22739.29776572593, + 23469.09767873333, + 24221.252088214824, + 24995.760994170374, + 25792.624396599997, + 26611.842295503717, + 27453.414690881487, + 28317.341582733327, + 29203.62297105927, + 30112.258855859258, + 31043.249237133325, + 31996.594114881493, + 32972.29348910371, + 33970.34735979999, + 34990.75572697038, + 36033.51859061482, + 37098.635950733325, + 38186.10780732594, + 39295.93416039259, + 40428.11500993335, + 41582.65035594815, + 42759.54019843704, + 43958.78453739998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 11.51996830304511, + "volume": 4.542492 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxA_30_SP.json b/examples/ColmacCxA_30_SP.json new file mode 100644 index 0000000..314b236 --- /dev/null +++ b/examples/ColmacCxA_30_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 58049.60747876108, + 58055.43715452897, + 58063.12410191357, + 58072.51292169411, + 58083.418292418806, + 58095.62497040515, + 58108.88778973981, + 58122.93166227838, + 58137.451577645916, + 58152.11260323637, + 58166.54988421294, + 58180.36864350796, + 58193.14418182296, + 58204.42187762851, + 58213.71718716449, + 58220.51564443974, + 58224.272861232384, + 58224.41452708964, + 58220.33640932788, + 58211.404353032645, + 58196.95428105859, + 58176.29219402954, + 58148.69417033848, + 58113.40636614752, + 58069.64501538791, + 58016.59642976008, + 57953.416998733584, + 57879.23318954715, + 57793.141547208616, + 57694.20869449497, + 57581.47133195243, + 57453.936237896254, + 57310.5802684109, + 57150.35035734997, + 56972.16351633619, + 56774.9068347615, + 56557.437479786924, + 58560.08761341719, + 58612.869640260535, + 58665.37114045922, + 58717.48909831021, + 58769.09057587962, + 58820.01271300262, + 58870.062727283665, + 58919.017914096214, + 58966.625646583, + 59012.603375655824, + 59056.63862999568, + 59098.38901605267, + 59137.48221804608, + 59173.51599796433, + 59206.058195564976, + 59234.64672837478, + 59258.78959168952, + 59277.964858574305, + 59291.62067986324, + 59299.17528415966, + 59300.01697783599, + 59293.504145033854, + 59278.96524766405, + 59255.6988254064, + 59222.97349571, + 59180.027953793055, + 59126.07097264288, + 59060.28140301603, + 58981.80817343807, + 58889.770290203836, + 58783.25683737727, + 58661.32697679146, + 58523.00994804862, + 58367.305068520174, + 58193.181733346595, + 57999.5794154376, + 57785.40766547204, + 58122.548159876314, + 58128.107447078226, + 58135.53200462471, + 58144.66600009293, + 58155.323678829045, + 58167.28936394845, + 58180.31745633568, + 58194.13243464439, + 58208.428855297345, + 58222.87135248657, + 58237.09463817317, + 58250.70350208736, + 58263.27281172861, + 58274.34751236541, + 58283.44262703549, + 58290.04325654571, + 58293.60457947201, + 58293.55185215964, + 58289.280408722814, + 58280.155661045035, + 58265.51309877882, + 58244.65828934598, + 58216.86687793736, + 58181.384587513036, + 58137.42721880217, + 58084.180650303046, + 58020.800838283234, + 57946.41381677931, + 57860.115697597044, + 57760.97267031139, + 57648.02100226643, + 57520.26703857537, + 57376.68720212056, + 57216.22799355355, + 57037.80599129499, + 56840.307851534686, + 56622.590308231636, + 58627.14594718819, + 58679.68383388261, + 58731.94481230989, + 58783.82544791011, + 58835.19238389239, + 58885.88234123506, + 58935.702118685556, + 58984.42859276052, + 59031.80871774566, + 59077.55952569595, + 59121.36812643538, + 59162.891707557166, + 59201.75753442368, + 59237.56295016644, + 59269.87537568601, + 59298.2323096523, + 59322.141328504134, + 59341.08008644969, + 59354.49631546616, + 59361.80782529995, + 59362.40250346658, + 59355.638315250755, + 59340.8433037063, + 59317.315589656195, + 59284.32337169256, + 59241.10492617667, + 59186.868607238954, + 59120.792846779004, + 59042.02615446552, + 58949.68711773637, + 58842.864401798586, + 58720.6167496283, + 58581.972981970895, + 58425.931997340726, + 58251.462772021514, + 58057.504360065956, + 57842.965893295965, + 58781.27868268747, + 58784.401024697465, + 58789.46141533036, + 58796.30012334458, + 58804.727495267594, + 58814.52395539599, + 58825.44000579559, + 58837.19622630134, + 58849.48327451734, + 58861.96188581674, + 58874.26287334202, + 58885.98712800464, + 58896.7056184853, + 58905.959391233795, + 58913.25957046913, + 58918.087358179444, + 58919.89403412194, + 58918.100955823094, + 58912.099558578455, + 58901.25135545272, + 58884.88793727972, + 58862.31097266256, + 58832.79220797331, + 58795.57346735333, + 58749.866652713026, + 58694.853743732034, + 58629.6867978591, + 58553.48795031212, + 58465.34941407812, + 58364.33347991331, + 58249.47251634306, + 58119.768969661825, + 57974.19536393326, + 57811.69430099016, + 57631.17846043444, + 57431.5305996372, + 57211.60355373864, + 59233.00081750057, + 59283.33551212168, + 59333.42663910725, + 59383.16699418507, + 59432.419450852016, + 59481.01696037402, + 59528.762551786305, + 59575.42933189314, + 59620.760485267994, + 59664.469274253504, + 59706.23903896138, + 59745.72319727253, + 59782.545244837034, + 59816.298755074036, + 59846.547379171934, + 59872.8248460882, + 59894.63496254944, + 59911.45161305152, + 59922.718759859286, + 59927.8504430069, + 59926.230780297556, + 59917.21396730364, + 59900.12427736671, + 59874.25606159743, + 59838.87374887559, + 59793.21184585022, + 59736.4749369394, + 59667.837684330465, + 59586.44482797973, + 59491.41118561285, + 59381.821652724546, + 59256.73120257863, + 59115.16488620811, + 58956.11783241521, + 58778.555247771175, + 58581.4124166165, + 58363.5947010608, + 59444.07107460686, + 59444.75063628688, + 59447.44244637751, + 59451.9828748183, + 59458.17836931806, + 59465.805455354704, + 59474.61073617521, + 59484.31089279586, + 59494.59268400197, + 59505.11294634806, + 59515.49859415776, + 59525.346619523894, + 59534.224092308395, + 59541.66816014231, + 59547.18604842594, + 59550.25506032867, + 59550.322576789, + 59546.806056514644, + 59539.09303598245, + 59526.54112943836, + 59508.4780288975, + 59484.20150414419, + 59452.97940273186, + 59414.04964998302, + 59366.6202489895, + 59309.86928061205, + 59242.944903480784, + 59164.96535399482, + 59075.01894632247, + 58972.164072401254, + 58855.42920193773, + 58723.812882407656, + 58576.283739055965, + 58411.78047489675, + 58229.21187071312, + 58027.456785057526, + 57805.3641542514, + 59843.04791030587, + 59891.16910576929, + 59939.08146964989, + 59986.67402796312, + 60033.80588449351, + 60080.30622079478, + 60125.97429618974, + 60170.57944777047, + 60213.861090398066, + 60255.52871670287, + 60295.261897084325, + 60332.710279711006, + 60367.49359052069, + 60399.201633220284, + 60427.394289285774, + 60451.60151796238, + 60471.32335626448, + 60486.0299189755, + 60495.16139864814, + 60498.12806560414, + 60494.3102679344, + 60483.0584314991, + 60463.6930599274, + 60435.50473461766, + 60397.75411473748, + 60349.67193722346, + 60290.459016781446, + 60219.286245886455, + 60135.294594782536, + 60037.59511148301, + 59925.26892177024, + 59797.367229195814, + 59652.911315080455, + 59490.892538514, + 59310.27233635549, + 59109.98222323306, + 58888.92379154398, + 60110.90481866339, + 60109.13629270899, + 60109.455636462044, + 60111.695321043575, + 60115.65789534352, + 60121.11598602108, + 60127.81229750458, + 60135.45961199148, + 60143.7407894484, + 60152.30876761113, + 60160.786561984576, + 60168.767265842835, + 60175.81405022906, + 60181.460163955664, + 60185.20893360413, + 60186.53376352512, + 60184.87813583847, + 60179.65561043309, + 60170.249824967104, + 60156.014494867784, + 60136.27341333147, + 60110.32045132376, + 60077.41955757937, + 60036.804758602106, + 59987.680158664945, + 59929.219939810115, + 59860.56836184876, + 59780.83976236145, + 59689.11855669768, + 59584.45923797626, + 59465.886377085015, + 59332.39462268097, + 59182.94870119037, + 59016.48341680847, + 58831.90365149977, + 58628.08436499791, + 58403.87059480562, + 60457.28447307788, + 60503.18238558102, + 60548.907597975056, + 60594.34536656313, + 60639.351025417505, + 60683.74998637954, + 60727.3377390598, + 60769.87985083807, + 60811.111966863115, + 60850.73981005295, + 60888.43918109479, + 60923.855958444874, + 60956.60609832862, + 60986.275634740705, + 61012.42067944479, + 61034.567421973836, + 61052.21212962984, + 61064.821147484, + 61071.83089837664, + 61072.647882917256, + 61066.64867948444, + 61053.17994422606, + 61031.55841105898, + 61001.07089166926, + 60960.97427551217, + 60910.49552981208, + 60848.83169956246, + 60775.14990752604, + 60688.58735423459, + 60588.251317989125, + 60473.21915485969, + 60342.538298685606, + 60195.22626107527, + 60030.27063140623, + 59846.62907682517, + 59643.229342248, + 59418.96925035966, + 60781.758667088674, + 60777.53727402881, + 60775.4807934827, + 60775.41779775254, + 60777.14693690965, + 60780.4369387944, + 60785.02660901639, + 60790.62483095445, + 60796.910565756334, + 60803.53285233925, + 60810.11080738928, + 60816.23362536177, + 60821.46057848121, + 60825.32101674119, + 60827.31436790459, + 60826.91013750327, + 60823.547908838256, + 60816.63734297988, + 60805.55817876744, + 60789.66023280952, + 60768.26339948371, + 60740.657650936875, + 60706.103037084984, + 60663.82968561314, + 60613.03780197562, + 60552.89766939578, + 60482.549648866225, + 60401.10417914868, + 60307.64177677392, + 60201.213036042034, + 60080.838629022146, + 59945.50930555253, + 59794.18589324068, + 59625.79929746312, + 59439.250501365685, + 59233.41056586318, + 59007.12062963969, + 61075.707022493145, + 61119.37239151503, + 61162.90258732256, + 61206.179096506596, + 61249.0534834271, + 61291.34739021315, + 61332.852536763006, + 61373.330720744125, + 61412.51381759297, + 61450.1037805153, + 61485.77264048595, + 61519.162506248926, + 61549.88556431736, + 61577.52407897355, + 61601.63039226892, + 61621.726924024064, + 61637.306171828735, + 61647.830711041854, + 61652.73319479138, + 61651.41635397453, + 61643.25299725762, + 61627.58601107615, + 61603.72835963475, + 61570.96308490718, + 61528.54330663633, + 61475.69222233433, + 61411.603107282375, + 61335.439314530835, + 61246.33427489918, + 61143.39149697618, + 61025.68456711956, + 60892.25714945629, + 60742.12298588254, + 60574.26589606346, + 60387.63977743358, + 60181.168605196326, + 59953.74643232449, + 61456.610641316955, + 61449.93212951415, + 61445.49699454071, + 61443.12990988004, + 61442.62562678471, + 61443.748974276445, + 61446.234859146076, + 61449.78826595364, + 61454.08425702832, + 61458.76797246837, + 61463.454630141285, + 61467.7295256837, + 61471.148032501274, + 61473.23560176896, + 61473.48776243086, + 61471.37012120006, + 61466.318362558966, + 61457.738248759124, + 61445.005619821095, + 61427.46639353471, + 61404.436565458855, + 61375.20220892168, + 61339.01947502038, + 61295.114592621365, + 61242.68386836015, + 61180.89368664141, + 61108.880509638955, + 61025.75087729584, + 60930.58140732408, + 60822.418795205005, + 60700.279814189074, + 60563.15131529579, + 60409.99022731387, + 60239.72355680122, + 60051.248388084816, + 59843.43188326084, + 59615.11128219461, + 61698.31134443083, + 61739.735432732115, + 61781.06327013491, + 61822.172573517746, + 61862.91113752823, + 61903.09683458321, + 61942.517614868615, + 61980.93150633953, + 62018.066614720236, + 62053.62112350412, + 62087.26329395376, + 62118.63146510082, + 62147.33405374615, + 62172.94955445974, + 62195.02653958072, + 62213.08365921739, + 62226.60964124719, + 62235.063291316714, + 62237.87349284163, + 62234.43920700694, + 62224.12947276652, + 62206.283406843664, + 62180.210203730654, + 62145.189135688954, + 62100.46955274925, + 62045.270882711215, + 61978.782631143826, + 61900.16438138516, + 61808.54579454237, + 61703.02660949188, + 61582.67664287919, + 61446.535789118905, + 61293.614020394954, + 61122.89138666013, + 60933.31801563666, + 60723.81411281578, + 60493.2699614578, + 61757.927849434054, + 61750.15567541484, + 61744.66221995539, + 61741.27042312449, + 61739.77330275979, + 61739.933954468186, + 61741.48555162581, + 61744.13134537778, + 61747.54466463851, + 61751.36891609149, + 61755.21758418936, + 61758.67423115396, + 61761.29249697614, + 61762.59609941606, + 61762.07883400295, + 61759.20457403518, + 61753.407270580334, + 61744.090952475075, + 61730.62972632521, + 61712.36777650574, + 61688.61936516082, + 61658.66883220367, + 61621.7705953168, + 61577.149149951714, + 61523.99906932915, + 61461.485004439, + 61388.74168404029, + 61304.87391466115, + 61208.95658059892, + 61100.03464392005, + 60977.12314446018, + 60839.20719982405, + 60685.242005385575, + 60514.15283428781, + 60324.83503744294, + 60116.15404353234, + 59886.94535900652, + 61976.46287028474, + 62016.88781628134, + 62057.234264358965, + 62097.3782553821, + 62137.16590798436, + 62176.41341856833, + 62214.90706130596, + 62252.40318813825, + 62288.628228775306, + 62323.27869069655, + 62356.02115915036, + 62386.49229715436, + 62414.2988454953, + 62439.017622729065, + 62460.195525180774, + 62477.349526944534, + 62489.96667988375, + 62497.504113630916, + 62499.389035587665, + 62495.01873092476, + 62483.760562582174, + 62464.95197126901, + 62437.90047546346, + 62401.883671412936, + 62356.149233133954, + 62299.91491241221, + 62232.36853880254, + 62152.668019628894, + 62059.94133998443, + 61953.286562731366, + 61831.77182850118, + 61694.43535569443, + 61540.28544048083, + 61368.300456799196, + 61177.428856357656, + 60966.589168633276, + 60734.670000872364, + 62135.43803198515, + 62126.298677635474, + 62119.48258594002, + 62114.81053156354, + 62112.0733669398, + 62111.03202227178, + 62111.41750553167, + 62112.93090246072, + 62115.243376569335, + 62117.99616913711, + 62120.800599212795, + 62123.238063614284, + 62124.860036928505, + 62125.18807151171, + 62123.713797489174, + 62119.89892275538, + 62113.175232973976, + 62102.94459157767, + 62088.57893976836, + 62069.4202965172, + 62044.78075856431, + 62013.942500419034, + 61976.15777435999, + 61930.64891043472, + 61876.60831646004, + 61813.19847802196, + 61739.551958475466, + 61654.77139894496, + 61557.92951832367, + 61448.06911327424, + 61324.20305822835, + 61185.31430538679, + 61030.355884719604, + 60858.25090396587, + 60667.8925486339, + 60458.144082001156, + 60227.83884511415, + 62325.09249397281, + 62364.267087595894, + 62403.385748057335, + 62442.32242252341, + 62480.92113592944, + 62518.99599097985, + 62556.3311681484, + 62592.68092567785, + 62627.76959958012, + 62661.29160363636, + 62692.911429396794, + 62722.26364618081, + 62748.95290107692, + 62772.553918942845, + 62792.61150240546, + 62808.6405318607, + 62820.12596547373, + 62826.52283917881, + 62827.25626667939, + 62821.72143944804, + 62809.28362672645, + 62789.27817552557, + 62761.01051062535, + 62723.75613457501, + 62676.76062769289, + 62619.23964806639, + 62550.37893155216, + 62469.334291776, + 62375.231620132756, + 62267.16688578655, + 62144.20613567055, + 62005.385494487135, + 61849.711164707835, + 61676.15942657321, + 61483.67663809318, + 61271.17923504663, + 61037.55373098166, + 62818.21739893288, + 62806.6140060659, + 62797.41518318735, + 62790.437806143185, + 62785.468828548575, + 62782.265281787666, + 62780.55427501391, + 62780.03299514985, + 62780.36870688719, + 62781.19875268678, + 62782.13055277862, + 62782.741605161864, + 62782.57948560474, + 62781.16184764476, + 62777.9764225885, + 62772.48101951165, + 62764.1035252591, + 62752.24190444495, + 62736.26419945229, + 62715.50853043352, + 62689.2830953101, + 62656.86616977262, + 62617.50610728088, + 62570.42133906383, + 62514.80037411945, + 62449.801799215056, + 62374.55427888698, + 62288.156555440706, + 62189.677448950904, + 62078.15585726143, + 61952.60075598522, + 61811.99119850437, + 61655.27631597013, + 61481.375317302896, + 61289.17748919227, + 61077.542196096896, + 60845.29888024467, + 62956.044795403526, + 62992.9622036725, + 63029.86539193773, + 63066.62453765316, + 63103.079896041905, + 63139.041800096056, + 63174.29066057701, + 63208.576966015295, + 63241.62128271052, + 63273.11425473152, + 63302.71660391622, + 63330.05912987173, + 63354.74270997424, + 63376.338299369185, + 63394.38693097109, + 63408.39971546363, + 63417.85784129962, + 63422.21257470114, + 63420.88525965919, + 63413.267317934115, + 63398.72024905537, + 63376.57563032146, + 63346.135116800135, + 63306.67044132826, + 63257.42341451185, + 63197.60592472612, + 63126.39993811535, + 63042.957498592994, + 62946.400727841654, + 62835.82182531314, + 62710.283068228324, + 62568.81681157728, + 62410.42548811918, + 62234.08160838241, + 62038.72776066447, + 61823.27661103196, + 61586.61090332077, + 63504.92457120243, + 63490.854471681254, + 63479.27167099202, + 63469.989146161926, + 63462.789951987426, + 63457.42722103396, + 63453.62416363622, + 63451.074067898066, + 63449.440299692396, + 63448.356302661385, + 63447.42559821625, + 63446.22178553752, + 63444.2885415746, + 63441.13962104625, + 63436.25885644037, + 63429.10015801393, + 63419.08751379309, + 63405.614989573136, + 63388.046728918576, + 63365.716953162926, + 63337.92996140896, + 63303.96013052862, + 63263.05191516288, + 63214.41984772195, + 63157.248538385196, + 63090.692675101105, + 63013.877023587265, + 62925.89642733053, + 62825.815807586754, + 62712.67016338108, + 62585.46457150769, + 62443.17418652999, + 62284.74424078051, + 62109.09004436087, + 61915.09698514197, + 61701.62052876371, + 61467.48621863522, + 63591.16184221034, + 63625.81489773084, + 63660.49684182662, + 63695.07408223925, + 63729.38310447953, + 63763.23047182734, + 63796.39282533168, + 63828.61688381081, + 63859.61944385208, + 63889.08737981195, + 63916.67764381606, + 63942.017265759256, + 63964.70335330543, + 63984.30309188766, + 64000.35374470822, + 64012.36265273847, + 64019.80723471893, + 64022.13498715931, + 64018.76348433842, + 64009.08037830424, + 63992.4433988739, + 63968.18035363368, + 63935.58912793898, + 63893.93768491437, + 63842.46406545359, + 63780.37638821948, + 63706.85284964407, + 63621.04172392855, + 63522.06136304317, + 63409.00019672743, + 63280.91673248993, + 63136.83955560839, + 62975.76732912979, + 62796.668793870114, + 62598.48276841462, + 62380.11814911754, + 62140.45391010247, + 64195.53464703885, + 64178.995700560066, + 64165.02820326607, + 64153.441233365294, + 64144.013946835454, + 64136.49557742332, + 64130.60543664475, + 64126.032913784984, + 64122.437475898114, + 64119.44866780762, + 64116.666112105966, + 64113.65950915495, + 64109.96863708527, + 64105.10335179697, + 64098.54358695916, + 64089.73935401012, + 64078.11074215724, + 64063.047918377146, + 64043.91112741556, + 64020.03069178727, + 63990.70701177635, + 63955.210565436, + 63912.78190858844, + 63862.631674825156, + 63803.940575506815, + 63735.859399763125, + 63657.509014493, + 63567.98036436449, + 63466.33447181479, + 63351.60243705027, + 63222.78543804641, + 63078.85473054784, + 62918.75164806841, + 62741.38760189099, + 62545.64408106774, + 62330.37265241985, + 62094.39496053767, + 64230.436497083116, + 64262.81855574256, + 64295.274006977284, + 64327.66548881661, + 64359.82571705901, + 64391.557485272, + 64422.63366479237, + 64452.79720472606, + 64481.761131948035, + 64509.20855110258, + 64534.79264460295, + 64558.1366726317, + 64578.833973140434, + 64596.44796184995, + 64610.51213225018, + 64620.5300556002, + 64625.97538092821, + 64626.291835031676, + 64620.89322247707, + 64609.163425600054, + 64590.45640450544, + 64564.09619706731, + 64529.376918928625, + 64485.56276350175, + 64431.88800196808, + 64367.5569832782, + 64291.74413415176, + 64203.59395907771, + 64102.22104031398, + 63986.71003788781, + 63856.1156895954, + 63709.462811002275, + 63545.74629544305, + 63363.931114021405, + 63162.952315610324, + 62941.71502685177, + 62699.09445215698, + 64890.02199388977, + 64871.012587983525, + 64854.660203124164, + 64840.77001870154, + 64829.117291874434, + 64819.44735757097, + 64811.47562848833, + 64804.88759509291, + 64799.33882562018, + 64794.45496607484, + 64789.83174023064, + 64785.034949630586, + 64779.60047358674, + 64773.03426918034, + 64764.81237126183, + 64754.38089245065, + 64741.156023135605, + 64724.52403147451, + 64703.84126339431, + 64678.434142591206, + 64647.5991705304, + 64610.60292644635, + 64566.68206734271, + 64515.04332799209, + 64454.86352093647, + 64385.289536486845, + 64305.438342723355, + 64214.39698549535, + 64111.22258842132, + 63994.94235288881, + 63864.553558054664, + 63719.02356084479, + 63557.289795954195, + 63378.259775847146, + 63180.81109075699, + 62963.791408686215, + 62726.01847540648, + 64873.86089191447, + 64903.965832881906, + 64934.19006584569, + 64964.392459122886, + 64994.40195879956, + 65024.01758873102, + 65053.00845054173, + 65081.113723625276, + 65108.04266514441, + 65133.47461003106, + 65157.05897098618, + 65178.41523848005, + 65197.132980751965, + 65212.771843810384, + 65224.861551433, + 65232.901905166495, + 65236.362784326884, + 65234.6841459993, + 65227.27602503781, + 65213.518534065945, + 65192.76186347609, + 65164.32628142999, + 65127.50213385846, + 65081.549844461435, + 65025.69991470806, + 64959.15292383663, + 64881.0795288545, + 64790.62046453822, + 64686.88654343355, + 64568.95865585528, + 64435.887769887515, + 64286.69493138335, + 64120.37126396503, + 63935.87796902407, + 63732.1463257211, + 63508.077690985774, + 63262.54349951704, + 65588.36024840549, + 65566.8792984355, + 65548.14236288378, + 65531.95072232148, + 65518.07573508876, + 65506.25883729488, + 65496.21154281836, + 65487.61544330686, + 65480.12220817712, + 65473.353584615055, + 65466.901397575784, + 65460.32754978352, + 65453.16402173155, + 65444.9128716825, + 65435.04623566796, + 65423.00632748874, + 65408.20543871486, + 65390.02593868539, + 65367.820274508595, + 65340.91097106187, + 65308.590630991814, + 65270.12193471405, + 65224.73764041347, + 65171.64058404409, + 65110.00367932902, + 65038.9699177606, + 64957.65236860025, + 64865.13417887853, + 64760.46857339522, + 64642.6788547192, + 64510.758403188505, + 64363.670676910275, + 64200.34921176093, + 64019.6976213859, + 63820.58959719981, + 63601.86890838641, + 63362.349401898704, + 65521.42642779958, + 65549.24865352578, + 65577.23746609043, + 65605.24796409826, + 65633.10532392314, + 65660.60479970799, + 65687.51172336498, + 65713.56150457547, + 65738.45963078979, + 65761.88166722763, + 65783.47325687773, + 65802.85012049791, + 65819.59805661524, + 65833.2729415259, + 65843.40072929526, + 65849.47745175772, + 65850.96921851696, + 65847.31221694576, + 65837.912712186, + 65822.14704714881, + 65799.3616425144, + 65768.8729967321, + 65729.96768602043, + 65681.90236436711, + 65623.90376352888, + 65555.16869303177, + 65474.86404017088, + 65382.12677001042, + 65276.06392538383, + 65155.75262689366, + 65020.240072911656, + 64868.54353957857, + 64699.650380804494, + 64512.518028268496, + 64306.07399141897, + 64079.215857473275, + 63830.81129141805, + 66290.52231643915, + 66266.56926560246, + 66245.4486440649, + 66226.9578335788, + 66210.86429366551, + 66196.90556161568, + 66184.78925248906, + 66174.19305911449, + 66164.7647520901, + 66156.12217978307, + 66147.85326832967, + 66139.51602163546, + 66130.63852137503, + 66120.71892699222, + 66109.22547569993, + 66095.59648248022, + 66079.24034008435, + 66059.53551903272, + 66035.8305676148, + 66007.44411188934, + 65973.66485568407, + 65933.75158059601, + 65886.9331459913, + 65832.40848900515, + 65769.34662454201, + 65696.88664527552, + 65614.13772164825, + 65520.179101872134, + 65414.060111928215, + 65294.80015556653, + 65161.38871430655, + 65012.78534743659, + 64847.9196920143, + 64665.69146286646, + 64464.97045258892, + 64244.59653154677, + 64003.37964787416, + 66173.12377503648, + 66198.65821125382, + 66224.40792457276, + 66250.22424388578, + 66275.92857585436, + 66301.31240490917, + 66326.13729325015, + 66350.1348808462, + 66373.00688543553, + 66394.42510252542, + 66414.03140539223, + 66431.43774508167, + 66446.22615040839, + 66457.94872795625, + 66466.12766207839, + 66470.25521489687, + 66469.79372630305, + 66464.17561395749, + 66452.80337328967, + 66435.04957749852, + 66410.2568775518, + 66377.73800218668, + 66336.77575790937, + 66286.62302899516, + 66226.50277748864, + 66155.60804320347, + 66073.1019437224, + 65978.11767439745, + 65869.75850834968, + 65747.09779646934, + 65609.1789674159, + 65455.01552761785, + 65283.59106127286, + 65093.85923034781, + 64884.743774578776, + 64655.13851147077, + 64403.907336298136, + 66996.48037304626, + 66970.05519237374, + 66946.5522773903, + 66925.76511102972, + 66907.45725399454, + 66891.36234475668, + 66877.18409955717, + 66864.59631240618, + 66853.24285508302, + 66842.73767713613, + 66832.6648058832, + 66822.57834641088, + 66812.00248157512, + 66800.43147200103, + 66787.32965608273, + 66772.13144998359, + 66754.24134763615, + 66733.03392074203, + 66707.85381877203, + 66678.0157689661, + 66642.80457633329, + 66601.4751236519, + 66553.2523714693, + 66497.33135810202, + 66432.87719963571, + 66359.02508992527, + 66274.88030059465, + 66179.51818103697, + 66071.98415841452, + 65951.29373765872, + 65816.43250147015, + 65666.3561103185, + 65499.990302442726, + 65316.23089385076, + 65113.943778319794, + 64891.96492739619, + 64649.10039039533, + 66828.94287312575, + 66852.18496884832, + 66875.69242735668, + 66899.31280783101, + 66922.86374722054, + 66946.13296024365, + 66968.87823938786, + 66990.82745490992, + 67011.6785548356, + 67031.09956495996, + 67048.7285888471, + 67064.1738078303, + 67077.01348101198, + 67086.79594526377, + 67093.03961522636, + 67095.23298330962, + 67092.8346196926, + 67085.27317232348, + 67071.94736691957, + 67052.22600696734, + 67025.44797372237, + 66990.9222262095, + 66947.92780122258, + 66895.7138133247, + 66833.49945484806, + 66760.47399589405, + 66675.79678433316, + 66578.59724580502, + 66467.97488371847, + 66342.99927925144, + 66202.71009135108, + 66046.11705673349, + 65872.19998988428, + 65679.9087830578, + 65468.163406277905, + 65235.853907337325, + 64981.84041179808, + 67706.2058624854, + 67677.30905084117, + 67651.42576278548, + 67628.34558243319, + 67607.8281716683, + 67589.60327014393, + 67573.37069528233, + 67558.80034227499, + 67545.53218408245, + 67533.1762714345, + 67521.31273283, + 67509.49177453697, + 67497.23368059253, + 67484.02881280311, + 67469.33761074414, + 67452.59059176012, + 67433.18835096502, + 67410.50156124166, + 67383.87097324213, + 67352.60741538758, + 67315.99179386838, + 67273.27509264415, + 67223.67837344344, + 67166.39277576409, + 67100.57951687303, + 67025.3698918064, + 66939.86527336943, + 66843.13711213655, + 66734.22693645123, + 66612.14635242624, + 66475.87704394346, + 66324.37077265374, + 66156.54937797732, + 65971.30477710349, + 65767.49896499062, + 65543.96401436639, + 65299.502075727476, + 67488.87293077078, + 67509.81865829429, + 67531.08122970889, + 67552.50443448238, + 67573.90213985178, + 67595.05829082306, + 67615.72691017154, + 67635.63209844161, + 67654.46803394676, + 67671.89897276972, + 67687.55924876234, + 67701.05327354556, + 67711.95553650953, + 67719.81060481354, + 67724.133123386, + 67724.40781492445, + 67720.0894798957, + 67710.60299653558, + 67695.3433208491, + 67673.67548661046, + 67644.9346053629, + 67608.42586641898, + 67563.42453686026, + 67509.1759615375, + 67444.89556307062, + 67369.76884184871, + 67282.95137602993, + 67183.56882154164, + 67070.71691208037, + 66943.46145911176, + 66800.83835187061, + 66641.85355736085, + 66465.48312035558, + 66270.673163397, + 66056.3398867966, + 65821.36956863487, + 65564.61856476152, + 68419.66949821758, + 68388.30208229939, + 68360.04086937843, + 68334.67154475089, + 68311.94987148193, + 68291.60169040601, + 68273.32292012667, + 68256.77955701656, + 68241.60767521765, + 68227.41342664087, + 68213.77304096636, + 68200.23282564344, + 68186.30916589055, + 68171.48852469529, + 68155.22744281437, + 68136.95253877374, + 68116.06050886837, + 68091.91812716248, + 68063.86224548945, + 68031.1997934517, + 67993.20777842081, + 67949.1332855377, + 67898.1934777122, + 67839.57559562338, + 67772.43695771949, + 67695.90496021796, + 67609.07707710522, + 67511.02086013694, + 67400.77393883803, + 67277.34402050232, + 67139.70889019305, + 66986.8164107424, + 66817.58452275181, + 66630.90124459182, + 66425.62467240218, + 66200.58298009167, + 65954.57441933834, + 68152.90242587746, + 68171.54828077937, + 68190.56385609863, + 68209.78917159085, + 68229.03432478063, + 68248.07949096171, + 68266.67492319713, + 68284.54095231892, + 68301.3679869283, + 68316.8165133957, + 68330.51709586062, + 68342.07037623179, + 68351.04707418696, + 68356.98798717318, + 68359.40399040656, + 68357.77603687237, + 68351.555157325, + 68340.16246028808, + 68322.9891320543, + 68299.39643668552, + 68268.71571601274, + 68230.24838963618, + 68183.26595492508, + 68127.00998701795, + 68060.69213882236, + 67983.49414101515, + 67894.56780204213, + 67793.03500811839, + 67677.98772322817, + 67548.48798912473, + 67403.56792533064, + 67242.22972913753, + 67063.44567560618, + 66866.15811756648, + 66649.27948561766, + 66411.69228812783, + 66152.24911123444, + 69136.84126290653, + 69103.0047972457, + 69072.36863550007, + 69044.71456414714, + 69019.79444743335, + 68997.33022737438, + 68977.01392375509, + 68958.50763412945, + 68941.44353382054, + 68925.42387592068, + 68910.0209912913, + 68894.77728856288, + 68879.20525413519, + 68862.78745217714, + 68844.97652462668, + 68825.19519119093, + 68802.83624934632, + 68777.26257433822, + 68747.80711918122, + 68713.77291465913, + 68674.4330693248, + 68629.03076950031, + 68576.77927927685, + 68516.86194051476, + 68448.43217284346, + 68370.61347366177, + 68282.49941813733, + 68183.15365920712, + 68071.60992757724, + 67946.87203172287, + 67807.91385788847, + 67653.6793700875, + 67483.08261010272, + 67295.00769748585, + 67088.30882955792, + 66861.81028140911, + 66614.3064058986, + 68821.0191055546, + 68837.36210669395, + 68854.12910019804, + 68871.15633611014, + 68888.25014224253, + 68905.18692417674, + 68921.7131652634, + 68937.5454266223, + 68952.37034714232, + 68965.84464348161, + 68977.59511006743, + 68987.2186190961, + 68994.28212053311, + 68998.32264211326, + 68998.84728934026, + 68995.33324548716, + 68987.22777159604, + 68973.94820647818, + 68954.88196671399, + 68929.38654665308, + 68896.78951841408, + 68856.38853188494, + 68807.45131472261, + 68749.21567235327, + 68680.8894879722, + 68601.65072254393, + 68510.647414802, + 68406.99768124915, + 68289.78971615732, + 68158.08179156757, + 68010.90225729006, + 67847.24954090413, + 67666.0921477583, + 67466.36866097018, + 67246.9877414266, + 67006.82812778348, + 66744.73863646589, + 69857.69040841874, + 69821.38697537998, + 69788.37936868382, + 69758.44547598889, + 69731.33326272298, + 69706.76077208306, + 69684.41612503519, + 69663.95752031458, + 69645.01323442571, + 69627.18162164207, + 69610.03111400636, + 69593.10022133042, + 69575.89753119521, + 69557.90170895083, + 69538.56149771666, + 69517.2957183811, + 69493.4932696016, + 69466.51312780505, + 69435.68434718727, + 69400.30605971326, + 69359.64747511718, + 69312.94788090237, + 69259.41664234128, + 69198.23320247553, + 69128.54708211591, + 69049.4778798423, + 68960.11527200375, + 68859.5190127185, + 68746.7189338739, + 68620.7149451264, + 68480.47703390176, + 68324.94526539464, + 68153.02978256906, + 67963.61080615816, + 67755.53863466412, + 67527.6336443583, + 67278.68628928137, + 69493.20998611348, + 69507.247675631, + 69521.76502488175, + 69536.59451419656, + 69551.53870167551, + 69566.3702231878, + 69580.83179237171, + 69594.63620063475, + 69607.46631715355, + 69618.9750888739, + 69628.78554051073, + 69636.49077454818, + 69641.65397123937, + 69643.80838860675, + 69642.4573624418, + 69637.07430630525, + 69627.10271152684, + 69611.9561472056, + 69591.01826020962, + 69563.64277517618, + 69529.15349451166, + 69486.84429839166, + 69435.97914476089, + 69375.79206933317, + 69305.48718559151, + 69224.23868478813, + 69131.19083594423, + 69025.45798585037, + 68906.12455906605, + 68772.2450579201, + 68622.84406251032, + 68456.91623070382, + 68273.4262981368, + 68071.30907821457, + 67849.46946211165, + 67606.78241877156, + 67342.09299490727, + 70582.1854558232, + 70543.4176656049, + 70508.0426456658, + 70475.83438484586, + 70446.53694975408, + 70419.86448476872, + 70395.50121203712, + 70373.1014314758, + 70352.28952077043, + 70332.65993537585, + 70313.77720851594, + 70295.17595118386, + 70276.36085214185, + 70256.8066779213, + 70235.95827282278, + 70213.23055891597, + 70188.00853603972, + 70159.64728180201, + 70127.47195158004, + 70090.77777852005, + 70048.83007353744, + 70000.8642253169, + 69946.0857003121, + 69883.6700427459, + 69812.76287461036, + 69732.47989566671, + 69641.9068834452, + 69540.09969324533, + 69426.08425813574, + 69298.85658895421, + 69157.3827743076, + 69000.59898057207, + 68827.41145189277, + 68636.69651018406, + 68427.30055512952, + 68198.0400641817, + 67947.70159256256, + 70169.4613530681, + 70181.19179638631, + 70193.45896222715, + 70206.09156120924, + 70218.8883817203, + 70231.61828991726, + 70244.02022972608, + 70255.803222842, + 70266.64636872933, + 70276.1988446216, + 70284.07990552137, + 70289.87888420047, + 70293.1551911998, + 70293.43831482941, + 70290.2278211686, + 70282.99335406568, + 70271.17463513816, + 70254.18146377275, + 70231.39371712523, + 70202.1613501206, + 70165.80439545293, + 70121.61296358553, + 70068.84724275074, + 70006.73749895015, + 69934.48407595447, + 69851.25739530356, + 69756.19795630641, + 69648.41633604116, + 69526.99318935515, + 69390.97924886474, + 69239.3953249556, + 69071.23230578247, + 68885.45115726917, + 68680.98292310878, + 68456.72872476357, + 68211.5597614647, + 67944.3173102128, + 71310.29419539189, + 71269.06518602581, + 71231.32731238494, + 71196.85066449041, + 71165.37541013256, + 71136.61179487084, + 71110.24014203394, + 71085.9108527196, + 71063.24440579474, + 71041.83135789554, + 71021.2323434271, + 71000.97807456387, + 70980.56934124933, + 70959.47701119616, + 70937.14202988616, + 70912.97542057035, + 70886.35828426882, + 70856.64179977083, + 70823.14722363482, + 70785.16589018829, + 70741.95921152797, + 70692.75867751974, + 70636.7658557986, + 70573.15239176864, + 70501.06000860326, + 70419.6005072449, + 70327.85576640502, + 70224.87774256452, + 70109.68846997325, + 69981.28006065018, + 69838.61470438364, + 69680.62466873082, + 69506.21229901827, + 69314.25001834164, + 69103.58032756574, + 68873.01580532441, + 68621.33910802078, + 70849.75876113526, + 70859.18054695822, + 70869.19751351434, + 70879.63460170987, + 70890.28683022034, + 70900.91929549024, + 70911.26717173336, + 70921.03571093256, + 70929.90024283987, + 70937.5061749765, + 70943.46899263276, + 70947.37425886813, + 70948.77761451124, + 70947.20477815982, + 70942.15154618084, + 70933.08379271037, + 70919.43746965355, + 70900.61860668489, + 70876.00331124777, + 70844.93776855493, + 70806.73824158813, + 70760.69107109838, + 70706.05267560572, + 70642.04955139942, + 70567.87827253794, + 70482.70549084884, + 70385.66793592868, + 70275.87241514352, + 70152.39581362817, + 70014.28509428685, + 69860.55729779285, + 69690.19954258857, + 69502.1690248857, + 69295.39301866486, + 69068.76887567602, + 68821.16402543813, + 68551.41597523946, + 72041.9836865991, + 71998.29712395072, + 71958.20148398269, + 71921.46295789754, + 71887.81781466691, + 71856.97240103147, + 71828.60314150114, + 71802.35653835503, + 71777.84917164125, + 71754.66769917724, + 71732.36885654947, + 71710.47945711353, + 71688.49639199422, + 71665.88663008556, + 71642.0872180506, + 71616.50528032151, + 71588.5180190997, + 71557.4727143558, + 71522.68672382938, + 71483.44748302932, + 71439.01250523356, + 71388.60938148928, + 71331.4357806127, + 71266.65944918929, + 71193.41821157353, + 71110.81996988924, + 71017.94270402926, + 70913.8344716556, + 70797.51340819937, + 70667.96772686097, + 70524.15571860985, + 70365.00575218449, + 70189.41627409277, + 69996.25580861156, + 69784.36295778693, + 69552.54640143405, + 69299.58489713733, + 71534.08703423431, + 71541.19927454782, + 71548.966549226, + 71557.21002946288, + 71565.72096422165, + 71574.2606802345, + 71582.5605820029, + 71590.32215179747, + 71597.21694965787, + 71602.88661339303, + 71606.94285858101, + 71608.96747856888, + 71608.51234447304, + 71605.09940517896, + 71598.22068734128, + 71587.33829538366, + 71571.88441149912, + 71551.26129564975, + 71524.84128556661, + 71491.96679675022, + 71451.95032247003, + 71404.07443376466, + 71347.59177944194, + 71281.72508607885, + 71205.66715802145, + 71118.58087738504, + 71019.59920405399, + 70907.82517568184, + 70782.3319076913, + 70642.16259327419, + 70486.33050339151, + 70313.81898677339, + 70123.58146991917, + 69914.54145709722, + 69685.59253034517, + 69435.59834946971, + 69163.3926520468, + 72777.22025812214, + 72731.08033589022, + 72688.63254480327, + 72649.63917724506, + 72613.8326033684, + 72580.9152710954, + 72550.55970611711, + 72522.40851189391, + 72496.07436965533, + 72471.1400383999, + 72447.15835489541, + 72423.65223367883, + 72400.11466705611, + 72376.00872510254, + 72350.76755566247, + 72323.7943843494, + 72294.46251454591, + 72262.11532740395, + 72226.06628184438, + 72185.59891455721, + 72139.96684000186, + 72088.39375040664, + 72030.07341576905, + 71964.16968385587, + 71889.8164802029, + 71806.11780811513, + 71712.14774866667, + 71606.95046070084, + 71489.54018083004, + 71358.90122343584, + 71213.98798066909, + 71053.72492244944, + 70877.00659646612, + 70682.69762817724, + 70469.63272081007, + 70236.61665536115, + 69982.42429059607, + 72222.43026548738, + 72227.23259555885, + 72232.7512090476, + 72238.8035074354, + 72245.17696997305, + 72251.62915368048, + 72257.88769334687, + 72263.65030153052, + 72268.58476855882, + 72272.32896252838, + 72274.4908293049, + 72274.64839252329, + 72272.3497535875, + 72267.11309167076, + 72258.42666371542, + 72245.74880443283, + 72228.5079263037, + 72206.10251957782, + 72177.901152274, + 72143.24247018038, + 72101.43519685413, + 72051.75813362161, + 71993.4601595783, + 71925.7602315889, + 71847.84738428718, + 71758.88073007611, + 71657.9894591278, + 71544.27283938345, + 71416.80021655346, + 71274.61101411734, + 71116.71473332393, + 70942.09095319084, + 70749.68933050525, + 70538.42959982323, + 70307.20157347004, + 70054.86514154007, + 69780.25027189704, + 73515.96950784081, + 73467.38094755773, + 73422.58714839356, + 73381.34650391329, + 73343.38748545099, + 73308.40864211001, + 73276.07860076278, + 73246.0360660508, + 73217.88982038492, + 73191.21872394503, + 73165.57171468006, + 73140.4678083083, + 73115.39609831703, + 73089.8157559627, + 73063.156030271, + 73034.81624803669, + 73004.16581382365, + 72970.54420996497, + 72933.26099656292, + 72891.59581148878, + 72844.79837038311, + 72792.08846665561, + 72732.65597148503, + 72665.66083381933, + 72590.2330803757, + 72505.47281564034, + 72410.45022186861, + 72304.20555908512, + 72185.7491650836, + 72054.0614554268, + 71908.09292344682, + 71746.76414024475, + 71568.96575469089, + 71373.5584934247, + 71159.37316085475, + 70925.21063915877, + 70669.8418882837, + 72914.77181721925, + 72917.2643955978, + 72920.53590186729, + 72924.3999677972, + 72928.64030292597, + 72933.0106945613, + 72937.23500778008, + 72941.0071854282, + 72943.99124812084, + 72945.8212942423, + 72946.10149994594, + 72944.40611915439, + 72940.27948355937, + 72933.23600262168, + 72922.76016357142, + 72908.30653140772, + 72889.29974889886, + 72865.13453658238, + 72835.17569276478, + 72798.75809352196, + 72755.1866926987, + 72703.73652190909, + 72643.65269053639, + 72574.15038573286, + 72494.41487242005, + 72403.60149328865, + 72300.83566879835, + 72185.21289717816, + 72055.7987544262, + 71911.62889430964, + 71751.7090483649, + 71575.01502589752, + 71380.4927139822, + 71167.05807746272, + 70933.59715895215, + 70678.96607883253, + 70401.9910352552, + 73598.26813658606, + 73549.40781957196, + 73504.3537547639, + 73462.8639025244, + 73424.66630098516, + 73389.45906604703, + 73356.91039138006, + 73326.6585484234, + 73298.31188638532, + 73271.44883224338, + 73245.61789074409, + 73220.33764440325, + 73195.09675350571, + 73169.35395610558, + 73142.53806802603, + 73114.04798285943, + 73083.2526719672, + 73049.4911844801, + 73012.07264729787, + 72970.27626508944, + 72923.35132029284, + 72870.51717311543, + 72810.9632615335, + 72743.84910129261, + 72668.30428590748, + 72583.42848666185, + 72488.2914526088, + 72381.93301057038, + 72263.36306513788, + 72131.56159867172, + 71985.47867130153, + 71824.03442092595, + 71646.11906321284, + 71450.59289159927, + 71236.28627729142, + 71001.9996692645, + 70746.50359426306, + 72991.94478055864, + 72994.18075217245, + 72997.20269831707, + 73000.8238319046, + 73004.82744361636, + 73008.9669019027, + 73012.96565298327, + 73016.51722084674, + 73019.285207251, + 73020.90329172307, + 73020.9752315591, + 73019.07486182445, + 73014.74609535352, + 73007.50292274996, + 72996.82941238653, + 72982.17971040515, + 72962.97804071681, + 72938.6187050018, + 72908.46608270943, + 72871.85463105826, + 72828.08888503576, + 72776.44345739891, + 72716.16303867362, + 72646.4623971549, + 72566.52637890707, + 72475.50990776355, + 72372.53798532678, + 72256.70569096848, + 72127.07818182955, + 71982.69069281984, + 71822.54853661865, + 71645.62710367414, + 71450.87186220373, + 71237.19835819403, + 71003.49221540082, + 70748.60913534884, + 70471.37489733228, + 194925.2255599323, + 194962.83470878928, + 195042.00306562535, + 195161.83012363996, + 195321.3854538016, + 195519.70870484837, + 195755.80960328694, + 196028.66795339354, + 196337.2336372135, + 196680.42661456086, + 197057.13692301945, + 197466.2246779421, + 197906.5200724502, + 198376.8233774351, + 198875.90494155683, + 199402.5051912446, + 199955.33463069692, + 200533.07384188124, + 201134.37348453453, + 201757.85429616246, + 202402.10709204007, + 203065.69276521154, + 203747.14228649033, + 204444.95670445872, + 205157.6071454683, + 205883.5348136399, + 206621.15099086365, + 207368.8370367983, + 208124.9443888721, + 208887.79456228268, + 209655.67914999608, + 210426.85982274835, + 211199.56832904415, + 211972.0064951574, + 212742.34622513104, + 213508.7295007778, + 214269.26838167853, + 208002.9946340186, + 208045.88238350642, + 208120.18120030194, + 208225.06763479565, + 208359.68831514718, + 208523.15994728508, + 208714.56931490748, + 208932.97327948152, + 209177.3987802431, + 209446.84283419763, + 209740.27253611988, + 210056.6250585532, + 210394.8076518104, + 210753.6976439738, + 211132.14244089407, + 211528.95952619155, + 211942.93646125586, + 212372.8308852451, + 212817.37051508747, + 213275.25314547945, + 213745.146648887, + 214225.68897554537, + 214715.48815345916, + 215213.1222884011, + 215717.13956391424, + 216226.05824131024, + 216738.36665966985, + 217252.52323584325, + 217766.95646444947, + 218280.06491787697, + 218790.21724628308, + 219295.7521775944, + 219794.97851750677, + 220286.17514948518, + 220767.59103476332, + 221237.44521234487, + 221693.9267990019 + ], + "input_power": [ + 25124.575986900007, + 25156.757324737042, + 25196.77611584815, + 25244.632360233343, + 25300.3260578926, + 25363.857208825924, + 25435.22581303334, + 25514.43187051481, + 25601.475381270375, + 25696.356345300002, + 25799.074762603705, + 25909.630633181485, + 26028.023957033336, + 26154.254734159258, + 26288.322964559262, + 26430.228648233337, + 26579.97178518149, + 26737.552375403706, + 26902.970418900004, + 27076.225915670377, + 27257.31886571482, + 27446.249269033335, + 27643.01712562593, + 27847.622435492598, + 28060.06519863334, + 28280.345415048152, + 28508.46308473704, + 28744.4182077, + 28988.210783937044, + 29239.840813448147, + 29499.308296233336, + 29766.6132322926, + 30041.755621625933, + 30324.735464233338, + 30615.552760114817, + 30914.207509270378, + 31220.6997117, + 27007.72648830001, + 27039.0862488926, + 27078.283462759264, + 27125.318129900006, + 27180.19025031482, + 27242.899824003707, + 27313.44685096667, + 27391.831331203706, + 27478.05326471482, + 27572.112651500003, + 27674.00949155926, + 27783.7437848926, + 27901.315531500004, + 28026.724731381484, + 28159.971384537035, + 28301.05549096667, + 28449.97705067037, + 28606.73606364815, + 28771.3325299, + 28943.766449425933, + 29124.037822225928, + 29312.1466483, + 29508.092927648155, + 29711.876660270373, + 29923.49784616667, + 30142.956485337043, + 30370.252577781477, + 30605.386123499997, + 30848.357122492598, + 31099.165574759263, + 31357.8114803, + 31624.29483911482, + 31898.615651203705, + 32180.77391656668, + 32470.76963520371, + 32768.602807114825, + 33074.273432300004, + 25134.350791708996, + 25166.567838914925, + 25206.622339394926, + 25254.514293148997, + 25310.243700177147, + 25373.810560479367, + 25445.214874055666, + 25524.456640906035, + 25611.53586103048, + 25706.452534428994, + 25809.20666110159, + 25919.79824104826, + 26038.227274269, + 26164.493760763813, + 26298.597700532704, + 26440.53909357567, + 26590.317939892702, + 26747.934239483813, + 26913.387992348995, + 27086.679198488266, + 27267.807857901593, + 27456.773970588994, + 27653.57753655048, + 27858.21855578604, + 28070.697028295668, + 28291.01295407937, + 28519.166333137146, + 28755.157165468998, + 28998.985451074925, + 29250.65118995492, + 29510.154382108994, + 29777.49502753715, + 30052.673126239366, + 30335.688678215673, + 30626.541683466032, + 30925.232141990477, + 31231.760053789, + 27019.27590356901, + 27050.680443539375, + 27089.922436783814, + 27137.001883302335, + 27191.918783094927, + 27254.673136161597, + 27325.264942502337, + 27403.69420211715, + 27489.96091500604, + 27584.065081169, + 27686.006700606038, + 27795.785773317148, + 27913.40229930233, + 28038.856278561594, + 28172.147711094924, + 28313.276596902335, + 28462.242935983817, + 28619.046728339374, + 28783.687973969, + 28956.166672872707, + 29136.482825050483, + 29324.63643050233, + 29520.627489228264, + 29724.456001228264, + 29936.121966502335, + 30155.625385050484, + 30382.9662568727, + 30618.144581968994, + 30861.160360339374, + 31112.013591983814, + 31370.70427690234, + 31637.232415094924, + 31911.5980065616, + 32193.801051302336, + 32483.84154931715, + 32781.719500606036, + 33087.43490516899, + 25221.7848413, + 25254.323272825928, + 25294.699157625924, + 25342.912495700002, + 25398.963287048144, + 25462.851531670367, + 25534.57722956667, + 25614.14038073703, + 25701.54098518148, + 25796.779042899998, + 25899.854553892594, + 26010.76751815926, + 26129.5179357, + 26256.105806514814, + 26390.531130603697, + 26532.79390796667, + 26682.894138603704, + 26840.83182251481, + 27006.606959700006, + 27180.219550159265, + 27361.66959389259, + 27550.9570909, + 27748.082041181482, + 27953.04444473704, + 28165.844301566667, + 28386.481611670373, + 28614.956375048147, + 28851.268591699998, + 29095.41826162593, + 29347.405384825925, + 29607.2299613, + 29874.891991048153, + 30150.39147407037, + 30433.728410366668, + 30724.90279993704, + 31023.91464278149, + 31330.763938900003, + 27122.68144730001, + 27154.489001670376, + 27194.134009314817, + 27241.616470233337, + 27296.93638442593, + 27360.093751892597, + 27431.08857263334, + 27509.92084664815, + 27596.59057393704, + 27691.097754500002, + 27793.44238833704, + 27903.624475448152, + 28021.644015833335, + 28147.501009492593, + 28281.195456425925, + 28422.72735663334, + 28572.09671011482, + 28729.303516870375, + 28894.347776900006, + 29067.22949020371, + 29247.948656781486, + 29436.505276633336, + 29632.899349759267, + 29837.130876159266, + 30049.199855833333, + 30269.106288781488, + 30496.8501750037, + 30732.431514500004, + 30975.85030727037, + 31227.106553314814, + 31486.20025263334, + 31753.131405225933, + 32027.9000110926, + 32310.506070233343, + 32600.949582648147, + 32899.230548337044, + 33205.34896730001, + 25308.248342249, + 25341.108158094925, + 25381.805427214927, + 25430.340149608997, + 25486.712325277145, + 25550.92195421937, + 25622.96903643567, + 25702.853571926036, + 25790.575560690482, + 25886.135002729, + 25989.53189804159, + 26100.76624662826, + 26219.838048489, + 26346.74730362381, + 26481.4940120327, + 26624.078173715665, + 26774.499788672707, + 26932.758856903813, + 27098.855378409004, + 27272.789353188266, + 27454.560781241595, + 27644.169662568995, + 27841.615997170487, + 28046.899785046036, + 28260.021026195667, + 28480.979720619373, + 28709.775868317152, + 28946.409469289, + 29190.88052353493, + 29443.189031054924, + 29703.334991849002, + 29971.318405917154, + 30247.139273259363, + 30530.797593875675, + 30822.293367766037, + 31121.626594930483, + 31428.797275369, + 27225.116442389, + 27257.327011159374, + 27297.37503320381, + 27345.260508522333, + 27400.983437114926, + 27464.543818981594, + 27535.941654122333, + 27615.176942537146, + 27702.249684226037, + 27797.159879189, + 27899.90752742604, + 28010.492628937147, + 28128.915183722333, + 28255.175191781593, + 28389.272653114924, + 28531.207567722333, + 28680.979935603817, + 28838.589756759367, + 29004.037031189004, + 29177.32175889271, + 29358.44393987048, + 29547.40357412233, + 29744.200661648265, + 29948.83520244826, + 30161.30719652233, + 30381.616643870482, + 30609.7635444927, + 30845.747898388992, + 31089.569705559377, + 31341.228966003815, + 31600.725679722334, + 31868.059846714932, + 32143.23146698159, + 32426.240540522336, + 32717.087067337146, + 33015.77104742604, + 33322.292480788994, + 25393.741294556003, + 25426.922494721934, + 25467.941148161925, + 25516.797254876, + 25573.490814864144, + 25638.02182812637, + 25710.39029466267, + 25790.596214473033, + 25878.63958755748, + 25974.520413915998, + 26078.238693548592, + 26189.794426455257, + 26309.187612636, + 26436.418252090814, + 26571.486344819703, + 26714.391890822666, + 26865.134890099707, + 27023.715342650816, + 27190.133248476006, + 27364.388607575263, + 27546.48141994859, + 27736.411685595995, + 27934.17940451748, + 28139.78457671304, + 28353.227202182665, + 28574.50728092638, + 28803.62481294415, + 29040.579798235995, + 29285.37223680193, + 29538.00212864193, + 29798.469473756002, + 30066.774272144146, + 30342.91652380637, + 30626.896228742677, + 30918.713386953044, + 31218.36799843749, + 31525.860063196, + 27326.580888836, + 27359.194472006377, + 27399.645508450816, + 27447.933998169334, + 27504.059941161926, + 27568.023337428596, + 27639.824186969334, + 27719.46248978415, + 27806.93824587304, + 27902.251455235997, + 28005.40211787304, + 28116.39023378415, + 28235.215802969335, + 28361.878825428597, + 28496.379301161927, + 28638.71723016934, + 28788.892612450818, + 28946.905448006375, + 29112.755736836003, + 29286.44347893971, + 29467.968674317483, + 29657.33132296933, + 29854.531424895267, + 30059.56898009526, + 30272.443988569332, + 30493.156450317485, + 30721.706365339705, + 30958.093733635997, + 31202.318555206373, + 31454.380830050817, + 31714.280558169332, + 31982.01773956193, + 32257.592374228592, + 32541.00446216935, + 32832.25400338415, + 33131.34099787304, + 33438.265445635996, + 25478.263698221002, + 25511.76628270693, + 25553.106320466926, + 25602.283811501, + 25659.29875580915, + 25724.151153391373, + 25796.841004247668, + 25877.368308378038, + 25965.73306578247, + 26061.935276460998, + 26165.974940413595, + 26277.85205764026, + 26397.566628141005, + 26525.118651915807, + 26660.508128964702, + 26803.73505928767, + 26954.7994428847, + 27113.70127975581, + 27280.440569901, + 27455.017313320266, + 27637.43151001359, + 27827.683159980996, + 28025.772263222487, + 28231.698819738034, + 28445.46282952767, + 28667.064292591378, + 28896.503208929145, + 29133.779578540998, + 29378.893401426925, + 29631.844677586923, + 29892.633407021, + 30161.25958972915, + 30437.723225711372, + 30722.02431496767, + 31014.16285749804, + 31314.138853302484, + 31621.952302380996, + 27427.074786641002, + 27460.091384211373, + 27500.945435055823, + 27549.636939174336, + 27606.165896566927, + 27670.532307233592, + 27742.736171174336, + 27822.77748838915, + 27910.656258878036, + 28006.372482641, + 28109.926159678034, + 28221.317289989143, + 28340.54587357433, + 28467.611910433592, + 28602.515400566925, + 28745.256343974328, + 28895.83474065581, + 29054.25059061137, + 29220.503893841003, + 29394.59465034471, + 29576.52286012248, + 29766.28852317433, + 29963.891639500267, + 30169.33220910026, + 30382.610231974333, + 30603.725708122485, + 30832.6786375447, + 31069.469020241, + 31314.096856211367, + 31566.562145455813, + 31826.864887974338, + 32095.005083766922, + 32370.982732833596, + 32654.797835174337, + 32946.450390789156, + 33245.94039967804, + 33553.26786184099, + 25561.815553244003, + 25595.63952204993, + 25637.300944129925, + 25686.799819484, + 25744.13614811215, + 25809.309930014366, + 25882.321165190668, + 25963.169853641033, + 26051.855995365484, + 26148.379590364, + 26252.74063863659, + 26364.93914018326, + 26484.975095004, + 26612.848503098812, + 26748.559364467703, + 26892.107679110668, + 27043.493447027704, + 27202.716668218814, + 27369.777342684, + 27544.675470423266, + 27727.411051436593, + 27917.984085723998, + 28116.394573285485, + 28322.64251412104, + 28536.727908230667, + 28758.650755614373, + 28988.411056272143, + 29226.008810204, + 29471.44401740993, + 29724.716677889926, + 29985.826791643998, + 30254.774358672155, + 30531.559378974373, + 30816.18185255067, + 31108.641779401038, + 31408.939159525486, + 31717.073992923994, + 27526.598135804004, + 27560.017747774375, + 27601.27481301881, + 27650.36933153734, + 27707.30130332993, + 27772.070728396593, + 27844.67760673734, + 27925.121938352142, + 28013.40372324104, + 28109.522961403993, + 28213.47965284104, + 28325.27379755214, + 28444.90539553733, + 28572.37444679659, + 28707.68095132992, + 28850.82490913734, + 29001.806320218817, + 29160.625184574375, + 29327.28150220399, + 29501.775273107716, + 29684.106497285484, + 29874.275174737326, + 30072.281305463257, + 30278.124889463255, + 30491.805926737336, + 30713.324417285483, + 30942.6803611077, + 31179.873758203998, + 31424.904608574372, + 31677.772912218818, + 31938.47866913733, + 32207.02187932992, + 32483.402542796597, + 32767.620659537337, + 33059.676229552155, + 33359.56925284105, + 33667.299729403996, + 25598.651031256708, + 25632.617887531313, + 25674.422197079977, + 25724.063959902727, + 25781.543175999548, + 25846.85984537044, + 25920.013968015413, + 26001.005543934447, + 26089.834573127573, + 26186.501055594752, + 26291.00499133602, + 26403.346380351366, + 26523.525222640772, + 26651.541518204263, + 26787.39526704182, + 26931.08646915345, + 27082.615124539167, + 27241.981233198956, + 27409.18479513281, + 27584.225810340737, + 27767.10427882275, + 27957.820200578815, + 28156.37357560898, + 28362.7644039132, + 28576.9926854915, + 28799.058420343885, + 29028.96160847033, + 29266.702249870854, + 29512.280344545456, + 29765.695892494125, + 30026.94889371687, + 30296.03934821369, + 30572.96725598459, + 30857.732617029564, + 31150.33543134859, + 31450.775698941707, + 31759.05341980889, + 27570.53454011136, + 27604.13333228397, + 27645.569577730654, + 27694.843276451407, + 27751.954428446246, + 27816.903033715153, + 27889.68909225813, + 27970.31260407519, + 28058.77356916631, + 28155.071987531515, + 28259.207859170794, + 28371.18118408415, + 28490.991962271568, + 28618.64019373307, + 28754.125878468647, + 28897.44901647829, + 29048.60960776201, + 29207.60765231981, + 29374.44315015168, + 29549.116101257623, + 29731.62650563764, + 29921.97436329173, + 30120.159674219904, + 30326.182438422136, + 30540.04265589845, + 30761.74032664884, + 30991.2754506733, + 31228.648027971834, + 31473.858058544447, + 31726.90554239113, + 31987.790479511892, + 32256.51286990672, + 32533.072713575635, + 32817.47001051861, + 33109.704760735665, + 33409.7769642268, + 33717.68662099199, + 25644.396859624998, + 25678.542212750926, + 25720.525019150926, + 25770.345278825003, + 25828.00299177315, + 25893.498157995367, + 25966.83077749167, + 26048.000850262037, + 26137.008376306483, + 26233.853355624997, + 26338.535788217592, + 26451.055674084262, + 26571.413013225, + 26699.60780563981, + 26835.6400513287, + 26979.509750291665, + 27131.21690252871, + 27290.761508039814, + 27458.143566825, + 27633.363078884264, + 27816.420044217593, + 28007.314462824994, + 28206.046334706487, + 28412.61565986204, + 28627.022438291668, + 28849.266669995373, + 29079.348354973146, + 29317.267493225005, + 29563.024084750927, + 29816.618129550923, + 30078.049627624998, + 30347.31857897315, + 30624.42498359537, + 30909.368841491672, + 31202.150152662038, + 31502.76891710648, + 31811.225134825003, + 27625.150936325008, + 27658.973562695377, + 27700.633642339813, + 27750.13117525833, + 27807.466161450924, + 27872.63860091759, + 27945.648493658337, + 28026.49583967314, + 28115.180638962036, + 28211.702891524998, + 28316.06259736204, + 28428.259756473148, + 28548.294368858333, + 28676.16643451758, + 28811.875953450915, + 28955.42292565833, + 29106.807351139818, + 29266.029229895372, + 29433.088561925, + 29607.985347228714, + 29790.719585806484, + 29981.29127765833, + 30179.700422784263, + 30385.94702118426, + 30600.031072858335, + 30821.952577806485, + 31051.711536028703, + 31289.307947524998, + 31534.74181229537, + 31788.013130339812, + 32049.12190165833, + 32318.068126250928, + 32594.851804117596, + 32879.47293525834, + 33171.931519673155, + 33472.227557362035, + 33780.361048324994, + 25726.007617364005, + 25760.47435480993, + 25802.778545529927, + 25852.920189523997, + 25910.89928679215, + 25976.71583733437, + 26050.369841150678, + 26131.861298241038, + 26221.19020860548, + 26318.356572244003, + 26423.36038915659, + 26536.201659343264, + 26656.880382803996, + 26785.396559538814, + 26921.750189547703, + 27065.941272830674, + 27217.96980938771, + 27377.835799218818, + 27545.539242324, + 27721.080138703262, + 27904.45848835659, + 28095.674291283998, + 28294.727547485487, + 28501.618256961043, + 28716.346419710666, + 28938.912035734375, + 29169.315105032147, + 29407.555627604, + 29653.63360344993, + 29907.549032569925, + 30169.301914964002, + 30438.892250632158, + 30716.320039574373, + 31001.585281790674, + 31294.687977281035, + 31595.62812604548, + 31904.405728084002, + 27722.733188204, + 27756.958828974373, + 27799.02192301882, + 27848.922470337337, + 27906.66047092993, + 27972.2359247966, + 28045.648831937335, + 28126.89919235215, + 28215.987006041036, + 28312.912273004, + 28417.67499324104, + 28530.275166752155, + 28650.712793537336, + 28778.987873596594, + 28915.100406929927, + 29059.050393537338, + 29210.837833418813, + 29370.462726574373, + 29537.925073004004, + 29713.224872707706, + 29896.362125685482, + 30087.336831937337, + 30286.14899146327, + 30492.798604263262, + 30707.285670337333, + 30929.610189685485, + 31159.7721623077, + 31397.771588204, + 31643.60846737437, + 31897.28279981881, + 32158.794585537336, + 32428.143824529932, + 32705.330516796592, + 32990.35466233735, + 33283.216261152156, + 33583.915313241036, + 33892.451818604, + 25806.647826461, + 25841.435948226932, + 25884.06152326693, + 25934.524551581, + 25992.825033169152, + 26058.96296803137, + 26132.93835616767, + 26214.751197578036, + 26304.401492262485, + 26401.889240221, + 26507.21444145359, + 26620.377095960263, + 26741.377203741, + 26870.214764795815, + 27006.889779124704, + 27151.402246727666, + 27303.75216760471, + 27463.93954175581, + 27631.964369181005, + 27807.826649880266, + 27991.526383853594, + 28183.063571101, + 28382.438211622488, + 28589.65030541804, + 28804.69985248767, + 29027.586852831377, + 29258.311306449148, + 29496.873213340998, + 29743.272573506933, + 29997.509386946927, + 30259.583653661004, + 30529.495373649155, + 30807.244546911374, + 31092.831173447674, + 31386.25525325804, + 31687.516786342483, + 31996.615772700996, + 27819.344891441004, + 27853.973546611374, + 27896.43965505582, + 27946.74321677433, + 28004.88423176693, + 28070.862700033595, + 28144.678621574338, + 28226.331996389144, + 28315.822824478044, + 28413.151105841003, + 28518.31684047804, + 28631.32002838915, + 28752.160669574332, + 28880.83876403359, + 29017.354311766925, + 29161.70731277434, + 29313.897767055823, + 29473.925674611375, + 29641.791035441005, + 29817.49384954471, + 30001.034116922485, + 30192.411837574327, + 30391.627011500266, + 30598.679638700265, + 30813.56971917434, + 31036.297252922486, + 31266.8622399447, + 31505.264680240994, + 31751.504573811377, + 32005.581920655823, + 32267.496720774332, + 32537.248974166927, + 32814.83868083359, + 33100.265840774344, + 33393.53045398916, + 33694.63252047804, + 34003.57204024099, + 25886.317486916, + 25921.426993001925, + 25964.373952361933, + 26015.158364996, + 26073.780230904147, + 26140.23955008637, + 26214.536322542663, + 26296.670548273036, + 26386.642227277476, + 26484.451359556, + 26590.097945108588, + 26703.58198393526, + 26824.903476035997, + 26954.062421410817, + 27091.058820059705, + 27235.892671982667, + 27388.563977179703, + 27549.072735650814, + 27717.418947396003, + 27893.602612415263, + 28077.623730708594, + 28269.482302276, + 28469.178327117483, + 28676.71180523304, + 28892.08273662267, + 29115.291121286373, + 29346.336959224154, + 29585.220250435996, + 29831.94099492193, + 30086.499192681924, + 30348.894843716, + 30619.127948024146, + 30897.198505606368, + 31183.106516462663, + 31476.851980593034, + 31778.434897997486, + 32087.855268675987, + 27914.986046036007, + 27950.017715606376, + 27992.886838450817, + 28043.593414569335, + 28102.137443961936, + 28168.518926628596, + 28242.737862569335, + 28324.794251784147, + 28414.68809427304, + 28512.419390036, + 28617.988139073037, + 28731.394341384148, + 28852.637996969333, + 28981.719105828597, + 29118.637667961928, + 29263.393683369337, + 29415.987152050817, + 29576.41807400637, + 29744.686449236004, + 29920.79227773971, + 30104.73555951748, + 30296.516294569337, + 30496.134482895264, + 30703.590124495266, + 30918.883219369338, + 31142.013767517492, + 31372.981768939706, + 31611.787223635998, + 31858.430131606376, + 32112.910492850824, + 32375.228307369332, + 32645.38357516193, + 32923.3762962286, + 33209.20647056934, + 33502.87409818415, + 33804.37917907304, + 34113.721713236, + 25965.016598729, + 26000.447489134927, + 26043.715832814923, + 26094.821629769, + 26153.764879997147, + 26220.545583499374, + 26295.163740275668, + 26377.619350326037, + 26467.912413650483, + 26566.042930248997, + 26672.010900121593, + 26785.81632326826, + 26907.459199689, + 27036.939529383817, + 27174.257312352707, + 27319.412548595665, + 27472.405238112708, + 27633.235380903818, + 27801.902976969002, + 27978.408026308265, + 28162.7505289216, + 28354.930484808992, + 28554.947893970482, + 28762.80275640604, + 28978.49507211567, + 29202.024841099374, + 29433.392063357147, + 29672.596738889, + 29919.63886769493, + 30174.518449774925, + 30437.235485129, + 30707.789973757153, + 30986.181915659366, + 31272.41131083567, + 31566.478159286034, + 31868.382461010486, + 32178.124216008997, + 28009.656651989008, + 28045.091335959372, + 28088.363473203815, + 28139.47306372234, + 28198.420107514932, + 28265.2046045816, + 28339.82655492234, + 28422.285958537148, + 28512.582815426038, + 28610.717125589003, + 28716.688889026038, + 28830.498105737148, + 28952.14477572234, + 29081.628898981595, + 29218.95047551493, + 29364.109505322333, + 29517.10598840381, + 29677.939924759376, + 29846.611314389003, + 30023.120157292713, + 30207.466453470486, + 30399.650202922334, + 30599.671405648267, + 30807.530061648264, + 31023.226170922335, + 31246.759733470484, + 31478.130749292708, + 31717.339218389, + 31964.38514075937, + 32219.26851640381, + 32481.98934532234, + 32752.547627514938, + 33030.9433629816, + 33317.17655172234, + 33611.24719373716, + 33913.15528902604, + 34222.900837589, + 26042.745161900002, + 26078.49743662593, + 26122.08716462593, + 26173.5143459, + 26232.77898044815, + 26299.881068270373, + 26374.82060936667, + 26457.597603737035, + 26548.212051381484, + 26646.663952299998, + 26752.953306492593, + 26867.080113959262, + 26989.044374699995, + 27118.846088714818, + 27256.4852560037, + 27401.961876566667, + 27555.27595040371, + 27716.427477514808, + 27885.416457900003, + 28062.24289155926, + 28246.906778492597, + 28439.408118699997, + 28639.746912181483, + 28847.923158937036, + 29063.936858966666, + 29287.78801227038, + 29519.47661884815, + 29759.002678699995, + 30006.366191825928, + 30261.56715822593, + 30524.6055779, + 30795.48145084815, + 31074.194777070366, + 31360.745556566675, + 31655.13378933704, + 31957.35947538148, + 32267.422614699997, + 28103.356709300006, + 28139.19440767037, + 28182.86955931482, + 28234.382164233335, + 28293.73222242593, + 28360.9197338926, + 28435.944698633335, + 28518.80711664815, + 28609.506987937035, + 28708.04431249999, + 28814.419090337036, + 28928.631321448145, + 29050.681005833325, + 29180.568143492583, + 29318.292734425915, + 29463.854778633333, + 29617.254276114814, + 29778.49122687037, + 29947.565630899993, + 30124.477488203705, + 30309.22679878148, + 30501.813562633328, + 30702.23777975926, + 30910.49945015926, + 31126.598573833333, + 31350.535150781478, + 31582.309181003697, + 31821.920664499994, + 32069.369601270366, + 32324.655991314805, + 32587.77983463333, + 32858.74113122593, + 33137.53988109259, + 33424.17608423333, + 33718.64974064814, + 34020.96085033704, + 34331.1094133, + 26119.50317642901, + 26155.57683547493, + 26199.487947794925, + 26251.236513389, + 26310.82253225715, + 26378.246004399374, + 26453.506929815674, + 26536.605308506034, + 26627.541140470483, + 26726.314425709006, + 26832.925164221593, + 26947.37335600826, + 27069.659001068998, + 27199.78209940382, + 27337.7426510127, + 27483.54065589567, + 27637.17611405271, + 27798.649025483817, + 27967.959390189004, + 28145.10720816827, + 28330.092479421593, + 28522.915203949004, + 28723.57538175048, + 28932.07301282604, + 29148.408097175663, + 29372.580634799375, + 29604.590625697158, + 29844.438069868997, + 30092.122967314932, + 30347.645318034927, + 30611.005122029004, + 30882.202379297152, + 31161.23708983937, + 31448.10925365568, + 31742.81887074604, + 32045.36594111049, + 32355.750464748995, + 28196.086217969, + 28232.326930739375, + 28276.40509678382, + 28328.320716102335, + 28388.07378869493, + 28455.664314561593, + 28531.09229370233, + 28614.357726117145, + 28705.46061180604, + 28804.400950769003, + 28911.178743006032, + 29025.793988517147, + 29148.246687302333, + 29278.53683936159, + 29416.66444469492, + 29562.629503302334, + 29716.432015183815, + 29878.07198033937, + 30047.549398769, + 30224.864270472706, + 30410.01659545048, + 30603.00637370233, + 30803.833605228265, + 31012.49829002826, + 31229.00042810234, + 31453.34001945048, + 31685.517064072705, + 31925.531561968997, + 32173.383513139364, + 32429.07291758381, + 32692.599775302333, + 32963.96408629493, + 33243.16585056159, + 33530.20506810233, + 33825.08173891716, + 34127.795863006046, + 34438.347440369, + 26195.290642316002, + 26231.685685681932, + 26275.918182321922, + 26327.98813223601, + 26387.895535424148, + 26455.64039188637, + 26531.22270162267, + 26614.64246463303, + 26705.899680917482, + 26804.994350475994, + 26911.9264733086, + 27026.696049415255, + 27149.303078795994, + 27279.74756145081, + 27418.0294973797, + 27564.14888658267, + 27718.105729059705, + 27879.900024810817, + 28049.531773836, + 28227.000976135267, + 28412.307631708594, + 28605.45174055599, + 28806.43330267748, + 29015.25231807304, + 29231.908786742668, + 29456.40270868637, + 29688.734083904146, + 29928.902912395995, + 30176.90919416193, + 30432.752929201924, + 30696.434117515997, + 30967.952759104148, + 31247.30885396637, + 31534.502402102673, + 31829.533403513036, + 32132.40185819748, + 32443.107766155998, + 28287.845177996005, + 28324.488905166374, + 28368.970085610814, + 28421.288719329335, + 28481.44480632192, + 28549.43834658859, + 28625.269340129333, + 28708.937786944145, + 28800.443687033032, + 28899.787040395997, + 29006.967847033036, + 29121.986106944143, + 29244.84182012933, + 29375.534986588587, + 29514.065606321918, + 29660.433679329333, + 29814.639205610805, + 29976.68218516637, + 30146.562617996, + 30324.28050409971, + 30509.835843477482, + 30703.228636129326, + 30904.458882055264, + 31113.526581255257, + 31330.431733729332, + 31555.174339477482, + 31787.754398499696, + 32028.17191079599, + 32276.42687636637, + 32532.519295210812, + 32796.44916732934, + 33068.21649272192, + 33347.821271388595, + 33635.26350332933, + 33930.54318854415, + 34233.66032703304, + 34544.614918795996, + 26270.107559561, + 26306.823987246924, + 26351.377868206928, + 26403.769202441003, + 26463.997989949148, + 26532.064230731372, + 26607.96792478767, + 26691.709072118036, + 26783.287672722476, + 26882.703726600997, + 26989.95723375359, + 27105.04819418026, + 27227.976607881, + 27358.74247485581, + 27497.345795104706, + 27643.786568627664, + 27798.0647954247, + 27960.18047549581, + 28130.133608841003, + 28307.924195460262, + 28493.552235353585, + 28687.017728520994, + 28888.320674962488, + 29097.461074678038, + 29314.438927667663, + 29539.254233931377, + 29771.906993469143, + 30012.397206281003, + 30260.724872366925, + 30516.889991726915, + 30780.892564361005, + 31052.732590269155, + 31332.41006945137, + 31619.925001907683, + 31915.277387638034, + 32218.467226642482, + 32529.494518920998, + 28378.633589381003, + 28415.68033095137, + 28460.564525795813, + 28513.286173914334, + 28573.845275306925, + 28642.241829973587, + 28718.475837914335, + 28802.547299129146, + 28894.456213618036, + 28994.202581380996, + 29101.786402418034, + 29217.207676729147, + 29340.46640431433, + 29471.56258517359, + 29610.496219306922, + 29757.267306714333, + 29911.875847395815, + 30074.321841351375, + 30244.605288581, + 30422.726189084708, + 30608.684542862484, + 30802.48034991433, + 31004.113610240263, + 31213.58432384026, + 31430.89249071433, + 31656.038110862482, + 31889.0211842847, + 32129.84171098099, + 32378.499690951372, + 32634.99512419581, + 32899.32801071434, + 33171.49835050694, + 33451.5061435736, + 33739.351389914336, + 34035.034089529145, + 34338.55424241803, + 34649.911848581, + 26343.953928164, + 26380.991740169928, + 26425.86700544992, + 26478.579724004, + 26539.129895832142, + 26607.517520934376, + 26683.74259931067, + 26767.80513096103, + 26859.70511588548, + 26959.442554084, + 27067.01744555659, + 27182.42979030326, + 27305.679588323994, + 27436.766839618816, + 27575.691544187695, + 27722.453702030667, + 27877.053313147706, + 28039.490377538816, + 28209.764895204007, + 28387.876866143262, + 28573.826290356592, + 28767.613167844, + 28969.23749860548, + 29178.699282641035, + 29395.998519950666, + 29621.13521053437, + 29854.10935439215, + 30094.920951523996, + 30343.570001929926, + 30600.056505609926, + 30864.380462564004, + 31136.541872792146, + 31416.540736294366, + 31704.37705307068, + 32000.050823121037, + 32303.562046445484, + 32614.91072304399, + 28468.451452123998, + 28505.901208094376, + 28551.188417338813, + 28604.313079857333, + 28665.27519564993, + 28734.07476471659, + 28810.71178705733, + 28895.186262672145, + 28987.498191561037, + 29087.647573723996, + 29195.634409161037, + 29311.45869787215, + 29435.120439857328, + 29566.61963511659, + 29705.95628364992, + 29853.130385457334, + 30008.14194053881, + 30170.99094889437, + 30341.677410524, + 30520.201325427708, + 30706.56269360548, + 30900.76151505733, + 31102.79778978326, + 31312.671517783256, + 31530.38269905733, + 31755.93133360548, + 31989.3174214277, + 32230.540962523988, + 32479.60195689437, + 32736.50040453881, + 33001.236305457336, + 33273.80965964993, + 33554.220467116604, + 33842.46872785733, + 34138.55444187215, + 34442.47760916103, + 34754.23822972399, + 26416.829748125005, + 26454.18894445093, + 26499.385594050927, + 26552.419696925004, + 26613.29125307315, + 26682.000262495374, + 26758.54672519167, + 26842.930641162035, + 26935.152010406484, + 27035.210832924997, + 27143.1071087176, + 27258.840837784257, + 27382.412020125, + 27513.820655739815, + 27653.066744628704, + 27800.150286791664, + 27955.07128222871, + 28117.82973093982, + 28288.425632925006, + 28466.858988184264, + 28653.129796717596, + 28847.238058525003, + 29049.183773606484, + 29258.966941962044, + 29476.587563591667, + 29702.045638495376, + 29935.341166673148, + 30176.474148124995, + 30425.444582850934, + 30682.25247085093, + 30946.897812125, + 31219.380606673152, + 31499.700854495375, + 31787.85855559168, + 32083.853709962037, + 32387.686317606487, + 32699.356378524997, + 28557.298766225005, + 28595.151536595375, + 28640.841760239815, + 28694.36943715834, + 28755.734567350923, + 28824.937150817594, + 28901.977187558336, + 28986.85467757315, + 29079.56962086204, + 29180.122017424994, + 29288.51186726204, + 29404.73917037315, + 29528.803926758334, + 29660.70613641759, + 29800.44579935092, + 29948.022915558337, + 30103.437485039816, + 30266.689507795374, + 30437.778983825, + 30616.705913128713, + 30803.470295706487, + 30998.07213155833, + 31200.511420684263, + 31410.788163084264, + 31628.902358758336, + 31854.85400770649, + 32088.643109928704, + 32330.269665424992, + 32579.733674195366, + 32837.035136239814, + 33102.17405155834, + 33375.15042015093, + 33655.96424201759, + 33944.61551715834, + 34241.104245573144, + 34545.43042726204, + 34857.594062225, + 26488.735019444008, + 26526.41560008993, + 26571.933634009925, + 26625.289121204, + 26686.48206167215, + 26755.512455414373, + 26832.380302430676, + 26917.08560272104, + 27009.628356285484, + 27110.008563124, + 27218.226223236597, + 27334.281336623262, + 27458.173903284, + 27589.903923218815, + 27729.471396427703, + 27876.876322910677, + 28032.118702667714, + 28195.19853569882, + 28366.115822004, + 28544.870561583266, + 28731.462754436598, + 28925.892400564, + 29128.159499965488, + 29338.264052641043, + 29556.206058590673, + 29781.98551781438, + 30015.602430312152, + 30257.056796083998, + 30506.348615129937, + 30763.47788744993, + 31028.444613044005, + 31301.24879191216, + 31581.890424054374, + 31870.36950947068, + 32166.68604816104, + 32470.840040125488, + 32782.831485364, + 28645.17553168401, + 28683.43131645438, + 28729.524554498817, + 28783.455245817335, + 28845.223390409927, + 28914.828988276593, + 28992.27203941734, + 29077.55254383215, + 29170.670501521043, + 29271.625912484003, + 29380.418776721042, + 29497.04909423215, + 29621.516865017333, + 29753.822089076588, + 29893.96476640992, + 30041.94489701734, + 30197.762480898822, + 30361.417518054375, + 30532.910008484003, + 30712.239952187716, + 30899.407349165485, + 31094.41219941733, + 31297.254502943266, + 31507.93425974327, + 31726.451469817337, + 31952.806133165494, + 32186.998249787706, + 32429.027819684, + 32678.894842854377, + 32936.599319298824, + 33202.14124901733, + 33475.52063200993, + 33756.73746827659, + 34045.791757817344, + 34342.683500632156, + 34647.41269672103, + 34959.97934608401, + 26559.669742120997, + 26597.671707086927, + 26643.511125326928, + 26697.187996841, + 26758.70232162915, + 26828.05409969137, + 26905.24333102766, + 26990.270015638034, + 27083.134153522482, + 27183.835744680993, + 27292.37478911359, + 27408.751286820258, + 27532.965237800996, + 27665.016642055813, + 27804.905499584704, + 27952.631810387666, + 28108.195574464706, + 28271.596791815813, + 28442.835462441, + 28621.911586340262, + 28808.825163513593, + 29003.576193960995, + 29206.164677682482, + 29416.59061467804, + 29634.854004947665, + 29860.954848491372, + 30094.89314530915, + 30336.668895401, + 30586.282098766926, + 30843.73275540693, + 31109.020865320996, + 31382.146428509157, + 31663.10944497137, + 31951.909914707674, + 32248.547837718044, + 32553.02321400248, + 32865.336043561, + 28732.081748501005, + 28770.740547671376, + 28817.236800115817, + 28871.570505834334, + 28933.741664826928, + 29003.750277093597, + 29081.596342634333, + 29167.27986144915, + 29260.800833538044, + 29362.159258901, + 29471.35513753804, + 29588.388469449153, + 29713.259254634333, + 29845.96749309359, + 29986.513184826923, + 30134.896329834337, + 30291.116928115818, + 30455.174979671374, + 30627.070484501004, + 30806.80344260471, + 30994.373853982484, + 31189.781718634335, + 31393.027036560263, + 31604.10980776026, + 31823.03003223434, + 32049.787709982484, + 32284.3828410047, + 32526.815425300996, + 32777.08546287137, + 33035.192953715814, + 33301.137897834335, + 33574.92029522693, + 33856.540145893596, + 34145.997449834336, + 34443.292207049155, + 34748.42441753804, + 35061.394081301005, + 26629.633916156003, + 26667.957265441928, + 26714.118068001928, + 26768.116323836, + 26829.952032944148, + 26899.62519532637, + 26977.135810982665, + 27062.483879913038, + 27155.669402117477, + 27256.692377596, + 27365.552806348587, + 27482.250688375265, + 27606.786023676003, + 27739.158812250822, + 27879.3690540997, + 28027.416749222662, + 28183.3018976197, + 28347.024499290812, + 28518.584554236004, + 28697.98206245526, + 28885.217023948593, + 29080.289438715998, + 29283.199306757484, + 29493.946628073038, + 29712.53140266267, + 29938.953630526375, + 30173.213311664153, + 30415.310446075997, + 30665.245033761923, + 30923.017074721924, + 31188.626568956006, + 31462.07351646415, + 31743.357917246365, + 32032.479771302667, + 32329.439078633037, + 32634.235839237484, + 32946.870053115985, + 28818.017416676004, + 28857.079230246374, + 28903.97849709082, + 28958.71521720933, + 29021.289390601927, + 29091.701017268595, + 29169.950097209334, + 29256.036630424147, + 29349.96061691304, + 29451.722056676, + 29561.320949713037, + 29678.757296024152, + 29804.031095609334, + 29937.142348468595, + 30078.091054601922, + 30226.87721400934, + 30383.50082669081, + 30547.961892646374, + 30720.260411876003, + 30900.396384379706, + 31088.369810157485, + 31284.180689209334, + 31487.829021535264, + 31699.314807135263, + 31918.63804600933, + 32145.79873815749, + 32380.796883579693, + 32623.632482276, + 32874.30553424638, + 33132.81603949082, + 33399.16399800934, + 33673.34940980193, + 33955.3722748686, + 34245.232593209344, + 34542.93036482415, + 34848.465589713036, + 35161.838267875995, + 26698.627541548998, + 26737.272275154934, + 26783.75446203493, + 26838.074102189006, + 26900.231195617154, + 26970.225742319373, + 27048.05774229567, + 27133.72719554604, + 27227.234102070484, + 27328.578461869, + 27437.760274941596, + 27554.779541288262, + 27679.636260909, + 27812.330433803818, + 27952.862059972707, + 28101.231139415668, + 28257.437672132706, + 28421.481658123812, + 28593.363097389003, + 28773.081989928265, + 28960.63833574159, + 29156.032134829, + 29359.263387190484, + 29570.332092826047, + 29789.238251735667, + 30015.981863919373, + 30250.562929377153, + 30492.981448109, + 30743.23742011493, + 31001.33084539493, + 31267.261723949003, + 31541.030055777155, + 31822.63584087937, + 32112.079079255665, + 32409.359770906038, + 32714.477915830477, + 33027.433514029, + 28902.982536208998, + 28942.447364179377, + 28989.749645423813, + 29044.889379942335, + 29107.866567734924, + 29178.681208801594, + 29257.33330314234, + 29343.822850757148, + 29438.14985164604, + 29540.314305808995, + 29650.316213246042, + 29768.155573957145, + 29893.83238794233, + 30027.34665520159, + 30168.698375734923, + 30317.887549542338, + 30474.914176623817, + 30639.778256979374, + 30812.479790609, + 30993.01877751271, + 31181.39521769049, + 31377.60911114233, + 31581.660457868264, + 31793.549257868264, + 32013.275511142332, + 32240.839217690485, + 32476.240377512702, + 32719.478990608997, + 32970.55505697938, + 33229.46857662382, + 33496.21954954233, + 33770.807975734926, + 34053.23385520159, + 34343.49718794234, + 34641.59797395715, + 34947.536213246036, + 35261.311905808994, + 26766.650618300002, + 26805.616736225933, + 26852.420307425928, + 26907.061331900004, + 26969.539809648148, + 27039.855740670373, + 27118.009124966673, + 27203.999962537036, + 27297.82825338148, + 27399.493997499998, + 27508.99719489259, + 27626.33784555926, + 27751.5159495, + 27884.531506714815, + 28025.384517203704, + 28174.074980966667, + 28330.602898003708, + 28494.96826831482, + 28667.17109190001, + 28847.21136875926, + 29035.089098892593, + 29230.8042823, + 29434.35691898148, + 29645.74700893704, + 29864.974552166666, + 30092.03954867038, + 30326.941998448157, + 30569.681901499996, + 30820.259257825932, + 31078.67406742593, + 31344.926330300008, + 31619.016046448145, + 31900.94321587037, + 32190.707838566672, + 32488.309914537032, + 32793.74944378149, + 33107.02642629999, + 28986.977107100003, + 29026.844949470375, + 29074.550245114817, + 29130.092994033334, + 29193.47319622593, + 29264.690851692594, + 29343.74596043333, + 29430.63852244815, + 29525.368537737035, + 29627.9360063, + 29738.340928137037, + 29856.583303248146, + 29982.663131633333, + 30116.58041329259, + 30258.335148225924, + 30407.927336433335, + 30565.356977914813, + 30730.624072670373, + 30903.7286207, + 31084.67062200371, + 31273.45007658148, + 31470.066984433335, + 31674.521345559264, + 31886.81315995926, + 32106.942427633334, + 32334.909148581482, + 32570.713322803706, + 32814.3549503, + 33065.83403107037, + 33325.15056511481, + 33592.304552433336, + 33867.29599302592, + 34150.12488689259, + 34440.791234033335, + 34739.29503444815, + 35045.63628813703, + 35359.814995099994, + 26833.703146409003, + 26872.99064865493, + 26920.115604174924, + 26975.078012968992, + 27037.877875037142, + 27108.51519037937, + 27186.98995899567, + 27273.302180886036, + 27367.451856050484, + 27469.438984489, + 27579.263566201585, + 27696.925601188253, + 27822.425089449, + 27955.76203098381, + 28096.9364257927, + 28245.948273875667, + 28402.797575232707, + 28567.484329863815, + 28740.008537769005, + 28920.370198948258, + 29108.569313401593, + 29304.605881128995, + 29508.479902130483, + 29720.191376406037, + 29939.740303955667, + 30167.126684779374, + 30402.35051887715, + 30645.411806248994, + 30896.310546894925, + 31155.046740814923, + 31421.620388008996, + 31696.03148847715, + 31978.28004221937, + 32268.36604923568, + 32566.289509526036, + 32872.05042309048, + 33185.648789929, + 29070.001129349002, + 29110.271986119373, + 29158.380296163814, + 29214.326059482333, + 29278.109276074923, + 29349.729945941588, + 29429.18806908233, + 29516.483645497145, + 29611.616675186036, + 29714.587158148996, + 29825.395094386033, + 29944.04048389714, + 30070.523326682327, + 30204.843622741584, + 30347.001372074916, + 30496.996574682336, + 30654.829230563813, + 30820.499339719372, + 30994.006902148994, + 31175.351917852702, + 31364.53438683048, + 31561.554309082327, + 31766.411684608258, + 31979.10651340826, + 32199.63879548233, + 32428.00853083048, + 32664.2157194527, + 32908.26036134899, + 33160.14245651937, + 33419.86200496382, + 33687.41900668233, + 33962.813461674916, + 34246.04536994159, + 34537.11473148233, + 34836.02154629715, + 35142.76581438604, + 35457.347535748995, + 26841.093522807503, + 26880.416734450886, + 26927.577399368343, + 26982.575517559875, + 27045.411089025474, + 27116.084113765155, + 27194.594591778907, + 27280.942523066733, + 27375.12790762863, + 27477.15074546461, + 27587.011036574662, + 27704.708780958787, + 27830.243978616985, + 27963.61662954925, + 28104.826733755595, + 28253.87429123602, + 28410.759301990507, + 28575.48176601907, + 28748.04168332172, + 28928.439053898444, + 29116.67387774922, + 29312.746154874083, + 29516.655885273023, + 29728.403068946045, + 29947.98770589313, + 30175.40979611428, + 30410.669339609518, + 30653.766336378827, + 30904.700786422203, + 31163.472689739658, + 31430.082046331197, + 31704.528856196805, + 31986.813119336475, + 32276.93483575024, + 32574.894005438062, + 32880.69062839996, + 33194.32470463593, + 29079.166117627192, + 29119.481753811167, + 29167.634843269214, + 29223.62538600133, + 29287.453382007523, + 29359.11883128779, + 29438.621733842134, + 29525.962089670546, + 29621.139898773043, + 29724.1551611496, + 29835.007876800242, + 29953.698045724956, + 30080.22566792374, + 30214.5907433966, + 30356.79327214353, + 30506.833254164547, + 30664.710689459625, + 30830.425578028786, + 31003.977919872013, + 31185.367714989326, + 31374.594963380703, + 31571.659665046147, + 31776.561819985684, + 31989.30142819928, + 32209.87848968696, + 32438.29300444871, + 32674.544972484528, + 32918.63439379442, + 33170.5612683784, + 33430.325596236435, + 33697.92737736856, + 33973.36661177476, + 34256.64329945503, + 34547.75744040937, + 34846.70903463778, + 35153.498082140264, + 35468.12458291683, + 24223.649154500003, + 24317.250606825928, + 24418.68951242593, + 24527.965871300006, + 24645.079683448148, + 24770.030948870375, + 24902.81966756667, + 25043.445839537042, + 25191.90946478149, + 25348.210543300003, + 25512.349075092596, + 25684.325060159266, + 25864.138498500004, + 26051.789390114816, + 26247.277735003707, + 26450.603533166668, + 26661.76678460371, + 26880.767489314814, + 27107.6056473, + 27342.281258559266, + 27584.794323092596, + 27835.1448409, + 28093.33281198149, + 28359.35823633704, + 28633.22111396667, + 28914.921444870375, + 29204.459229048152, + 29501.834466500004, + 29807.04715722593, + 30120.097301225924, + 30440.9848985, + 30769.709949048156, + 31106.27245287037, + 31450.672409966675, + 31802.90982033704, + 32162.984683981485, + 32530.897000899997, + 29159.129647100006, + 29267.509937470368, + 29383.727681114815, + 29507.782878033333, + 29639.67552822593, + 29779.405631692596, + 29926.973188433334, + 30082.37819844815, + 30245.62066173704, + 30416.700578300002, + 30595.617948137045, + 30782.372771248152, + 30976.965047633334, + 31179.39477729259, + 31389.661960225927, + 31607.766596433336, + 31833.708685914822, + 32067.488228670372, + 32309.105224700004, + 32558.55967400371, + 32815.85157658149, + 33080.98093243333, + 33353.94774155927, + 33634.752003959264, + 33923.39371963333, + 34219.872888581485, + 34524.189510803706, + 34836.3435863, + 35156.335115070375, + 35484.164097114815, + 35819.830532433334, + 36163.33442102593, + 36514.67576289259, + 36873.854558033345, + 37240.870806448154, + 37615.72450813704, + 37998.41566309999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 11.51996830304511, + "volume": 4.542492 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxV_5_MP.json b/examples/ColmacCxV_5_MP.json new file mode 100644 index 0000000..347363b --- /dev/null +++ b/examples/ColmacCxV_5_MP.json @@ -0,0 +1,2411 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0005678115, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 333.15, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 253.14999999999998, + 273.15, + 273.65, + 274.15, + 274.65, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.15, + 277.15, + 279.15, + 281.15, + 283.15, + 285.15, + 287.15, + 289.15, + 291.15, + 293.15, + 295.15, + 297.15, + 299.15, + 301.15, + 303.15, + 305.15, + 307.15, + 309.15, + 311.15, + 313.15, + 315.15, + 317.15, + 319.15, + 321.15, + 323.15, + 325.15, + 327.15, + 329.15, + 331.15, + 333.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 5421.65407338218, + 5602.651621269597, + 5771.44139572378, + 5930.566059103716, + 6082.293874792071, + 6228.618707195193, + 6371.260021743128, + 6511.662884889599, + 6650.997964112021, + 6790.161527911495, + 6929.7754458128, + 7070.187188364409, + 7211.469827138487, + 7353.42203473087, + 7495.568084761092, + 7637.157851872369, + 7777.166811731607, + 7914.296041029391, + 8046.972217479999, + 8173.347619821396, + 8291.300127815226, + 8398.433222246824, + 8492.075984925212, + 8569.283098683098, + 8626.834847376878, + 8661.237115886626, + 8668.721390116116, + 8645.244756992792, + 8586.489904467797, + 8487.865121515955, + 8344.504298135784, + 12762.31769357455, + 12681.604427652437, + 12610.776544388296, + 12550.988883517, + 12503.121885797129, + 12467.78159301093, + 12445.299647964346, + 12435.73329448701, + 12438.865377432236, + 12454.204342677021, + 12480.984237122058, + 12518.16470869172, + 12564.431006334062, + 12618.193980020833, + 12677.59008074746, + 12740.481360533076, + 12804.455472420475, + 12866.825670476166, + 12924.630809790295, + 12974.635346476749, + 13013.329337673076, + 13036.928441540516, + 13041.373917263973, + 13022.332625052086, + 12975.197026137133, + 12895.085182775085, + 12776.84075824564, + 12615.033016852132, + 12403.956823921602, + 12137.632645804786, + 11809.806549876103, + 12955.233725278278, + 12868.082248193074, + 12791.38384430497, + 12726.258657783244, + 12673.552433820869, + 12633.83651863449, + 12607.407859464458, + 12594.289004574784, + 12594.228103253196, + 12606.698905811081, + 12630.90076358353, + 12665.758628929318, + 12709.923055230885, + 12761.770196894393, + 12819.40180934967, + 12880.645249050229, + 12943.053473473268, + 13003.905041119684, + 13060.204111514046, + 13108.68044520462, + 13145.78940376336, + 13167.711949785891, + 13170.354646891528, + 13149.349659723306, + 13100.054753947888, + 13017.553296255659, + 12896.654254360701, + 12731.892197000752, + 12517.527293937253, + 12247.54531595533, + 11915.657634863808, + 13148.50658789859, + 13054.925479926607, + 12972.365885039002, + 12901.913251839445, + 12844.378629955301, + 12800.29867003762, + 12769.935623761145, + 12753.277343824291, + 12750.037283949176, + 12759.654498881595, + 12781.293644391024, + 12813.844977270634, + 12855.92435533729, + 12905.873237431524, + 12961.758683417565, + 13021.373354183328, + 13082.235511640416, + 13141.589018724111, + 13196.403339393382, + 13243.373538630905, + 13278.920282443007, + 13299.18983785973, + 13300.054072934798, + 13277.110456745604, + 13225.68205939324, + 13140.817552002489, + 13017.291206721819, + 12849.602896723363, + 12631.978096202965, + 12358.367880380161, + 12022.448925498134, + 13342.128560707833, + 13242.12665068457, + 13153.715442981083, + 13077.94569063546, + 13015.593747709456, + 12967.161569288517, + 12932.876711481784, + 12912.692331422075, + 12906.2871872659, + 12913.065638193444, + 12932.157644408599, + 12962.418767138928, + 13002.430168635681, + 13050.498612173797, + 13104.656462051904, + 13162.661683592307, + 13221.997843141007, + 13279.874108067708, + 13333.225246765745, + 13378.711628652198, + 13412.71922416781, + 13431.359604777002, + 13430.469942967888, + 13405.613012252286, + 13352.077187165674, + 13264.876443267216, + 13138.750357139794, + 12968.16410638995, + 12747.3084696479, + 12470.099826567583, + 12130.18015782661, + 13536.09188037519, + 13429.6782456953, + 13335.425251918741, + 13254.348956517984, + 13187.1910179892, + 13134.41869585222, + 13096.22485065059, + 13072.527943951514, + 13062.972038345912, + 13066.92679744837, + 13083.48748589716, + 13111.47496935425, + 13149.435714505298, + 13195.641789059622, + 13248.090861750261, + 13304.506202333923, + 13362.336681590998, + 13418.756771325567, + 13470.666544365407, + 13514.691674561956, + 13547.183436790372, + 13564.218706949483, + 13561.599961961781, + 13534.855279773488, + 13479.23833935448, + 13389.72842069833, + 13261.0304048223, + 13087.574773767337, + 12863.517610598055, + 12582.740599402792, + 12238.851025293545, + 13730.388740966675, + 13617.572707583988, + 13517.488003036326, + 13431.115989230555, + 13359.163629097236, + 13302.063486590605, + 13259.973726688599, + 13232.778115392834, + 13220.086019728606, + 13221.232407744921, + 13235.277848514428, + 13261.008512133509, + 13296.936169722205, + 13341.29819342425, + 13392.057556407071, + 13446.902832861759, + 13503.248198003123, + 13558.233428069632, + 13608.723900323463, + 13651.310593050459, + 13682.310085560157, + 13697.764558185783, + 13693.441792284259, + 13664.835170236169, + 13607.163675445798, + 13515.371892341127, + 13384.130006373802, + 13207.83380401916, + 12980.60467277624, + 12696.28960116776, + 12348.46117874011, + 13925.011293945121, + 13805.802436372647, + 13699.896344915025, + 13608.23968591352, + 13531.50472673309, + 13470.08933576237, + 13424.116982413694, + 13393.436737123073, + 13377.623271350207, + 13375.976857578486, + 13387.523369314975, + 13411.01428109044, + 13444.926668459328, + 13487.463207999761, + 13536.55217731357, + 13589.847455026242, + 13644.728520786992, + 13698.30045526868, + 13747.393940167856, + 13788.565258204802, + 13818.096293123439, + 13831.99452969138, + 13825.993053699945, + 13795.55055196413, + 13735.851312322604, + 13641.805223637744, + 13508.047775795609, + 13328.940059705925, + 13098.568767302124, + 12810.746191541328, + 12459.010226404323, + 14119.951648170209, + 13994.359789480128, + 13882.642883532857, + 13785.71290110407, + 13704.207413993121, + 13638.48959502305, + 13588.648218040571, + 13554.497657916108, + 13535.577890543756, + 13531.154492841288, + 13540.218642750187, + 13561.487119235611, + 13593.402302286391, + 13634.132172915062, + 13681.570313157845, + 13733.33590607463, + 13786.773735749017, + 13838.954187288282, + 13886.673246823373, + 13926.452501508944, + 13954.539139523333, + 13966.905950068554, + 13959.251323370303, + 13926.999250677998, + 13865.299324264703, + 13769.026737427172, + 13632.782284485877, + 13450.892360784948, + 13217.408962692196, + 12926.109687599148, + 12570.497733921009, + 14315.201869898445, + 14183.237081722094, + 14065.720182264666, + 13963.52844673623, + 13877.264751370532, + 13807.257573425008, + 13753.560991180775, + 13715.954683942653, + 13693.943932039128, + 13686.759616822386, + 13693.358220668293, + 13712.421826976404, + 13742.358120169965, + 13781.300385695899, + 13827.107510024807, + 13877.363980651005, + 13929.379886092474, + 13980.190915890884, + 14026.55836061159, + 14064.96911184365, + 14091.63566219978, + 14102.496105316399, + 14093.214135853626, + 14059.179049495235, + 13995.505742948704, + 13897.034713945206, + 13758.332061239582, + 13573.689484610362, + 13337.12428485977, + 13042.379363813732, + 12682.923224321812, + 14510.753982783159, + 14372.426585311066, + 14249.12076188214, + 14141.67909214085, + 14050.669756755342, + 13976.386537417433, + 13918.848816842663, + 13877.80157877024, + 13852.715407963038, + 13842.78649020766, + 13846.936612314345, + 13863.813162117063, + 13891.789128473452, + 13928.963101264819, + 13973.159271396196, + 14021.92743079627, + 14072.542972417426, + 14122.006890235742, + 14167.045779250948, + 14204.111835486516, + 14229.382855989557, + 14238.76223883089, + 14227.878983105016, + 14192.08768893013, + 14126.468557448094, + 14025.827390824474, + 13884.69559224852, + 13697.330165933154, + 13457.713717115, + 13159.554452054375, + 12796.286178035258, + 14706.599967874517, + 14561.920529856376, + 14432.837100553785, + 14320.15756404561, + 14224.4154054344, + 14145.869710846366, + 14084.505167431453, + 14040.032063363245, + 14011.886287839036, + 13999.22933107982, + 14000.948284330232, + 14015.65583985864, + 14041.690290957074, + 14077.115531941256, + 14119.721058150597, + 14167.02196594819, + 14216.25895272081, + 14264.398316878931, + 14308.131957856713, + 14343.877376111977, + 14367.777673126266, + 14375.701551404789, + 14363.243314476433, + 14325.7228668938, + 14258.185714233157, + 14155.402963094448, + 14011.871321101336, + 13821.813096901142, + 13579.176200164875, + 13277.63414158725, + 12910.586032886653, + 14902.731763619522, + 14751.711102364188, + 14616.861633844937, + 14498.956546575024, + 14398.494630091385, + 14315.700274954654, + 14250.523472749148, + 14202.639816082865, + 14171.450498587488, + 14156.082314918409, + 14155.387660754666, + 14167.94453279902, + 14192.056528777899, + 14225.752847441423, + 14266.788288563403, + 14312.643252941321, + 14360.523742396368, + 14407.361359773395, + 14449.813308940966, + 14484.26239479131, + 14506.817023240355, + 14513.311201227705, + 14499.304536716665, + 14460.08223869421, + 14390.65511717101, + 14285.759583181425, + 14139.8576487835, + 13947.136927058948, + 13701.510632113186, + 13396.617579075337, + 13025.822184098155, + 15099.141265861988, + 14941.790447237508, + 14801.186754717774, + 14678.068681250435, + 14572.900320806833, + 14485.871368381988, + 14416.897119994623, + 14365.618472687134, + 14331.4019245256, + 14313.339574599806, + 14310.249123023197, + 14320.673870932924, + 14342.882720489817, + 14374.870174878384, + 14414.356338306847, + 14458.78691600708, + 14505.333214234672, + 14550.892140268876, + 14592.086202412635, + 14625.263509992594, + 14646.497773359073, + 14651.588303886077, + 14636.060013971297, + 14595.163417036129, + 14523.874627525616, + 14416.895360908524, + 14268.652933677295, + 14073.300263348045, + 13824.715868460587, + 13516.503868578433, + 13141.993984288752, + 15295.820327842594, + 15132.150666276179, + 14985.804813531297, + 14857.486566990021, + 14747.625325058078, + 14656.376087164885, + 14583.619453763571, + 14528.961626330913, + 14491.734407367405, + 14470.995200397225, + 14465.527009968204, + 14473.838441651906, + 14494.163702043548, + 14524.462598762046, + 14562.420540450012, + 14605.448536773716, + 14650.683198423141, + 14694.986737111944, + 14734.94696557748, + 14766.877297580764, + 14786.816747906527, + 14790.529932363179, + 14773.507067782799, + 14730.963972021167, + 14657.842063957758, + 14548.808363495711, + 14398.255491561871, + 14200.301670106752, + 13948.79072210456, + 13637.292071553207, + 13259.100743474262, + 15492.760760198826, + 15322.783818676842, + 15170.708118041342, + 15037.202760108788, + 14922.6624477193, + 14827.2074847367, + 14750.683776048505, + 14692.662827565902, + 14652.441746223772, + 14629.043239980687, + 14621.215617818902, + 14627.432789744344, + 14645.894266786656, + 14674.525160999134, + 14710.976185458776, + 14752.623654266281, + 14796.569482546018, + 14839.641186446035, + 14878.391883138076, + 14909.100290817581, + 14927.77072870366, + 14930.13311703911, + 14911.642977090434, + 14867.481431147797, + 14792.55520252506, + 14681.496615559778, + 14528.663595613185, + 14328.139669070184, + 14073.7339633394, + 13758.98120685313, + 13377.141729067334, + 15580.402258882043, + 15407.62487901002, + 15253.00570696216, + 15117.198418906435, + 15000.58229203453, + 14903.262204561783, + 14825.068635727244, + 14765.557665793633, + 14724.010976047373, + 14699.435848798561, + 14690.565167380984, + 14695.85741615211, + 14713.496680493105, + 14741.392646808801, + 14777.180602527746, + 14818.221436102156, + 14861.60163700792, + 14904.133295744641, + 14942.354103835596, + 14972.527353827742, + 14990.641939291738, + 14992.412354821912, + 14973.278696036281, + 14928.406659576573, + 14852.687543108163, + 14740.73824532014, + 14586.901265925277, + 14385.244705660021, + 14129.562266284502, + 13813.373250582563, + 13429.922562361708, + 15689.95433096499, + 15513.681921033003, + 15355.888933400574, + 15217.209774318566, + 15098.004451061508, + 14998.358571927605, + 14918.083346238776, + 14856.71558434062, + 14813.517697602392, + 14787.477698417082, + 14777.309200201318, + 14781.45141739545, + 14798.069165463507, + 14825.052860893176, + 14860.018521195883, + 14900.307764906684, + 14942.987811584366, + 14984.851481811378, + 15022.417197193845, + 15051.92898036162, + 15069.356454968207, + 15070.394845690802, + 15050.464978230299, + 15004.713279311267, + 14928.011776681959, + 14814.958099114328, + 14659.87547640401, + 14456.81273937031, + 14199.544319856239, + 13881.5702507285, + 13496.116165877453, + 15887.39276557226, + 15704.83694733499, + 15541.339482158493, + 15397.500080728041, + 15273.644054752549, + 15169.82231696463, + 15085.811381120595, + 15021.113362000428, + 14974.955975407809, + 14946.292538170099, + 14933.801968138345, + 14935.888784187286, + 14950.683106215336, + 14976.040655144605, + 15009.542752920892, + 15048.496322513667, + 15089.933887916102, + 15130.613574145053, + 15167.019107241047, + 15195.359814268319, + 15211.570623314787, + 15211.312063492036, + 15189.970264935342, + 15142.656958803704, + 15064.209477279754, + 14949.190753569841, + 14791.889321903998, + 14586.319317535948, + 14326.22047674307, + 14005.058136826472, + 13616.02323611093, + 16085.067746848612, + 15896.24082896995, + 15727.051944261424, + 15578.066107842698, + 15449.573935857086, + 15341.591645471599, + 15253.861054876945, + 15185.849583287514, + 15136.750250941364, + 15105.481679100267, + 15090.688090049678, + 15090.739307098698, + 15103.730754580185, + 15127.48345785061, + 15159.54404329018, + 15197.184738302776, + 15237.403371315957, + 15276.923371780962, + 15312.193770172744, + 15339.389197989924, + 15354.409887754797, + 15352.881673013375, + 15330.15598833533, + 15281.309869314025, + 15201.145952566527, + 15084.192475733576, + 14924.703277479593, + 14716.657797492686, + 14453.761076484661, + 14129.443756191013, + 13736.862079370889, + 16282.970915018857, + 16087.885454721876, + 15913.018457052533, + 15758.900241564876, + 15625.786728836629, + 15513.6594404692, + 15422.225499087694, + 15350.91762834089, + 15298.894152901259, + 15265.038998464963, + 15247.961691751843, + 15245.997360505426, + 15257.20673349293, + 15279.37614050525, + 15310.017512356999, + 15346.368380886415, + 15385.39187895549, + 15423.776740449866, + 15457.937300278854, + 15484.013494375507, + 15497.870859696517, + 15495.100534222267, + 15471.019256956848, + 15420.66936792803, + 15338.818808187249, + 15219.961119809655, + 15058.315445894073, + 14847.826530563008, + 14582.164718962655, + 14254.72595726291, + 13858.631792657334, + 16481.09386770464, + 16279.762670771584, + 16099.231115271794, + 15939.994825193731, + 15802.27502554951, + 15686.018542374935, + 15590.89780272951, + 15516.310834696416, + 15461.381267382514, + 15424.95833091837, + 15405.616856458213, + 15401.657276179976, + 15411.10562328528, + 15431.71353199941, + 15460.958237571363, + 15496.042576273816, + 15533.894985403105, + 15571.1695032793, + 15604.245769246127, + 15629.229023670989, + 15641.95010794501, + 15637.96546448297, + 15612.55713672334, + 15560.732769128294, + 15477.225607183684, + 15356.494497399033, + 15192.723887307566, + 14979.823825466205, + 14711.429961455522, + 14380.903545879815, + 13981.331430367047, + 16679.428159924457, + 16471.864280696722, + 16285.681971056041, + 16121.342159425263, + 15979.031375250888, + 15858.66174900314, + 15759.871012175907, + 15682.022497286765, + 15624.205137876976, + 15585.233468511507, + 15563.647624778985, + 15557.713343291742, + 15565.421961685779, + 15584.490418620799, + 15612.36125378019, + 15646.202607871015, + 15682.908222624037, + 15719.097440793692, + 15751.115206158112, + 15775.032063519122, + 15786.644158702205, + 15781.473238556553, + 15754.766650955064, + 15701.497344794267, + 15616.36386999442, + 15493.790377499472, + 15327.92661927702, + 15112.64794831838, + 14841.555318638533, + 14507.975285276183, + 14104.960004293667, + 16877.965304093592, + 16664.182045471774, + 16472.36303393893, + 16302.93450235229, + 16156.048284592775, + 16031.581815564994, + 15929.138131197222, + 15848.04586844145, + 15787.359265273344, + 15745.858160692238, + 15722.047994721192, + 15714.15980840691, + 15720.1502438198, + 15737.701544053965, + 15764.221553227178, + 15796.843716480917, + 15832.427079980329, + 15867.556290914263, + 15898.541597495232, + 15921.418848959462, + 15931.949495566845, + 15925.620588600963, + 15897.644780369092, + 15842.9603242022, + 15756.231074454916, + 15631.846486505576, + 15463.9216167562, + 15246.297122632492, + 14972.539262583832, + 14635.939896083308, + 14229.516483627682, + 17076.6967700242, + 16856.70768346805, + 16659.266270850934, + 16484.764069464472, + 16333.31821762398, + 16204.771454668475, + 16098.692120960628, + 16014.374157886818, + 15950.837107857116, + 15906.826114305257, + 15880.81192168868, + 15870.990875488507, + 15875.284922209543, + 15891.341609380273, + 15916.534085552883, + 15947.961100303239, + 15982.447004230886, + 16016.541748959082, + 16046.520887134722, + 16068.385572428431, + 16077.862559534511, + 16070.404204170938, + 16041.18846307937, + 15985.118894025194, + 15896.824655797433, + 15770.660508208794, + 15600.706812095732, + 15380.769529318328, + 15104.380222760361, + 14764.796056329316, + 14354.999794956366, + 17275.61398492524, + 17049.432870453693, + 16846.38360611936, + 16666.82303364829, + 16510.833595790176, + 16378.223336318426, + 16268.525900030125, + 16181.000532746042, + 16114.632081310645, + 16068.130993592069, + 16039.933318482153, + 16028.200705896405, + 16030.820406774039, + 16045.405273077933, + 16069.293757794674, + 16099.549914934525, + 16132.963399531436, + 16166.049467643026, + 16195.048976350632, + 16215.928383759267, + 16224.379748997613, + 16215.820732218044, + 16185.394594596652, + 16127.970198333169, + 16038.14200665104, + 15910.230083797407, + 15738.280095043054, + 15516.06330668249, + 15237.076586033905, + 14894.542401439181, + 14481.408822263842, + 17474.70833340252, + 17242.349239593666, + 17033.706921468376, + 16849.103525187063, + 16688.586797933836, + 16551.930087916506, + 16438.632344366542, + 16347.918117539126, + 16278.737558713103, + 16229.766420191027, + 16199.406055299118, + 16185.783418387287, + 16186.751064829155, + 16199.887151021983, + 16222.495434386772, + 16251.605273368154, + 16283.971627434506, + 16316.07505707784, + 16344.121723813876, + 16364.043390182025, + 16371.497419745387, + 16361.866777090721, + 16330.2600278285, + 16271.511338592893, + 16180.180477041707, + 16050.55281185648, + 15876.639312742425, + 15652.17655042843, + 15370.626696667081, + 15025.17752423466, + 14608.742406931096, + 17673.97115745867, + 17435.448381449787, + 17221.228056018936, + 17031.59763176094, + 16866.570160294294, + 16725.884294261206, + 16609.004287327552, + 16515.1199941829, + 16443.14687054051, + 16391.72597313731, + 16359.223959733928, + 16343.733089114694, + 16343.071221087583, + 16354.781816484296, + 16376.1339371602, + 16404.12224599435, + 16435.46700688949, + 16466.61408477206, + 16493.73494559216, + 16512.72665632361, + 16519.211884963897, + 16508.53890053419, + 16475.78157307934, + 16415.73937366793, + 16322.93737439216, + 16191.626248367966, + 16015.782269734957, + 15789.107313656423, + 15505.028856319339, + 15156.699974934381, + 14736.999347735902, + 17873.393756493162, + 17628.721843980693, + 17408.93880628887, + 17214.297398446903, + 17044.775976507703, + 16900.078497547856, + 16779.634519667652, + 16682.599201991045, + 16607.853304665692, + 16554.00318886293, + 16519.38081677779, + 16502.043751628964, + 16499.775157658863, + 16510.08380013357, + 16530.20404534284, + 16557.095860600144, + 16587.444814242623, + 16617.66207563109, + 16643.884415150074, + 16661.974204207774, + 16667.51941523607, + 16655.833621690534, + 16621.955998050442, + 16560.651319818724, + 16466.409963522012, + 16333.447906710644, + 16155.7067279586, + 15926.853606863582, + 15640.281324046962, + 15289.108261153822, + 14866.178400852883, + 18072.96738730228, + 17822.16113254184, + 17596.830926192793, + 17397.194827718755, + 17223.196497607034, + 17074.505197368606, + 16950.51578953816, + 16850.34873767405, + 16772.85010635833, + 16716.591561196736, + 16679.87036881869, + 16660.709396877297, + 16656.857114049348, + 16665.787590035325, + 16684.70049555939, + 16710.52110236941, + 16739.900283236926, + 16769.21451195714, + 16794.56586334898, + 16811.782013255048, + 16816.41623854162, + 16803.747417098657, + 16768.780027839846, + 16706.244150702507, + 16610.59546664767, + 16476.01525766007, + 16296.410406748091, + 16065.413397943823, + 15776.382316303043, + 15422.400847905228, + 14996.278279853495, + 18272.683264079154, + 18015.757709885533, + 17784.8961270422, + 17580.281879447153, + 17401.823932022104, + 17249.156850712443, + 17121.640802487236, + 17018.361555339245, + 16938.130478284926, + 16879.484541364396, + 16840.68631564148, + 16819.723973203694, + 16814.311287162218, + 16821.887631651924, + 16839.617981831398, + 16864.392913882864, + 16892.828605012277, + 16921.26683344926, + 16945.774978447113, + 16962.14602028283, + 16965.898540257116, + 16952.276720694314, + 16916.250344942473, + 16852.514797373373, + 16755.49106338241, + 16619.325729388685, + 16437.89098283504, + 16204.784612187936, + 15913.330006937538, + 15556.576157597723, + 15127.297655706036, + 18472.53255841374, + 18209.502996160896, + 17973.126077545363, + 17763.550470899558, + 17580.65044557956, + 17424.025871965176, + 17293.00222145987, + 17186.630566490792, + 17103.687580508795, + 17042.67553798841, + 17001.82231442785, + 16979.08138634901, + 16972.131831297498, + 16978.378327842573, + 16994.9511555772, + 17018.70619511803, + 17046.22492810541, + 17073.814437203328, + 17097.507406099518, + 17113.062119505365, + 17115.96246315595, + 17101.417923810026, + 17064.363589250086, + 16999.460148282218, + 16901.093890736272, + 16763.37670746577, + 16580.146090347884, + 16344.96513228351, + 16051.122527197214, + 15691.63257003727, + 15259.23515677559, + 18672.506399292823, + 18403.38836891389, + 18161.512403807435, + 17946.992476740263, + 17759.66816150288, + 17599.104632909457, + 17464.59266679787, + 17355.148640029678, + 17269.514530490116, + 17206.157917088116, + 17163.271979756286, + 17138.775499450927, + 17130.31285815204, + 17135.254038863277, + 17150.694625612006, + 17173.455803449277, + 17200.084358449825, + 17226.852677712057, + 17249.758749358076, + 17264.526162533686, + 17266.60410740835, + 17251.16737517525, + 17213.116358051215, + 17147.077049276802, + 17047.401043116217, + 16908.16553485737, + 16723.173320811868, + 16485.952798314975, + 16189.757965725665, + 15827.568422426615, + 15392.089368824136, + 18872.595873100032, + 18597.40516308731, + 18350.046689330375, + 18130.599729030433, + 17938.869160412367, + 17774.38546272477, + 17636.40471623992, + 17523.90860225374, + 17435.604403085887, + 17369.92500207969, + 17325.028883602146, + 17298.800133043966, + 17288.84843681953, + 17292.509082366905, + 17306.842958147852, + 17328.63655364782, + 17354.401959375922, + 17380.37686686499, + 17402.524568671517, + 17416.53395837569, + 17417.819530581393, + 17401.521380916183, + 17362.505206031296, + 17295.362303601687, + 17194.40957232597, + 17053.68951192643, + 16866.97022314908, + 16627.745407763607, + 16329.234368563348, + 15964.38200936538, + 15525.858835010433, + 18894.834803849615, + 18618.970336511757, + 18371.00372629195, + 18151.010395325466, + 17958.791366771267, + 17793.87326481201, + 17655.508314654024, + 17542.67434252734, + 17454.074775685673, + 17388.138642406404, + 17343.020571990633, + 17316.600794763122, + 17306.485142072324, + 17310.00504629038, + 17324.217540813122, + 17345.905260060063, + 17371.5764394744, + 17397.464915523036, + 17419.530125696518, + 17433.45710850913, + 17434.656503498805, + 17418.26455122718, + 17379.143093279567, + 17311.87957226499, + 17210.78703181611, + 17069.90411658933, + 16882.995072264697, + 16643.549745545977, + 16344.78358416059, + 15979.637636859676, + 15540.778553418033, + 28836.51833648059, + 28282.767066932658, + 27787.38178553825, + 27348.70313615565, + 26964.797363666767, + 26633.4563139772, + 26352.19743401627, + 26118.263771736954, + 25928.623976115927, + 25779.972297153534, + 25668.728585873836, + 25591.038294324568, + 25542.772475577112, + 25519.52778372662, + 25516.62647389185, + 25529.11640221529, + 25551.771025863087, + 25579.08940302512, + 25605.29619291489, + 25624.341655769633, + 25629.90165285027, + 25615.377646441386, + 25573.89669985124, + 25498.31147741184, + 25381.20024447881, + 25214.866867431476, + 24991.340813672905, + 24702.377151629793, + 24339.456550752493, + 23893.785281515156, + 23356.295215415543 + ], + "input_power": [ + 4701.0759837, + 4628.933985012, + 4568.158844627999, + 4518.750562547999, + 4480.709138771999, + 4454.0345732999995, + 4438.7268661319995, + 4434.786017267998, + 4442.212026707999, + 4461.0048944519995, + 4491.1646205, + 4532.691204851999, + 4585.584647507999, + 4649.8449484679995, + 4725.472107731999, + 4812.4661252999995, + 4910.827001172, + 5020.554735348, + 5141.6493278279995, + 5274.110778612, + 5417.9390877, + 5573.134255092001, + 5739.696280788, + 5917.625164787999, + 6106.920907092001, + 6307.5835077, + 6519.612966612001, + 6743.009283828, + 6977.772459348001, + 7223.902493171998, + 7481.3993853, + 4748.505375299999, + 4684.751969891999, + 4632.365422787999, + 4591.345733987999, + 4561.6929034919995, + 4543.4069313, + 4536.487817411999, + 4540.935561828, + 4556.750164548, + 4583.931625572, + 4622.479944899999, + 4672.395122532, + 4733.677158468, + 4806.326052708, + 4890.341805251998, + 4985.724416099999, + 5092.473885251998, + 5210.590212708002, + 5340.073398467999, + 5480.923442532, + 5633.140344899999, + 5796.724105572, + 5971.674724547999, + 6157.9922018279985, + 6355.6765374120005, + 6564.727731299998, + 6785.145783492, + 7016.930693987999, + 7260.082462787999, + 7514.6010898919985, + 7780.4865753, + 4748.407072008, + 4684.863381432, + 4632.686549159999, + 4591.876575191999, + 4562.433459527999, + 4544.357202167999, + 4537.647803112, + 4542.305262359999, + 4558.329579911999, + 4585.720755767999, + 4624.478789927999, + 4674.603682391999, + 4736.095433159999, + 4808.954042231998, + 4893.1795096079995, + 4988.771835288, + 5095.731019272, + 5214.057061559999, + 5343.749962151999, + 5484.809721047999, + 5637.236338247999, + 5801.0298137519985, + 5976.190147559999, + 6162.717339672001, + 6360.611390088001, + 6569.872298808, + 6790.500065832001, + 7022.494691159999, + 7265.856174792, + 7520.5845167279995, + 7786.679716968, + 4748.246132712, + 4684.912156967999, + 4632.945039527999, + 4592.344780392, + 4563.1113795599995, + 4545.244837032, + 4538.745152808, + 4543.612326887999, + 4559.846359271999, + 4587.44724996, + 4626.414998951999, + 4676.749606247999, + 4738.451071848, + 4811.519395752, + 4895.954577959999, + 4991.756618472, + 5098.925517287999, + 5217.4612744080005, + 5347.363889831999, + 5488.633363559999, + 5641.269695591998, + 5805.272885927999, + 5980.642934568, + 6167.379841512, + 6365.483606760001, + 6574.954230311998, + 6795.791712168, + 7027.996052328, + 7271.567250792, + 7526.505307559999, + 7792.810222631999, + 4748.0225574119995, + 4684.8982965, + 4633.1408938919985, + 4592.750349587999, + 4563.726663588, + 4546.069835892, + 4539.779866499999, + 4544.856755412, + 4561.300502628, + 4589.1111081479985, + 4628.288571972, + 4678.832894099999, + 4740.744074532, + 4814.022113268, + 4898.6670103080005, + 4994.678765651999, + 5102.0573792999985, + 5220.802851252001, + 5350.9151815079995, + 5492.394370068, + 5645.240416932, + 5809.4533221, + 5985.033085571999, + 6171.9797073479995, + 6370.293187428, + 6579.973525811999, + 6801.0207225, + 7033.434777492, + 7277.215690787999, + 7532.363462387999, + 7798.878092292, + 4747.736346107999, + 4684.821800027999, + 4633.274112251999, + 4593.093282779999, + 4564.279311611999, + 4546.832198747999, + 4540.7519441879995, + 4546.038547931998, + 4562.692009979999, + 4590.7123303319995, + 4630.099508987999, + 4680.853545947999, + 4742.974441212, + 4816.46219478, + 4901.316806651999, + 4997.538276828, + 5105.126605308, + 5224.081792092, + 5354.40383718, + 5496.0927405719995, + 5649.148502267999, + 5813.571122268001, + 5989.360600572, + 6176.51693718, + 6375.040132092001, + 6584.930185308, + 6806.187096828, + 7038.810866652, + 7282.80149478, + 7538.158981212, + 7804.883325948001, + 4747.3874988, + 4684.682667551999, + 4633.3446946079985, + 4593.373579967999, + 4564.769323632, + 4547.531925599999, + 4541.661385871999, + 4547.157704448, + 4564.020881328, + 4592.250916512001, + 4631.847809999999, + 4682.811561791999, + 4745.142171887999, + 4818.839640287999, + 4903.903966992001, + 5000.335152, + 5108.133195311999, + 5227.298096927999, + 5357.8298568479995, + 5499.728475072, + 5652.9939515999995, + 5817.626286432001, + 5993.625479568001, + 6180.991531008, + 6379.724440752001, + 6589.8242088, + 6811.290835152001, + 7044.124319807999, + 7288.324662768, + 7543.891864031999, + 7810.8259236, + 4746.976015488, + 4684.4808990719985, + 4633.352640959999, + 4593.591241151999, + 4565.196699648, + 4548.169016448, + 4542.5081915519995, + 4548.214224959999, + 4565.287116672, + 4593.726866688, + 4633.533475007999, + 4684.706941631999, + 4747.24726656, + 4821.154449792, + 4906.428491328, + 5003.069391167999, + 5111.077149312, + 5230.45176576, + 5361.193240511999, + 5503.301573568, + 5656.776764927999, + 5821.618814592, + 5997.82772256, + 6185.403488831999, + 6384.346113408, + 6594.655596287999, + 6816.331937472, + 7049.3751369599995, + 7293.785194752001, + 7549.562110848, + 7816.705885248, + 4746.501896171999, + 4684.216494588, + 4633.297951307999, + 4593.746266331999, + 4565.561439659999, + 4548.743471292, + 4543.292361227998, + 4549.208109468, + 4566.490716012, + 4595.140180859999, + 4635.1565040119995, + 4686.539685468, + 4749.289725228, + 4823.4066232919995, + 4908.89037966, + 5005.740994331999, + 5113.958467307999, + 5233.542798588, + 5364.493988172, + 5506.8120360600005, + 5660.496942252, + 5825.548706748001, + 6001.967329548, + 6189.752810651999, + 6388.905150060001, + 6599.424347771999, + 6821.310403788001, + 7054.563318108, + 7299.183090731999, + 7555.169721659998, + 7822.523210892001, + 4745.965140851999, + 4683.889454099999, + 4633.1806256519985, + 4593.838655507999, + 4565.863543668, + 4549.2552901320005, + 4544.013894899999, + 4550.139357972001, + 4567.631679348001, + 4596.490859028, + 4636.716897012, + 4688.3097933, + 4751.269547892, + 4825.596160788002, + 4911.289631988, + 5008.349961492, + 5116.7771493, + 5236.571195412001, + 5367.732099828, + 5510.2598625480005, + 5664.154483572001, + 5829.4159629000005, + 6006.044300532, + 6194.039496468, + 6393.401550708001, + 6604.1304632520005, + 6826.2262341000005, + 7059.688863252, + 7304.518350707999, + 7560.714696468, + 7828.277900532001, + 4745.365749528, + 4683.499777608, + 4633.000663991999, + 4593.868408679999, + 4566.103011671999, + 4549.704472967999, + 4544.672792567999, + 4551.007970472, + 4568.710006679999, + 4597.778901192, + 4638.214654007999, + 4690.017265128, + 4753.186734552, + 4827.723062279999, + 4913.626248311999, + 5010.896292648, + 5119.533195288, + 5239.536956232, + 5370.907575480001, + 5513.645053032002, + 5667.749388888, + 5833.220583048001, + 6010.058635512, + 6198.26354628, + 6397.835315352001, + 6608.773942728, + 6831.079428408001, + 7064.751772392, + 7309.7909746800005, + 7566.197035271999, + 7833.969954168001, + 4744.7037222, + 4683.047465111999, + 4632.758066327999, + 4593.835525848, + 4566.279843672, + 4550.091019799999, + 4545.269054232, + 4551.813946968, + 4569.725698007999, + 4599.004307352001, + 4639.649775, + 4691.6621009519995, + 4755.041285208, + 4829.787327768, + 4915.900228632001, + 5013.3799878, + 5122.226605271999, + 5242.440081047999, + 5374.020415128, + 5516.967607512, + 5671.2816582, + 5836.962567192, + 6014.010334487999, + 6202.424960088, + 6402.206443992001, + 6613.3547862, + 6835.869986712, + 7069.752045528, + 7315.000962648, + 7571.616738072, + 7839.5993718, + 4743.979058868001, + 4682.532516611999, + 4632.452832659999, + 4593.740007011999, + 4566.394039667999, + 4550.414930628, + 4545.802679891999, + 4552.55728746, + 4570.678753331999, + 4600.167077508, + 4641.022259988, + 4693.244300772, + 4756.83319986, + 4831.788957252, + 4918.111572948, + 5015.801046948, + 5124.857379251999, + 5245.28056986, + 5377.070618772001, + 5520.227525988001, + 5674.751291508001, + 5840.641915332001, + 6017.899397460001, + 6206.523737892001, + 6406.514936628001, + 6617.872993667999, + 6840.597909012001, + 7074.6896826600005, + 7320.148314612, + 7576.973804868, + 7845.166153428001, + 4743.191759532, + 4681.954932107999, + 4632.0849629879995, + 4593.581852172, + 4566.44559966, + 4550.6762054519995, + 4546.273669548, + 4553.237991948, + 4571.569172652, + 4601.26721166, + 4642.332108972, + 4694.763864588001, + 4758.562478508, + 4833.727950731999, + 4920.260281259999, + 5018.1594700919995, + 5127.425517228, + 5248.058422668, + 5380.058186412001, + 5523.42480846, + 5678.158288812, + 5844.258627468002, + 6021.725824428, + 6210.559879692, + 6410.760793260001, + 6622.328565132, + 6845.263195308001, + 7079.564683788, + 7325.233030572001, + 7582.26823566, + 7850.670299052001, + 4742.341824192, + 4681.3147116, + 4631.654457311999, + 4593.361061328, + 4566.434523648, + 4550.874844271999, + 4546.6820232, + 4553.856060431999, + 4572.396955967999, + 4602.304709808001, + 4643.579321951999, + 4696.2207924, + 4760.229121152, + 4835.604308208, + 4922.346353568002, + 5020.455257232, + 5129.9310192, + 5250.773639472, + 5382.9831180480005, + 5526.559454928, + 5681.502650111999, + 5847.8127036000005, + 6025.489615392, + 6214.533385488, + 6414.944013888, + 6626.721500592, + 6849.865845600001, + 7084.377048912, + 7330.255110528, + 7587.500030448, + 7856.111808672001, + 4741.429252848, + 4680.611855088, + 4631.161315631999, + 4593.07763448, + 4566.360811632, + 4551.010847088, + 4547.027740848, + 4554.4114929120005, + 4573.16210328, + 4603.279571952, + 4644.763898928, + 4697.615084208001, + 4761.8331277920015, + 4837.418029680001, + 4924.369789871999, + 5022.688408368, + 5132.373885168, + 5253.426220272001, + 5385.84541368, + 5529.631465392001, + 5684.784375408, + 5851.304143728001, + 6029.190770352001, + 6218.44425528, + 6419.064598512002, + 6631.051800048, + 6854.405859888002, + 7089.1267780319995, + 7335.2145544800005, + 7592.669189232, + 7861.490682288001, + 4741.003409041619, + 4680.279250495926, + 4630.921950254234, + 4592.93150831654, + 4566.307924682848, + 4551.051199353155, + 4547.161332327462, + 4554.638323605769, + 4573.4821731880775, + 4603.692881074384, + 4645.270447264692, + 4698.214871758998, + 4762.526154557307, + 4838.204295659613, + 4925.249295065921, + 5023.661152776229, + 5133.439868790535, + 5254.585443108843, + 5387.097875731149, + 5530.977166657456, + 5686.223315887764, + 5852.836323422072, + 6030.8161892603775, + 6220.162913402685, + 6420.876495848992, + 6632.956936599299, + 6856.404235653607, + 7091.2183930119145, + 7337.399408674221, + 7594.947282640529, + 7863.8620149108365, + 4740.454045499999, + 4679.846362572, + 4630.6055379479985, + 4592.731571627999, + 4566.224463611999, + 4551.084213899999, + 4547.310822491999, + 4554.904289388, + 4573.864614587998, + 4604.191798092, + 4645.885839899998, + 4698.946740011999, + 4763.374498427999, + 4839.169115147999, + 4926.330590172, + 5024.8589235, + 5134.754115132, + 5256.016165068, + 5388.645073307999, + 5532.640839851999, + 5688.003464699999, + 5854.732947852, + 6032.829289308, + 6222.292489067999, + 6423.1225471319985, + 6635.319463499999, + 6858.883238172, + 7093.813871147999, + 7340.111362427999, + 7597.7757120119995, + 7866.8069199, + 4739.416202147999, + 4679.0182340520005, + 4629.987124259998, + 4592.322872771999, + 4566.025479588, + 4551.094944707999, + 4547.531268131999, + 4555.334449859999, + 4574.504489891999, + 4605.041388228, + 4646.945144867999, + 4700.215759811999, + 4764.853233059999, + 4840.857564611999, + 4928.228754467999, + 5026.966802628, + 5137.071709092, + 5258.54347386, + 5391.3820969319995, + 5535.587578308, + 5691.1599179879995, + 5858.099115972, + 6036.40517226, + 6226.0780868520005, + 6427.117859747999, + 6639.524490948, + 6863.297980452, + 7098.438328259999, + 7344.945534372, + 7602.819598787999, + 7872.060521508, + 4738.315722792, + 4678.127469528001, + 4629.306074567999, + 4591.851537911999, + 4565.763859559999, + 4551.043039512, + 4547.689077767999, + 4555.701974328, + 4575.081729192, + 4605.828342359999, + 4647.941813832, + 4701.422143607999, + 4766.269331688, + 4842.483378071999, + 4930.0642827599995, + 5029.012045752, + 5139.326667048, + 5261.008146648, + 5394.056484551999, + 5538.47168076, + 5694.253735271999, + 5861.402648088, + 6039.918419207999, + 6229.801048632, + 6431.050536359999, + 6643.666882391999, + 6867.650086728, + 7103.000149367999, + 7349.717070312, + 7607.80084956, + 7877.251487112, + 4737.152607431999, + 4677.174069, + 4628.562388871999, + 4591.317567048, + 4565.439603528, + 4550.928498312, + 4547.784251399999, + 4556.006862791999, + 4575.5963324879995, + 4606.552660488, + 4648.875846792, + 4702.565891399999, + 4767.622794311999, + 4844.046555527999, + 4931.837175048001, + 5030.994652872, + 5141.518988999999, + 5263.410183432, + 5396.668236167999, + 5541.293147208, + 5697.284916551999, + 5864.643544200001, + 6043.369030151999, + 6233.461374407999, + 6434.920576967999, + 6647.746637832, + 6871.939557, + 7107.499334472, + 7354.425970247999, + 7612.719464327998, + 7882.379816712, + 4735.926856067998, + 4676.158032468, + 4627.756067171998, + 4590.720960179999, + 4565.052711492, + 4550.7513211079995, + 4547.816789027998, + 4556.249115252, + 4576.048299779999, + 4607.214342612, + 4649.747243747999, + 4703.647003187999, + 4768.9136209319995, + 4845.54709698, + 4933.547431331999, + 5032.914623988, + 5143.648674947998, + 5265.749584211999, + 5399.217351779999, + 5544.051977652, + 5700.253461828, + 5867.821804308, + 6046.757005092, + 6237.05906418, + 6438.727981571999, + 6651.763757268, + 6876.166391268, + 7111.9358835719995, + 7359.072234179999, + 7617.575443092, + 7887.445510308, + 4734.6384687, + 4675.079359932, + 4626.887109467999, + 4590.061717307999, + 4564.603183451999, + 4550.5115079, + 4547.786690651999, + 4556.428731708001, + 4576.437631067999, + 4607.813388732, + 4650.556004699999, + 4704.6654789720005, + 4770.141811548, + 4846.9850024279995, + 4935.195051612, + 5034.7719591, + 5145.715724891999, + 5268.026348988, + 5401.703831387998, + 5546.7481720920005, + 5703.1593711, + 5870.937428412, + 6050.082344028001, + 6240.594117948, + 6442.472750172001, + 6655.7182407, + 6880.330589532001, + 7116.309796668, + 7363.655862107999, + 7622.368785851999, + 7892.448567900001, + 4733.287445327999, + 4673.938051392, + 4625.95551576, + 4589.339838431999, + 4564.091019408, + 4550.209058688, + 4547.693956271999, + 4556.545712159999, + 4576.764326351999, + 4608.3497988479985, + 4651.302129648, + 4705.621318752, + 4771.30736616, + 4848.360271872, + 4936.7800358879995, + 5036.566658207998, + 5147.720138831998, + 5270.240477759999, + 5404.127674991999, + 5549.381730528, + 5706.002644368, + 5873.990416512, + 6053.345046959999, + 6244.066535712, + 6446.154882768, + 6659.610088127999, + 6884.432151792001, + 7120.6210737599995, + 7368.176854032, + 7627.099492607999, + 7897.388989488, + 4731.873785952, + 4672.734106848, + 4624.961286048, + 4588.555323552, + 4563.516219359999, + 4549.843973472, + 4547.538585888, + 4556.600056607999, + 4577.028385631999, + 4608.82357296, + 4651.985618592, + 4706.514522527999, + 4772.410284768001, + 4849.672905312, + 4938.30238416, + 5038.298721311999, + 5149.661916767998, + 5272.3919705280005, + 5406.488882592, + 5551.95265296, + 5708.783281631999, + 5876.980768607999, + 6056.545113887999, + 6247.476317471999, + 6449.77437936, + 6663.439299551999, + 6888.471078048001, + 7124.8697148480005, + 7372.635209952, + 7631.767563359998, + 7902.266775072, + 4730.397490572, + 4671.467526300001, + 4623.904420332, + 4587.708172667999, + 4562.8787833080005, + 4549.416252252001, + 4547.3205795, + 4556.591765052, + 4577.229808908, + 4609.234711068, + 4652.606471532001, + 4707.345090299999, + 4773.4505673720005, + 4850.922902748, + 4939.762096427999, + 5039.968148411999, + 5151.5410587, + 5274.480827292, + 5408.787454187999, + 5554.460939388, + 5711.501282892, + 5879.9084847, + 6059.682544812001, + 6250.823463227999, + 6453.331239948, + 6667.205874972, + 6892.447368300001, + 7129.055719931999, + 7377.0309298679995, + 7636.372998108, + 7907.081924652001, + 4728.858559188, + 4670.138309747999, + 4622.784918612, + 4586.79838578, + 4562.178711252, + 4548.925895028, + 4547.039937108, + 4556.520837491999, + 4577.368596179999, + 4609.583213172, + 4653.164688467999, + 4708.113022067999, + 4774.428213972, + 4852.11026418, + 4941.159172692, + 5041.574939507999, + 5153.3575646280005, + 5276.507048052, + 5411.023389780002, + 5556.906589812001, + 5714.156648148001, + 5882.773564788, + 6062.757339732, + 6254.10797298, + 6456.825464532, + 6670.909814388, + 6896.361022548001, + 7133.179089012, + 7381.364013780001, + 7640.915796852, + 7911.834438228001, + 4727.2569918, + 4668.746457192, + 4621.602780887999, + 4585.825962888, + 4561.416003192, + 4548.372901799999, + 4546.696658712, + 4556.387273928, + 4577.444747447999, + 4609.869079272, + 4653.660269399999, + 4708.818317832, + 4775.343224568, + 4853.2349896079995, + 4942.493612952, + 5043.119094600001, + 5155.111434551999, + 5278.470632808, + 5413.196689367999, + 5559.289604232, + 5716.7493774, + 5885.576008872001, + 6065.769498647999, + 6257.329846728, + 6460.257053112001, + 6674.5511178, + 6900.212040792001, + 7137.2398220879995, + 7385.634461688001, + 7645.395959592, + 7916.5243158, + 4725.592788408, + 4667.291968632, + 4620.35800716, + 4584.790903992, + 4560.590659128, + 4547.757272568, + 4546.290744311999, + 4556.191074359999, + 4577.458262712, + 4610.092309367999, + 4654.093214328, + 4709.460977591999, + 4776.19559916, + 4854.297079032, + 4943.765417208, + 5044.600613688, + 5156.802668472, + 5280.37158156, + 5415.307352952001, + 5561.609982648001, + 5719.279470648, + 5888.315816952001, + 6068.719021560001, + 6260.489084471999, + 6463.626005688001, + 6678.129785208001, + 6904.000423032002, + 7141.23791916, + 7389.842273592, + 7649.813486328, + 7921.151557368001, + 4723.865949012, + 4665.774844068001, + 4619.050597428, + 4583.693209091999, + 4559.702679060001, + 4547.079007332001, + 4545.822193908, + 4555.932238788, + 4577.409141972001, + 4610.25290346, + 4654.463523252, + 4710.0410013480005, + 4776.985337748001, + 4855.296532452002, + 4944.97458546, + 5046.019496772, + 5158.431266388001, + 5282.209894308001, + 5417.355380532001, + 5563.86772506, + 5721.746927892001, + 5890.992989028001, + 6071.605908468, + 6263.585686212, + 6466.932322260001, + 6681.645816612, + 6907.726169268, + 7145.173380228, + 7393.987449492, + 7654.168377059999, + 7925.716162932001, + 4722.076473612, + 4664.1950835, + 4617.680551692, + 4582.532878188, + 4558.752062988, + 4546.338106092, + 4545.2910075, + 4555.610767212, + 4577.297385228, + 4610.3508615480005, + 4654.771196172, + 4710.5583891, + 4777.712440332, + 4856.233349867999, + 4946.121117708, + 5047.375743852001, + 5159.9972283, + 5283.9855710520005, + 5419.340772108, + 5566.062831468, + 5724.151749132, + 5893.6075251, + 6074.430159371999, + 6266.619651948, + 6470.1760028280005, + 6685.099212011999, + 6911.389279500001, + 7149.046205291999, + 7398.069989387999, + 7658.460631788001, + 7930.218132492, + 4720.224362208, + 4662.552686928, + 4616.247869952001, + 4581.30991128, + 4557.738810912, + 4545.534568848, + 4544.697185088, + 4555.226659632, + 4577.12299248, + 4610.386183632, + 4655.016233088, + 4711.013140847999, + 4778.376906912001, + 4857.10753128, + 4947.205013952, + 5048.669354928, + 5161.500554208002, + 5285.6986117920005, + 5421.263527680001, + 5568.1953018720005, + 5726.493934368, + 5896.159425167999, + 6077.191774272002, + 6269.5909816799995, + 6473.357047392001, + 6688.489971408, + 6914.989753728, + 7152.856394352, + 7402.08989328, + 7662.690250512, + 7934.657466048001, + 4718.3096147999995, + 4660.847654351999, + 4614.7525522079995, + 4580.024308367999, + 4556.662922831999, + 4544.668395599999, + 4544.0407266719985, + 4554.779916047998, + 4576.885963727998, + 4610.358869711999, + 4655.1986339999985, + 4711.405256591998, + 4778.978737487999, + 4857.919076687999, + 4948.2262741919985, + 5049.900329999999, + 5162.941244111999, + 5287.349016527999, + 5423.1236472479995, + 5570.265136272, + 5728.773483599999, + 5898.648689232, + 6079.890753168, + 6272.499675407999, + 6476.475455952001, + 6691.818094799999, + 6918.527591952001, + 7156.603947408, + 7406.047161168, + 7666.857233231999, + 7939.034163600001, + 4716.332231387999, + 4659.0799857719985, + 4613.19459846, + 4578.676069452, + 4555.524398747999, + 4543.739586347999, + 4543.321632251999, + 4554.27053646, + 4576.586298971999, + 4610.268919788, + 4655.318398907999, + 4711.734736332, + 4779.517932059999, + 4858.667986091999, + 4949.1848984279995, + 5051.0686690679995, + 5164.319298011999, + 5288.93678526, + 5424.921130811999, + 5572.2723346679995, + 5730.990396828, + 5901.075317292, + 6082.527096059999, + 6275.3457331320005, + 6479.531228508001, + 6695.083582187998, + 6922.002794172, + 7160.288864459999, + 7409.941793051999, + 7670.961579947999, + 7943.348225148001, + 4716.108655520829, + 4658.879711571471, + 4613.017625926112, + 4578.522398584753, + 4555.394029547396, + 4543.632518814036, + 4543.2378663846775, + 4554.210072259319, + 4576.54913643796, + 4610.255058920601, + 4655.327839707243, + 4711.767478797884, + 4779.573976192526, + 4858.747331891167, + 4949.287545893809, + 5051.194618200449, + 5164.46854881109, + 5289.109337725733, + 5425.116984944372, + 5572.491490467015, + 5731.232854293656, + 5901.341076424297, + 6082.8161568589385, + 6275.6580955975805, + 6479.866892640222, + 6695.442547986863, + 6922.385061637505, + 7160.694433592144, + 7410.370663850787, + 7671.413752413428, + 7943.823699280069, + 4537.0306021999995, + 4490.287399832001, + 4454.911055767999, + 4430.901570007999, + 4418.258942552, + 4416.983173399999, + 4427.074262552, + 4448.532210007999, + 4481.357015768, + 4525.548679832, + 4581.107202199999, + 4648.032582872001, + 4726.324821847999, + 4815.983919128, + 4917.009874712, + 5029.4026886, + 5153.162360791999, + 5288.288891288001, + 5434.782280087999, + 5592.642527192, + 5761.869632599999, + 5942.463596312001, + 6134.424418328, + 6337.752098648, + 6552.446637272001, + 6778.5080342, + 7015.936289432001, + 7264.731402968001, + 7524.893374807999, + 7796.422204951999, + 8079.317893400001 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 3.4888619387061306, + "volume": 0.757082 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/ColmacCxV_5_SP.json b/examples/ColmacCxV_5_SP.json new file mode 100644 index 0000000..7cd63ac --- /dev/null +++ b/examples/ColmacCxV_5_SP.json @@ -0,0 +1,2409 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 333.15, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 253.14999999999998, + 273.15, + 273.65, + 274.15, + 274.65, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.15, + 277.15, + 279.15, + 281.15, + 283.15, + 285.15, + 287.15, + 289.15, + 291.15, + 293.15, + 295.15, + 297.15, + 299.15, + 301.15, + 303.15, + 305.15, + 307.15, + 309.15, + 311.15, + 313.15, + 315.15, + 317.15, + 319.15, + 321.15, + 323.15, + 325.15, + 327.15, + 329.15, + 331.15, + 333.15 + ], + "outlet_temperature": [ + 330.3722222222222 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 7768.197801841588, + 7805.210084946135, + 7841.963690063917, + 7878.47669779671, + 7914.751363216695, + 7950.774115866462, + 7986.5155597589965, + 8021.9304733777035, + 8056.957809676373, + 8091.520696079213, + 8125.526434480833, + 8158.866501246242, + 8191.416547210862, + 8223.036397680511, + 8253.570052431418, + 8282.845685710212, + 8310.675646233925, + 8336.856457190006, + 8361.16881623629, + 8383.377595501033, + 8403.231841582874, + 8420.464775550885, + 8434.793792944518, + 8445.920463773644, + 8453.530532518529, + 8457.293918129855, + 8456.864714028694, + 8451.881188106532, + 8441.965782725258, + 8426.725114717165, + 8405.74997538495, + 12749.76312251543, + 12751.207451084414, + 12754.036280500153, + 12758.200394000181, + 12763.634749292445, + 12770.258478555304, + 12777.974888437506, + 12786.67146005823, + 12796.219849007022, + 12806.47588534387, + 12817.279573599133, + 12828.455092773604, + 12839.810796338457, + 12851.139212235279, + 12862.217042876066, + 12872.805165143218, + 12882.648630389529, + 12891.476664438213, + 12899.002667582872, + 12904.924214587527, + 12908.923054686591, + 12910.665111584894, + 12909.800483457657, + 12905.963442950517, + 12898.772437179503, + 12887.83008773107, + 12872.723190662053, + 12853.0227164997, + 12828.28381024167, + 12798.045791356026, + 12761.832153781219, + 12888.202947759437, + 12888.689465766072, + 12890.609352306896, + 12893.911708185342, + 12898.52980867525, + 12904.381103520873, + 12911.367216936856, + 12919.373947608268, + 12928.27126869055, + 12937.913327809576, + 12948.138447061616, + 12958.769123013346, + 12969.612026701834, + 12980.458003634569, + 12991.082073789434, + 13001.243431614728, + 13010.685446029138, + 13019.135660421769, + 13026.305792652121, + 13031.8917350501, + 13035.57355441603, + 13037.015492020613, + 13035.865963604987, + 13031.75755938067, + 13024.307044029596, + 13013.115356704093, + 12997.767611026906, + 12977.833095091177, + 12952.865271460454, + 12922.401777168698, + 12885.964423720252, + 13027.253840156509, + 13026.780261252075, + 13027.78929848226, + 13030.228370216408, + 13034.02906929425, + 13039.107163025934, + 13045.362593191998, + 13052.679476043397, + 13060.926102301479, + 13069.954937158007, + 13079.602620275147, + 13089.689965785454, + 13100.02196229192, + 13110.387772867898, + 13120.560735057188, + 13130.298360873969, + 13139.342336802822, + 13147.418523798755, + 13154.236957287152, + 13159.491847163825, + 13162.861577794982, + 13164.008708017234, + 13162.57997113759, + 13158.206274933473, + 13150.502701652715, + 13139.068508013546, + 13123.487125204589, + 13103.326158884884, + 13078.137389183878, + 13047.456770701423, + 13010.804432507759, + 13166.91024348925, + 13165.474357079544, + 13165.570714317915, + 13167.145051139583, + 13170.127277950183, + 13174.431479625748, + 13179.955915512724, + 13186.583019427944, + 13194.179399658671, + 13202.595838962547, + 13211.66729456763, + 13221.212898172382, + 13231.035955945672, + 13240.923948526766, + 13250.648531025345, + 13259.965533021481, + 13268.614958565662, + 13276.320986178778, + 13282.791968852118, + 13287.720434047385, + 13290.783083696662, + 13291.640794202476, + 13289.93861643773, + 13285.305775745735, + 13277.355671940222, + 13265.685879305296, + 13249.878146595494, + 13229.498397035752, + 13204.0967283214, + 13173.207412618189, + 13136.348896562247, + 13307.166529967826, + 13304.76620121319, + 13303.94812353308, + 13304.656350428617, + 13306.819109871321, + 13310.348804303132, + 13315.14201063638, + 13321.079480253793, + 13328.026139008527, + 13335.83108722412, + 13344.327599694532, + 13353.33312568411, + 13362.649288927621, + 13372.06188763022, + 13381.340894467485, + 13390.24045658539, + 13398.498895600309, + 13405.838707599027, + 13411.966563138722, + 13416.573307247, + 13419.33395942184, + 13419.907713631652, + 13417.937938315237, + 13413.052176381812, + 13404.862145210976, + 13392.963736652751, + 13376.937017027569, + 13356.346227126252, + 13330.739782210017, + 13299.650272010522, + 13262.594460729784, + 13448.017000230006, + 13444.650170045305, + 13442.915978274586, + 13442.75679598487, + 13444.099168713565, + 13446.853816468501, + 13450.915633727906, + 13456.163689440416, + 13462.46122702506, + 13469.655664371281, + 13477.578593838929, + 13486.04578225825, + 13494.857170929903, + 13503.796875624932, + 13512.633186584819, + 13521.118568521422, + 13528.989660617011, + 13535.967276524274, + 13541.756404366277, + 13546.046206736519, + 13548.510020698879, + 13548.805357787653, + 13546.573904007544, + 13541.441519833652, + 13533.018240211482, + 13520.898274556948, + 13504.660006756369, + 13483.865995166465, + 13458.062972614356, + 13426.781846397575, + 13389.537698284052, + 13589.45588334112, + 13585.120568395745, + 13582.468659116827, + 13581.440844137254, + 13581.961986560353, + 13583.941123959838, + 13587.27146837982, + 13591.830406334844, + 13597.479498809831, + 13604.064481260115, + 13611.415263611445, + 13619.345930259948, + 13627.65474007219, + 13636.12412638511, + 13644.520697006079, + 13652.595234212846, + 13660.082694753584, + 13666.702209846862, + 13672.157085181654, + 13676.134800917349, + 13678.307011683712, + 13678.329546580946, + 13675.842409179637, + 13670.469777520784, + 13661.820004115789, + 13649.485615946458, + 13633.043314465001, + 13612.05397559403, + 13586.062649726568, + 13554.59856172604, + 13517.175110926271, + 13731.477336794078, + 13726.17162951196, + 13722.600475061769, + 13720.702879642284, + 13720.402023922721, + 13721.605263042695, + 13724.204126612218, + 13728.074318711719, + 13733.075717892001, + 13739.052377174316, + 13745.832524050289, + 13753.228560481959, + 13761.037062901769, + 13769.038782212567, + 13776.998643787603, + 13784.665747470528, + 13791.773367575412, + 13798.038952886718, + 13803.164126659305, + 13806.834686618462, + 13808.720604959848, + 13808.476028349565, + 13805.739277924082, + 13800.13284929031, + 13791.263412525528, + 13778.72181217744, + 13762.083067264157, + 13740.906371274177, + 13714.735092166424, + 13683.096772370209, + 13645.503128785254, + 13874.07544650939, + 13867.79751506899, + 13863.305663538986, + 13860.537215684055, + 13859.413669739306, + 13859.840698410248, + 13861.708148872784, + 13864.890042773242, + 13869.24457622832, + 13874.614119825163, + 13880.825218621283, + 13887.688592144621, + 13894.999134393518, + 13902.5359138367, + 13910.062173413324, + 13917.32533053294, + 13924.056977075494, + 13929.972879391358, + 13934.772978301286, + 13938.141389096445, + 13939.74640153841, + 13939.24047985916, + 13936.26026276107, + 13930.426563416935, + 13921.34436946993, + 13908.602843033663, + 13891.775320692128, + 13870.419313499728, + 13844.076506981259, + 13812.27276113196, + 13774.518110417423, + 14017.244226835124, + 14009.99231516943, + 14004.578390405608, + 14000.93809387423, + 13998.991241376296, + 13998.641823183212, + 13999.778004036776, + 14002.272123149201, + 14005.980694203103, + 14010.744405351486, + 14016.388119217796, + 14022.72087289584, + 14029.535877949855, + 14036.610520414468, + 14043.706360794733, + 14050.569134066089, + 14056.928749674378, + 14062.499291535865, + 14066.979018037198, + 14070.050362035441, + 14071.379930858064, + 14070.61850630293, + 14067.401044638318, + 14061.346676602918, + 14052.058707405798, + 14039.12461672645, + 14022.116058714773, + 14000.58886199106, + 13974.083029646012, + 13942.122739240738, + 13904.216342806743, + 14160.977620546962, + 14152.750048343492, + 14146.412749946368, + 14141.899684252066, + 14139.128984627478, + 14138.002958909905, + 14138.408089407038, + 14140.21503289699, + 14143.278620628253, + 14147.43785831975, + 14152.515926160793, + 14158.320178811102, + 14164.642145400816, + 14171.25752953044, + 14177.926209270927, + 14184.392237163609, + 14190.383840220222, + 14195.61341992293, + 14199.777552224263, + 14202.5569875472, + 14203.616650785081, + 14202.605641301689, + 14199.157232931171, + 14192.888873978123, + 14183.40218721751, + 14170.28296989472, + 14153.101193725539, + 14131.411004896163, + 14104.750724063173, + 14072.642846353589, + 14034.594041364795, + 14305.269498848123, + 14296.064661548919, + 14288.80276487355, + 14283.416085284387, + 14279.821073714204, + 14277.91835556621, + 14277.592730713985, + 14278.713173501526, + 14281.13283274324, + 14284.689031723921, + 14289.203268198804, + 14294.481214393485, + 14300.312717003984, + 14306.471797196726, + 14312.716650608538, + 14318.78964734666, + 14324.417331988727, + 14329.310423582772, + 14333.16381564725, + 14335.656576171006, + 14336.451947613294, + 14335.19734690377, + 14331.52436544251, + 14325.04876909997, + 14315.370498217031, + 14302.07366760496, + 14284.72656654544, + 14262.881658790564, + 14236.075582562818, + 14203.829150555093, + 14165.647349930698, + 14450.113661369433, + 14439.930030171088, + 14431.742386327052, + 14425.48132386561, + 14421.061611285428, + 14418.38219155561, + 14417.32618211562, + 14417.76087487537, + 14419.537736215143, + 14422.492406985637, + 14426.444702507966, + 14431.198612573642, + 14436.54230144456, + 14442.248107853056, + 14448.072545001845, + 14453.756300564055, + 14459.02423668321, + 14463.585389973257, + 14467.132971518531, + 14469.344366873767, + 14469.881136064132, + 14468.38901358517, + 14464.497908402835, + 14457.821903953489, + 14447.959258143906, + 14434.492403351249, + 14416.987946423094, + 14394.996668677426, + 14368.053525902631, + 14335.677648357485, + 14297.372340771195, + 14595.503836169315, + 14584.339958022907, + 14575.22549387433, + 14568.089355317725, + 14562.844628417666, + 14559.388573709157, + 14557.602626197533, + 14557.352395358628, + 14558.487665138593, + 14560.842393954052, + 14564.23471469199, + 14568.466934709806, + 14573.325535835318, + 14578.581174366722, + 14583.988681072658, + 14589.287061192126, + 14594.199494434559, + 14598.433334979789, + 14601.680111478043, + 14603.615527049971, + 14603.899459286604, + 14602.175960249393, + 14598.073256470196, + 14591.20374895126, + 14581.164013165255, + 14567.534799055235, + 14549.881031034678, + 14527.751807987455, + 14500.680403267843, + 14468.184264700532, + 14429.765014580591, + 14741.433679733736, + 14729.28817734493, + 14719.245895510434, + 14711.234063390315, + 14705.164084615035, + 14700.93153728548, + 14698.416173972899, + 14697.481921718996, + 14697.976882035839, + 14699.733330905921, + 14702.567718782146, + 14706.2806705878, + 14710.65698571658, + 14715.465638032601, + 14720.459775870375, + 14725.376722034813, + 14729.937973801236, + 14733.849202915366, + 14736.800255593329, + 14738.46515252166, + 14738.502088857296, + 14736.55343422758, + 14732.24573273026, + 14725.189702933478, + 14714.980237875803, + 14701.196405066168, + 14683.401446483967, + 14661.142778578947, + 14633.951992271292, + 14601.344852951579, + 14562.821300480773, + 14806.48571837329, + 14793.903363373052, + 14783.448273325344, + 14775.046929380034, + 14768.609987157375, + 14764.032276748057, + 14761.192802713127, + 14759.954744084074, + 14760.165454362781, + 14761.65646152152, + 14764.24346800299, + 14767.726350720288, + 14771.88916105691, + 14776.500124866741, + 14781.311642474117, + 14786.060288673729, + 14790.4668127307, + 14794.236138380558, + 14797.057363829214, + 14798.603761752998, + 14798.532779298659, + 14796.486038083322, + 14792.089334194525, + 14784.95263819023, + 14774.670095098778, + 14760.820024418917, + 14742.964920119832, + 14720.651450641064, + 14693.410458892587, + 14660.75696225479, + 14622.190152578425, + 14887.896776976266, + 14874.76834880522, + 14863.797327657983, + 14854.909260260523, + 14848.013867809208, + 14843.00504597079, + 14839.760864882448, + 14838.143569151736, + 14837.999577856664, + 14839.159484545582, + 14841.438057237308, + 14844.634238421002, + 14848.531145056291, + 14852.896068573147, + 14857.480474871996, + 14862.02000432363, + 14866.23447176928, + 14869.827866520558, + 14872.48835235947, + 14873.888267538472, + 14873.684124780364, + 14871.516611278415, + 14867.010588696236, + 14859.775093167886, + 14849.403335297806, + 14835.472700160863, + 14817.544747302287, + 14795.165210737783, + 14767.863998953371, + 14735.155194905565, + 14696.537056021198, + 15034.886641238048, + 15020.774061499449, + 15008.873455167186, + 14999.108686533104, + 14991.38779435945, + 14985.602991878903, + 14981.630666794497, + 14979.331381279733, + 14978.549871978454, + 14979.115050004955, + 14980.84000094391, + 14983.52198485041, + 14986.94243624994, + 14990.866964138399, + 14995.045351982071, + 14999.211557717681, + 15003.083713752325, + 15006.364126963523, + 15008.739278699175, + 15009.879824777614, + 15009.440595487566, + 15007.060595588167, + 15002.363004308932, + 14994.955175349816, + 14984.428636881155, + 14970.359091543694, + 14952.306416448595, + 14929.814663177402, + 14902.41205778208, + 14869.611000785, + 14830.908067178929, + 15182.396714287808, + 15167.298832950899, + 15154.467871315841, + 15143.826011240359, + 15135.27960905262, + 15128.719195551179, + 15124.019476004982, + 15121.039330153391, + 15119.62181220619, + 15119.594150843524, + 15120.767749216002, + 15122.938184944565, + 15125.885210120634, + 15129.372751305957, + 15133.148909532769, + 15136.945960303636, + 15140.480353591578, + 15143.452713840004, + 15145.547839962703, + 15146.434705343912, + 15145.766457838234, + 15143.180419770708, + 15138.298087936751, + 15130.72513360221, + 15120.051402503294, + 15105.850914846673, + 15087.681865309378, + 15065.086623038871, + 15037.591731652983, + 15004.70790924001, + 14965.930048358588, + 15330.420366321858, + 15314.336109110394, + 15300.574097809289, + 15289.054831842184, + 15279.68298510313, + 15272.347405956576, + 15266.921117237369, + 15263.261316250751, + 15261.209374772412, + 15260.59083904838, + 15261.215429795167, + 15262.877042199614, + 15265.353745919023, + 15268.40778508104, + 15271.785578283796, + 15275.217718595766, + 15278.418973555834, + 15281.088285173319, + 15282.908769927904, + 15283.547718769722, + 15282.656597119267, + 15279.871044867472, + 15274.81087637565, + 15267.080080475538, + 15256.26682046925, + 15241.943434129342, + 15223.66643369873, + 15200.976505890789, + 15173.398511889236, + 15140.441487348256, + 15101.598642392384, + 15478.950895964095, + 15461.87926435635, + 15447.185584780513, + 15434.788674226074, + 15424.591524153018, + 15416.481300491652, + 15410.32934364273, + 15405.991168477412, + 15403.306464337245, + 15402.099095034191, + 15402.177098850614, + 15403.33268853928, + 15405.342251323362, + 15407.966348896436, + 15410.949717422483, + 15414.021267535907, + 15416.894084341458, + 15419.265427414373, + 15420.816730800207, + 15421.213603015014, + 15420.105827045158, + 15417.12736034749, + 15411.896334849187, + 15404.015056947906, + 15393.070007511646, + 15378.63184187884, + 15360.255389858337, + 15337.479655729368, + 15309.827818241569, + 15276.807230615, + 15237.909420540112, + 15627.981530265963, + 15609.921601494778, + 15594.295710789998, + 15581.020992707081, + 15569.998756271827, + 15561.114484980502, + 15554.237836799715, + 15549.22264416654, + 15545.906913988409, + 15544.112827643172, + 15543.646740979104, + 15544.299184314856, + 15545.844862439486, + 15548.042654612476, + 15550.635614563715, + 15553.350970493457, + 15555.900125072401, + 15557.978655441628, + 15559.266313212634, + 15559.427024467319, + 15558.108889757985, + 15554.944184107335, + 15549.549357008487, + 15541.525032424946, + 15530.456008790647, + 15515.911259009888, + 15497.443930457426, + 15474.591344978375, + 15446.874998888281, + 15413.800562973087, + 15374.857882489126, + 15777.505424706536, + 15758.456351759243, + 15741.897782825901, + 15727.745170027829, + 15715.898139956764, + 15706.240493674835, + 15698.640206714563, + 15692.949429078908, + 15689.004485241183, + 15686.625874145162, + 15685.618269204986, + 15685.770518305217, + 15686.855643800805, + 15688.630842517126, + 15690.837485749946, + 15693.201119265437, + 15695.431463300176, + 15697.222412561156, + 15698.25203622575, + 15698.18257794177, + 15696.660455827387, + 15693.316262471213, + 15687.764764932255, + 15679.604904739928, + 15668.419797894045, + 15653.776734864792, + 15635.227180592847, + 15612.306774489192, + 15584.535330435272, + 15551.416836782926, + 15512.439456354397, + 15927.515663192442, + 15907.476674810909, + 15889.985036303893, + 15874.954517358563, + 15862.283062132581, + 15851.85278925394, + 15843.529991821088, + 15837.16513740284, + 15832.59286803846, + 15829.63200023755, + 15828.0855249802, + 15827.74060771683, + 15828.368588368317, + 15829.72498132589, + 15831.549475451246, + 15833.56593407644, + 15835.482395003926, + 15836.991070506614, + 15837.768347327761, + 15837.474786681069, + 15835.755124250602, + 15832.238270190888, + 15826.537309126812, + 15818.249500153672, + 15806.95627683718, + 15792.22324721345, + 15773.600193788996, + 15750.62107354075, + 15722.804017916016, + 15689.651332832553, + 15650.649498678473, + 16078.005258057876, + 16056.975658738533, + 16038.550635067239, + 16022.642274297077, + 16009.14683815159, + 15997.944762824682, + 15988.900658980667, + 15981.863311754287, + 15976.665680750672, + 15973.124900045339, + 15971.042278184259, + 15970.203298183751, + 15970.377617530587, + 15971.319068181889, + 15972.765656565238, + 15974.439563578606, + 15976.047144590335, + 15977.278929439208, + 15977.809622434395, + 15977.298102355488, + 15975.387422452452, + 15971.704810445694, + 15965.861668525999, + 15957.45357335457, + 15946.060276063008, + 15931.24570225331, + 15912.557951997893, + 15889.529299839578, + 15861.676194791578, + 15828.49926033752, + 15789.483294431437, + 16228.967150064647, + 16206.946320058427, + 16187.5876713868, + 16170.801608868751, + 16156.482711793718, + 16144.509733921486, + 16134.745603482279, + 16127.037423176735, + 16121.216470175856, + 16117.098196121078, + 16114.482227124252, + 16113.152363767593, + 16112.876581103765, + 16113.407028655794, + 16114.48003041715, + 16115.816084851695, + 16117.119864893662, + 16118.080217947741, + 16118.370165888999, + 16117.6469050629, + 16115.55180628532, + 16111.710414842557, + 16105.732450491287, + 16097.211807458612, + 16085.726554442017, + 16070.83893460941, + 16052.095365599089, + 16029.026439519776, + 16001.146922950575, + 15967.955756941004, + 15928.936057010991, + 16380.394208402116, + 16357.381603714495, + 16337.089165961, + 16319.425617526555, + 16304.283855266447, + 16291.540950506394, + 16281.058149042492, + 16272.680871141263, + 16266.238711539634, + 16261.545439444912, + 16258.39899853485, + 16256.581506957558, + 16255.85925733159, + 16255.982716745873, + 16256.68652675977, + 16257.68950340302, + 16258.69463717578, + 16259.389093048607, + 16259.44421046248, + 16258.515503328743, + 16256.24266002919, + 16252.249543415974, + 16246.14419081171, + 16237.518814009363, + 16225.949799272317, + 16210.997707334393, + 16192.207273399752, + 16169.107407143036, + 16141.211192709226, + 16108.015888713757, + 16069.002928242422, + 16532.279230687265, + 16508.274383078216, + 16487.04806791589, + 16468.507325151026, + 16452.543369204872, + 16439.031588969006, + 16427.83154780542, + 16418.786983546554, + 16411.72580849519, + 16406.46010942457, + 16402.786147578314, + 16400.484358670437, + 16399.31935288538, + 16399.039914877976, + 16399.379003773465, + 16400.053753167507, + 16400.765471126113, + 16401.199640185783, + 16401.025917353338, + 16399.898134106064, + 16397.454296391603, + 16393.316584628057, + 16387.091353703887, + 16378.369132977969, + 16366.72462627959, + 16351.716711908444, + 16332.888442634623, + 16309.76704569862, + 16281.863922811342, + 16248.674650154093, + 16209.678978378586, + 16684.614942964596, + 16659.617459948677, + 16637.457254805013, + 16618.039685050302, + 16601.254282671624, + 16586.974754126502, + 16575.058980342794, + 16565.349016718836, + 16557.671093123314, + 16551.835613895353, + 16547.637157844478, + 16544.8544782506, + 16543.25050286404, + 16542.57233390553, + 16542.55124806621, + 16542.902696507623, + 16543.326304861697, + 16543.505873230784, + 16543.109376187655, + 16541.788962775445, + 16539.180956507727, + 16534.905855368448, + 16528.56833181201, + 16519.757232763157, + 16508.045579617086, + 16492.99056823937, + 16474.13356896601, + 16451.00012660338, + 16423.099960428288, + 16389.926964187936, + 16350.95920609991, + 16837.39399970625, + 16811.403564552504, + 16788.309532609586, + 16768.015578960083, + 16750.409553156976, + 16735.36347922365, + 16722.733555653915, + 16712.360155411945, + 16704.067825932365, + 16697.66528912016, + 16692.945441350777, + 16689.685353469977, + 16687.646270794034, + 16686.573613109533, + 16686.196974673527, + 16686.23012421344, + 16686.371004927103, + 16686.30173448277, + 16685.688605019077, + 16684.18208314509, + 16681.416809940252, + 16677.01160095441, + 16670.569446207854, + 16661.67751019125, + 16649.90713186565, + 16634.81382466255, + 16615.937276483808, + 16592.80134970175, + 16564.914081159026, + 16531.767682168767, + 16492.838538514436, + 16990.608983811922, + 16963.62535554392, + 16939.597635738355, + 16918.42781704365, + 16900.00206657871, + 16884.190725932807, + 16870.84831116564, + 16859.81351280729, + 16850.90919585826, + 16843.942399789456, + 16838.704338542175, + 16834.97040052812, + 16832.500148629424, + 16831.03732019858, + 16830.309827058536, + 16830.02975550261, + 16829.893366294524, + 16829.58109466844, + 16828.757550328854, + 16827.071517450768, + 16824.155954679474, + 16819.62799513077, + 16813.088946390788, + 16804.1242905161, + 16792.303684033686, + 16777.180957940895, + 16758.29411770551, + 16735.16534326571, + 16707.300989030093, + 16674.191583877644, + 16635.31183115774, + 17144.252406608866, + 17116.275420004764, + 17091.314227027644, + 17069.26913789187, + 17050.024637282233, + 17033.449384353902, + 17019.39621273244, + 17007.702130513866, + 16998.188320264537, + 16990.660139021278, + 16984.90711829127, + 16980.702964052132, + 16977.805556751842, + 16975.956951308846, + 16974.883377111946, + 16974.29523802037, + 16973.88711236373, + 16973.337752942065, + 16972.310087025813, + 16970.451216355814, + 16967.392417143303, + 16962.74914006993, + 16956.121010287752, + 16947.091827419223, + 16935.229565557216, + 16920.086373264967, + 16901.198573576177, + 16878.08666399489, + 16850.25531649563, + 16817.193377523232, + 16778.373867993014, + 17298.316707851973, + 17269.34627344439, + 17243.451897741394, + 17220.532208523207, + 17200.470008040535, + 17183.13227301443, + 17168.37015463636, + 17156.018978568227, + 17145.898244942295, + 17137.811628361258, + 17131.546977898226, + 17126.87631709668, + 17123.555843970527, + 17121.32593100407, + 17119.911125152023, + 17119.020147839517, + 17118.345894962036, + 17117.565436885543, + 17116.340018446335, + 17114.315058951175, + 17111.12015217717, + 17106.369066371884, + 17099.65974425326, + 17090.574303009642, + 17078.679034299792, + 17063.52440425287, + 17044.64505346843, + 17021.559797016445, + 16993.771624437304, + 16960.767699741766, + 16922.019361411014, + 17315.460626589982, + 17286.37980677281, + 17260.381765236747, + 17237.36494282475, + 17217.211954850256, + 17199.789591097033, + 17184.94881581929, + 17172.524767741645, + 17162.336760059105, + 17154.188280437076, + 17147.86699101141, + 17143.14472838829, + 17139.777503644385, + 17137.505502326694, + 17136.053084452684, + 17135.1287845102, + 17134.425311457453, + 17133.61954872314, + 17132.372554206282, + 17130.32956027637, + 17127.119973773235, + 17122.357376007178, + 17115.63952275885, + 17106.548344279356, + 17094.649945290155, + 17079.494604983145, + 17060.616777020612, + 17037.53508953525, + 17009.75234513017, + 16976.75552087888, + 16938.015768325276, + 40670.77022460436, + 40534.65010091285, + 40417.248284352245, + 40318.179071338935, + 40237.04093275972, + 40173.41651397176, + 40126.87263480265, + 40096.96028955038, + 40083.21464698335, + 40085.15505034036, + 40102.28501733063, + 40134.09224013374, + 40180.04858539974, + 40239.610094249016, + 40312.2169822724, + 40397.29363953114, + 40494.24863055686, + 40602.47469435158, + 40721.348744387746, + 40850.231868608214, + 40988.469329426225, + 41135.39056372544, + 41290.30918285989, + 41452.522972654115, + 41621.313893402876, + 41795.94807987153, + 41975.6758412957, + 42159.73166138151, + 42347.33419830541, + 42537.686284714306, + 42729.97492772549 + ], + "input_power": [ + 5145.020648399999, + 5150.390767031999, + 5158.648741727999, + 5169.794572488, + 5183.828259311998, + 5200.7498022, + 5220.559201151998, + 5243.256456167999, + 5268.841567247999, + 5297.314534391999, + 5328.675357599999, + 5362.924036871998, + 5400.060572207999, + 5440.084963607999, + 5482.997211072, + 5528.797314599999, + 5577.4852741919985, + 5629.061089847999, + 5683.524761567998, + 5740.876289352, + 5801.115673199998, + 5864.242913112, + 5930.258009087999, + 5999.160961128, + 6070.951769231999, + 6145.630433399999, + 6223.196953631998, + 6303.651329927999, + 6386.993562287998, + 6473.223650711999, + 6562.3415952, + 5613.1560768, + 5618.862079752, + 5627.455938768, + 5638.937653848, + 5653.307224992001, + 5670.5646522, + 5690.7099354719985, + 5713.7430748080005, + 5739.664070207999, + 5768.472921672, + 5800.169629200001, + 5834.754192792001, + 5872.226612448001, + 5912.586888168001, + 5955.835019952, + 6001.971007800002, + 6050.994851712, + 6102.906551688002, + 6157.706107728, + 6215.393519832002, + 6275.968787999999, + 6339.431912232001, + 6405.782892528, + 6475.021728887999, + 6547.148421312, + 6622.162969800001, + 6700.0653743520015, + 6780.855634967999, + 6864.533751648, + 6951.099724392001, + 7040.5535532, + 5622.240797553, + 5627.955197613, + 5636.557453737, + 5648.0475659250005, + 5662.425534177001, + 5679.691358493001, + 5699.845038873, + 5722.886575317, + 5748.815967825, + 5777.633216397, + 5809.338321033, + 5843.931281733, + 5881.4120984969995, + 5921.780771325, + 5965.037300216999, + 6011.181685173001, + 6060.213926192999, + 6112.134023277001, + 6166.941976425001, + 6224.637785637, + 6285.221450913, + 6348.6929722529985, + 6415.052349657, + 6484.299583124999, + 6556.434672657, + 6631.457618253001, + 6709.368419913001, + 6790.167077637001, + 6873.853591425, + 6960.4279612770015, + 7049.890187193, + 5631.197778551999, + 5636.920575720001, + 5645.531228952, + 5657.029738247999, + 5671.416103607999, + 5688.690325032, + 5708.8524025199995, + 5731.902336071999, + 5757.840125688001, + 5786.665771367998, + 5818.379273112002, + 5852.980630919999, + 5890.469844792, + 5930.846914727999, + 5974.111840727998, + 6020.264622792, + 6069.3052609199995, + 6121.233755112, + 6176.050105367999, + 6233.754311687999, + 6294.346374071999, + 6357.826292520001, + 6424.194067031999, + 6493.449697607998, + 6565.5931842479995, + 6640.624526952, + 6718.54372572, + 6799.3507805519985, + 6883.045691447999, + 6969.6284584079995, + 7059.099081431999, + 5640.027019796999, + 5645.758214072999, + 5654.3772644129995, + 5665.884170817, + 5680.278933284999, + 5697.561551817, + 5717.732026413, + 5740.790357072999, + 5766.736543796999, + 5795.570586584999, + 5827.292485436999, + 5861.902240353, + 5899.399851333001, + 5939.785318376999, + 5983.0586414849995, + 6029.219820656999, + 6078.2688558929985, + 6130.205747193, + 6185.030494556999, + 6242.743097985001, + 6303.343557476998, + 6366.831873033, + 6433.208044653, + 6502.472072336998, + 6574.623956085001, + 6649.663695897, + 6727.591291772999, + 6808.406743713, + 6892.110051716999, + 6978.701215785, + 7068.180235916999, + 5648.728521287999, + 5654.468112672, + 5663.095560119999, + 5674.610863632, + 5689.014023207998, + 5706.305038847999, + 5726.4839105519995, + 5749.550638319998, + 5775.505222151999, + 5804.347662047999, + 5836.077958007999, + 5870.696110031999, + 5908.20211812, + 5948.595982271999, + 5991.877702487998, + 6038.047278767999, + 6087.104711111998, + 6139.049999519999, + 6193.883143991998, + 6251.604144528, + 6312.213001127999, + 6375.709713791998, + 6442.094282519998, + 6511.366707312, + 6583.526988167999, + 6658.5751250879985, + 6736.511118071999, + 6817.334967119999, + 6901.046672231999, + 6987.646233408, + 7077.133650647998, + 5657.302283024999, + 5663.050271517, + 5671.686116073, + 5683.209816693, + 5697.621373377, + 5714.920786125, + 5735.108054936999, + 5758.183179813001, + 5784.146160752999, + 5812.996997757, + 5844.735690824999, + 5879.3622399569995, + 5916.876645153002, + 5957.278906412999, + 6000.569023737, + 6046.746997125001, + 6095.812826576998, + 6147.7665120930005, + 6202.608053673, + 6260.337451317, + 6320.954705024999, + 6384.459814797, + 6450.852780633001, + 6520.133602533, + 6592.302280496999, + 6667.358814525, + 6745.303204616998, + 6826.135450772999, + 6909.855552993, + 6996.463511277, + 7085.959325624999, + 5665.748305008, + 5671.504690607999, + 5680.148932272, + 5691.68103, + 5706.100983791999, + 5723.408793648, + 5743.604459568, + 5766.687981552, + 5792.659359599999, + 5821.5185937119995, + 5853.265683888, + 5887.900630127999, + 5925.4234324320005, + 5965.8340908, + 6009.132605232, + 6055.318975728, + 6104.393202287999, + 6156.355284912, + 6211.205223599999, + 6268.943018352002, + 6329.568669167999, + 6393.082176048, + 6459.483538992, + 6528.772758, + 6600.949833072, + 6676.014764207999, + 6753.967551408001, + 6834.808194671999, + 6918.536694, + 7005.153049392, + 7094.657260848001, + 5674.066587237, + 5679.831369944998, + 5688.4840087170005, + 5700.024503553001, + 5714.452854452999, + 5731.769061416999, + 5751.973124444999, + 5775.065043537001, + 5801.044818692999, + 5829.9124499129985, + 5861.667937196999, + 5896.311280544998, + 5933.842479956999, + 5974.261535432999, + 6017.5684469729995, + 6063.763214576999, + 6112.845838244998, + 6164.816317977, + 6219.674653772998, + 6277.420845633002, + 6338.054893556999, + 6401.576797545001, + 6467.986557597, + 6537.284173712999, + 6609.469645893001, + 6684.542974137, + 6762.504158445, + 6843.353198817, + 6927.090095253, + 7013.714847753001, + 7103.227456316999, + 5682.257129711999, + 5688.030309527999, + 5696.691345408, + 5708.240237352, + 5722.67698536, + 5740.0015894319995, + 5760.214049567999, + 5783.314365768, + 5809.302538032, + 5838.178566359999, + 5869.942450752, + 5904.594191208, + 5942.133787727999, + 5982.561240312001, + 6025.876548959999, + 6072.079713672, + 6121.170734447998, + 6173.149611288, + 6228.016344191999, + 6285.77093316, + 6346.413378191999, + 6409.943679288, + 6476.361836448001, + 6545.6678496720015, + 6617.86171896, + 6692.943444311999, + 6770.913025728, + 6851.770463208, + 6935.515756751999, + 7022.148906359999, + 7111.669912031999, + 5690.319932432999, + 5696.101509356999, + 5704.770942345001, + 5716.328231397, + 5730.773376512999, + 5748.1063776930005, + 5768.327234936998, + 5791.435948244999, + 5817.432517617, + 5846.316943052998, + 5878.089224552999, + 5912.749362117, + 5950.297355745001, + 5990.733205436999, + 6034.056911192999, + 6080.2684730129995, + 6129.367890896998, + 6181.355164845, + 6236.230294856999, + 6293.993280933, + 6354.644123073, + 6418.182821276999, + 6484.609375544998, + 6553.923785876999, + 6626.126052273, + 6701.216174732999, + 6779.194153257, + 6860.059987844999, + 6943.813678497, + 7030.455225213, + 7119.984627993, + 5698.254995400001, + 5704.0449694320005, + 5712.722799528001, + 5724.288485688002, + 5738.742027912, + 5756.0834262, + 5776.312680552, + 5799.429790968001, + 5825.434757448001, + 5854.327579991999, + 5886.1082586, + 5920.776793271999, + 5958.333184008002, + 5998.777430808, + 6042.109533672, + 6088.329492600001, + 6137.437307591999, + 6189.432978648002, + 6244.316505767999, + 6302.087888952001, + 6362.7471282, + 6426.294223512002, + 6492.729174888, + 6562.051982328001, + 6634.262645832, + 6709.3611654, + 6787.347541032, + 6868.221772728001, + 6951.983860488001, + 7038.633804312, + 7128.171604200001, + 5706.062318613, + 5711.860689752999, + 5720.546916957001, + 5732.121000225002, + 5746.582939556999, + 5763.932734952999, + 5784.170386413, + 5807.295893937, + 5833.309257525, + 5862.210477176997, + 5893.999552892999, + 5928.676484673, + 5966.241272517001, + 6006.693916424999, + 6050.0344163969985, + 6096.262772433, + 6145.378984532998, + 6197.383052697, + 6252.2749769249995, + 6310.054757217001, + 6370.722393573, + 6434.277885992999, + 6500.721234477, + 6570.052439024999, + 6642.2714996370005, + 6717.378416313001, + 6795.373189052999, + 6876.255817856999, + 6960.026302724999, + 7046.684643657, + 7136.230840653, + 5713.741902071999, + 5719.5486703199995, + 5728.2432946320005, + 5739.825775008001, + 5754.296111447999, + 5771.654303952, + 5791.900352519998, + 5815.034257152, + 5841.056017847999, + 5869.965634607998, + 5901.763107431998, + 5936.448436319999, + 5974.021621271999, + 6014.482662288, + 6057.831559368, + 6104.068312512001, + 6153.1929217199995, + 6205.205386992, + 6260.105708328, + 6317.893885727999, + 6378.569919191999, + 6442.13380872, + 6508.585554312001, + 6577.925155968, + 6650.152613688, + 6725.267927472, + 6803.27109732, + 6884.162123231999, + 6967.941005208, + 7054.607743248, + 7144.162337352, + 5721.2937457769995, + 5727.1089111329975, + 5735.811932553001, + 5747.402810037, + 5761.881543584998, + 5779.248133196999, + 5799.502578872998, + 5822.644880612999, + 5848.675038416998, + 5877.5930522849985, + 5909.398922216999, + 5944.092648212999, + 5981.674230272999, + 6022.143668396998, + 6065.500962585, + 6111.746112837, + 6160.879119152998, + 6212.899981533001, + 6267.8086999769985, + 6325.605274484999, + 6386.289705056999, + 6449.861991692999, + 6516.322134393, + 6585.670133156998, + 6657.905987985, + 6733.029698877, + 6811.041265833, + 6891.940688852998, + 6975.727967936999, + 7062.403103085, + 7151.966094296999, + 5728.717849727999, + 5734.5414121919985, + 5743.25283072, + 5754.8521053119985, + 5769.339235967999, + 5786.714222688, + 5806.977065471999, + 5830.12776432, + 5856.166319231998, + 5885.092730207998, + 5916.906997247999, + 5951.609120351999, + 5989.1990995199985, + 6029.6769347519985, + 6073.042626047998, + 6119.296173407999, + 6168.437576831998, + 6220.46683632, + 6275.383951871999, + 6333.188923488, + 6393.881751167999, + 6457.4624349119995, + 6523.9309747199995, + 6593.287370591999, + 6665.531622528, + 6740.663730527998, + 6818.683694592, + 6899.5915147199985, + 6983.387190911999, + 7070.070723168, + 7159.642111487999, + 5731.977584692364, + 5737.804880510581, + 5746.520032392799, + 5758.1230403390155, + 5772.613904349231, + 5789.992624423448, + 5810.259200561664, + 5833.413632763882, + 5859.455921030099, + 5888.386065360315, + 5920.204065754532, + 5954.909922212749, + 5992.503634734968, + 6032.985203321182, + 6076.354627971399, + 6122.611908685617, + 6171.757045463831, + 6223.7900383060505, + 6278.710887212265, + 6336.519592182483, + 6397.2161532167, + 6460.800570314917, + 6527.272843477133, + 6596.632972703351, + 6668.880957993568, + 6744.0167993477835, + 6822.040496766002, + 6902.952050248218, + 6986.751459794435, + 7073.438725404652, + 7163.013847078868, + 5736.014213925, + 5741.846173497001, + 5750.565989133, + 5762.173660832998, + 5776.669188596999, + 5794.052572424999, + 5814.3238123169995, + 5837.482908272998, + 5863.529860293, + 5892.464668376999, + 5924.287332525, + 5958.997852736999, + 5996.596229013001, + 6037.082461353, + 6080.456549757, + 6126.718494225, + 6175.868294756998, + 6227.905951353, + 6282.831464012998, + 6340.644832737001, + 6401.346057524998, + 6464.935138377002, + 6531.412075293, + 6600.776868273002, + 6673.029517317, + 6748.170022425, + 6826.198383596999, + 6907.114600833, + 6990.9186741329995, + 7077.610603497, + 7167.190388925, + 5743.182838368, + 5749.023195047999, + 5757.751407792, + 5769.3674766, + 5783.871401471999, + 5801.263182407999, + 5821.542819408, + 5844.710312472, + 5870.7656616, + 5899.708866792, + 5931.539928048001, + 5966.258845367999, + 6003.865618752002, + 6044.3602482000015, + 6087.742733711999, + 6134.013075288, + 6183.171272928, + 6235.217326632001, + 6290.1512364, + 6347.973002231999, + 6408.682624127999, + 6472.280102088, + 6538.765436111999, + 6608.1386262, + 6680.399672351999, + 6755.548574568001, + 6833.585332848, + 6914.509947192, + 6998.3224175999985, + 7085.022744072, + 7174.610926607999, + 5750.223723056999, + 5756.072476844999, + 5764.8090866970015, + 5776.433552613, + 5790.945874593, + 5808.346052637, + 5828.634086744999, + 5851.809976917, + 5877.873723152999, + 5906.825325452999, + 5938.664783817, + 5973.392098245, + 6011.007268737001, + 6051.510295292999, + 6094.901177913, + 6141.179916597, + 6190.346511344998, + 6242.400962157, + 6297.343269032999, + 6355.173431973, + 6415.891450976999, + 6479.497326045, + 6545.991057177001, + 6615.372644372999, + 6687.642087633, + 6762.799386956999, + 6840.844542345, + 6921.777553796999, + 7005.598421312999, + 7092.3071448929995, + 7181.903724536999, + 5757.136867991999, + 5762.994018887999, + 5771.739025847999, + 5783.371888871999, + 5797.892607959999, + 5815.301183111999, + 5835.5976143279995, + 5858.781901607999, + 5884.854044952, + 5913.814044359999, + 5945.661899831999, + 5980.397611367999, + 6018.021178968001, + 6058.532602631999, + 6101.931882359999, + 6148.219018151999, + 6197.394010007998, + 6249.456857928001, + 6304.4075619119985, + 6362.24612196, + 6422.972538071999, + 6486.586810247999, + 6553.088938487999, + 6622.478922791999, + 6694.7567631599995, + 6769.9224595919995, + 6847.976012087999, + 6928.917420647999, + 7012.746685272, + 7099.463805959999, + 7189.068782712, + 5763.922273173, + 5769.787821176999, + 5778.541225245001, + 5790.1824853769995, + 5804.711601573001, + 5822.128573833, + 5842.433402156999, + 5865.626086545, + 5891.706626996999, + 5920.675023512999, + 5952.531276092999, + 5987.275384736999, + 6024.9073494449995, + 6065.427170217, + 6108.834847053, + 6155.130379953001, + 6204.313768916999, + 6256.3850139450005, + 6311.344115037, + 6369.191072193, + 6429.925885412999, + 6493.548554697, + 6560.059080045001, + 6629.457461457001, + 6701.743698933001, + 6776.917792473001, + 6854.979742077001, + 6935.9295477450005, + 7019.7672094770005, + 7106.492727273, + 7196.106101133, + 5770.579938599999, + 5776.453883712, + 5785.215684887999, + 5796.865342128, + 5811.402855431998, + 5828.8282248000005, + 5849.141450231998, + 5872.342531728, + 5898.431469287999, + 5927.4082629119985, + 5959.2729125999995, + 5994.025418352001, + 6031.665780167999, + 6072.193998047999, + 6115.6100719920005, + 6161.914002000001, + 6211.105788071999, + 6263.185430208001, + 6318.152928408, + 6376.008282671999, + 6436.751493, + 6500.382559391999, + 6566.901481848, + 6636.308260367999, + 6708.6028949520005, + 6783.785385599999, + 6861.855732312, + 6942.813935087999, + 7026.6599939279995, + 7113.393908832, + 7203.0156798, + 5777.109864273, + 5782.992206493001, + 5791.7624047770005, + 5803.420459124999, + 5817.966369536999, + 5835.400136012999, + 5855.721758552999, + 5878.931237157, + 5905.028571825, + 5934.013762557, + 5965.886809353, + 6000.647712213, + 6038.2964711370005, + 6078.833086125, + 6122.257557177, + 6168.569884293, + 6217.770067472999, + 6269.858106717001, + 6324.834002024998, + 6382.697753397, + 6443.4493608329985, + 6507.088824332999, + 6573.616143896999, + 6643.031319524999, + 6715.334351217001, + 6790.525238972999, + 6868.603982793, + 6949.570582677002, + 7033.425038625, + 7120.167350637001, + 7209.797518712999, + 5783.512050192001, + 5789.402789519999, + 5798.181384912001, + 5809.847836368, + 5824.402143887999, + 5841.844307472, + 5862.174327119998, + 5885.392202831999, + 5911.497934608, + 5940.491522447999, + 5972.372966351998, + 6007.142266319999, + 6044.799422352, + 6085.344434447999, + 6128.777302608, + 6175.098026832, + 6224.306607119998, + 6276.403043472, + 6331.387335887999, + 6389.259484368, + 6450.019488911998, + 6513.667349519999, + 6580.203066192001, + 6649.626638927999, + 6721.9380677280005, + 6797.137352591998, + 6875.224493519999, + 6956.199490511999, + 7040.062343567999, + 7126.8130526879995, + 7216.451617871999, + 5789.786496356999, + 5795.685632792999, + 5804.4726252929995, + 5816.147473856999, + 5830.710178484999, + 5848.160739176999, + 5868.499155932998, + 5891.725428752999, + 5917.839557636999, + 5946.841542584998, + 5978.731383596999, + 6013.509080672998, + 6051.174633813001, + 6091.7280430169985, + 6135.169308284999, + 6181.498429616999, + 6230.715407013, + 6282.820240473, + 6337.812929996999, + 6395.693475585, + 6456.4618772369995, + 6520.118134952999, + 6586.662248732999, + 6656.094218576998, + 6728.414044485001, + 6803.6217264570005, + 6881.717264492999, + 6962.7006585929985, + 7046.571908757, + 7133.331014985, + 7222.977977277, + 5795.933202768, + 5801.840736312, + 5810.636125920001, + 5822.319371592, + 5836.8904733280015, + 5854.349431127999, + 5874.696244991998, + 5897.930914920002, + 5924.053440912, + 5953.063822967999, + 5984.962061088, + 6019.748155271999, + 6057.4221055200005, + 6097.983911832001, + 6141.433574208, + 6187.771092648, + 6236.996467151999, + 6289.1096977199995, + 6344.110784352001, + 6401.999727048001, + 6462.776525808001, + 6526.441180632001, + 6592.9936915200005, + 6662.434058472, + 6734.762281488001, + 6809.978360567999, + 6888.082295711999, + 6969.074086919999, + 7052.953734192, + 7139.7212375280005, + 7229.376596927999, + 5801.952169425, + 5807.868100077, + 5816.671886793, + 5828.363529572999, + 5842.943028417, + 5860.410383325001, + 5880.765594296999, + 5904.008661333, + 5930.139584432999, + 5959.158363597, + 5991.064998825, + 6025.859490117, + 6063.541837472999, + 6104.112040893, + 6147.570100377001, + 6193.916015925001, + 6243.149787536999, + 6295.271415213, + 6350.280898952999, + 6408.178238757001, + 6468.9634346249995, + 6532.636486557, + 6599.197394552999, + 6668.646158612999, + 6740.9827787369995, + 6816.207254925001, + 6894.319587177, + 6975.319775493001, + 7059.2078198730005, + 7145.983720317, + 7235.647476825, + 5807.843396328, + 5813.767724087998, + 5822.5799079120015, + 5834.2799478, + 5848.867843752, + 5866.343595768001, + 5886.707203847999, + 5909.958667992001, + 5936.097988199999, + 5965.125164471999, + 5997.040196807999, + 6031.843085207999, + 6069.533829671999, + 6110.1124302, + 6153.578886791999, + 6199.933199448, + 6249.175368167998, + 6301.305392952, + 6356.3232738, + 6414.229010712, + 6475.0226036879985, + 6538.704052728, + 6605.273357832001, + 6674.730519, + 6747.075536232, + 6822.308409527998, + 6900.429138887999, + 6981.437724312, + 7065.3341658, + 7152.118463352, + 7241.790616967998, + 5813.6068834769985, + 5819.539608344999, + 5828.360189277, + 5840.068626272999, + 5854.664919332999, + 5872.149068457001, + 5892.521073644998, + 5915.7809348969995, + 5941.928652212997, + 5970.9642255929975, + 6002.887655036999, + 6037.6989405449995, + 6075.398082116999, + 6115.985079753, + 6159.459933452999, + 6205.822643217001, + 6255.073209044999, + 6307.211630937, + 6362.237908892998, + 6420.152042913, + 6480.954032997, + 6544.643879145, + 6611.221581356999, + 6680.687139632997, + 6753.040553972998, + 6828.281824376998, + 6906.410950845, + 6987.427933376999, + 7071.332771973, + 7158.125466633001, + 7247.806017356998, + 5819.242630871999, + 5825.183752848, + 5834.012730888, + 5845.729564992001, + 5860.334255160001, + 5877.826801392, + 5898.207203688, + 5921.475462047999, + 5947.631576471999, + 5976.675546959998, + 6008.607373512001, + 6043.427056127999, + 6081.134594807999, + 6121.729989552, + 6165.21324036, + 6211.584347232, + 6260.843310167998, + 6312.990129168, + 6368.024804231998, + 6425.94733536, + 6486.757722552, + 6550.455965808, + 6617.042065127998, + 6686.516020511999, + 6758.877831960001, + 6834.127499472, + 6912.2650230479985, + 6993.2904026880005, + 7077.203638391999, + 7164.004730160001, + 7253.693677991999, + 5824.750638513002, + 5830.700157596999, + 5839.537532745002, + 5851.262763957001, + 5865.8758512330005, + 5883.376794573, + 5903.765593977, + 5927.0422494449995, + 5953.206760976999, + 5982.259128573, + 6014.199352233, + 6049.027431957, + 6086.743367745002, + 6127.347159596999, + 6170.8388075130015, + 6217.218311493, + 6266.485671536999, + 6318.640887645002, + 6373.683959816999, + 6431.614888053002, + 6492.433672353, + 6556.140312717001, + 6622.734809145, + 6692.217161636999, + 6764.587370193, + 6839.845434813, + 6917.991355497, + 6999.0251322449985, + 7082.946765056999, + 7169.756253933, + 7259.4535988729995, + 5830.1309064, + 5836.088822592, + 5844.9345948479995, + 5856.668223168, + 5871.289707552, + 5888.799048, + 5909.196244511999, + 5932.481297088, + 5958.6542057279985, + 5987.714970431999, + 6019.663591199999, + 6054.500068032001, + 6092.224400928, + 6132.836589888, + 6176.336634912001, + 6222.7245360000015, + 6272.000293151999, + 6324.163906368, + 6379.215375648, + 6437.1547009920005, + 6497.9818824, + 6561.696919872001, + 6628.299813408001, + 6697.790563008, + 6770.1691686720005, + 6845.4356304, + 6923.5899481920005, + 7004.632122048, + 7088.562151968001, + 7175.380037952001, + 7265.08578, + 5835.383434533001, + 5841.349747832999, + 5850.203917197, + 5861.945942625, + 5876.575824117, + 5894.093561673, + 5914.499155292999, + 5937.792604977, + 5963.973910724999, + 5993.043072536999, + 6025.000090412999, + 6059.844964353, + 6097.577694357, + 6138.198280425, + 6181.706722556999, + 6228.103020753001, + 6277.387175012999, + 6329.559185337001, + 6384.619051724999, + 6442.566774177, + 6503.402352693, + 6567.125787272999, + 6633.7370779170005, + 6703.236224624999, + 6775.623227397, + 6850.898086232999, + 6929.0608011330005, + 7010.111372097, + 7094.049799125001, + 7180.876082217001, + 7270.590221373, + 5835.959164059952, + 5841.926410372697, + 5850.781512749446, + 5862.524471190191, + 5877.155285694938, + 5894.673956263684, + 5915.080482896429, + 5938.374865593177, + 5964.557104353922, + 5993.627199178669, + 6025.585150067417, + 6060.430957020162, + 6098.16462003691, + 6138.786139117655, + 6182.295514262401, + 6228.6927454711495, + 6277.9778327438935, + 6330.150776080643, + 6385.211575481387, + 6443.160230946134, + 6503.99674247488, + 6567.721110067627, + 6634.333333724373, + 6703.833413445119, + 6776.221349229866, + 6851.497141078612, + 6929.660788991359, + 7010.712292968103, + 7094.651653008852, + 7181.478869113599, + 7271.193941282344, + 4888.079122800001, + 4895.4645473519995, + 4905.737827968001, + 4918.8989646479995, + 4934.947957392, + 4953.8848062, + 4975.709511072, + 5000.422072008, + 5028.022489008, + 5058.510762071999, + 5091.8868912, + 5128.150876391999, + 5167.302717647999, + 5209.342414967999, + 5254.2699683519995, + 5302.085377799999, + 5352.788643312, + 5406.379764887999, + 5462.858742527999, + 5522.225576231999, + 5584.480266, + 5649.6228118320005, + 5717.653213727999, + 5788.571471688, + 5862.377585711999, + 5939.0715558, + 6018.653381951999, + 6101.1230641679995, + 6186.480602448, + 6274.725996792, + 6365.8592472 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 3.4888619387061306, + "volume": 0.757082 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/GE.json b/examples/GE.json new file mode 100644 index 0000000..65b068c --- /dev/null +++ b/examples/GE.json @@ -0,0 +1,225 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4200.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 15.555555555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 2.2222222222222223, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 281.4833333333333, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1382.5842434713602, + 728.0675539200008, + 1417.7580390399996, + 779.6012799999995, + 1786.9956567040003, + 1334.034688000001, + 2919.3530530393605, + 3147.0627499200027 + ], + "input_power": [ + 345.28006400000004, + 577.2815999999998, + 351.97567999999984, + 581.7919999999997, + 418.9318400000001, + 626.896, + 596.3656640000002, + 746.4216000000002 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 291.4833333333333, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.888888888888889, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4200.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8888888888888888, + "volume": 0.172 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/GE2014STDMode.json b/examples/GE2014STDMode.json new file mode 100644 index 0000000..69fe95d --- /dev/null +++ b/examples/GE2014STDMode.json @@ -0,0 +1,210 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 10.9225, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2117222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 994.8304754323835, + 669.1590092466967, + 1175.9598211818447, + 800.6775706256853, + 1409.3742389324075, + 1025.7927775601206, + 1752.9687687620053, + 1709.3783029367285 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8055555555555556, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/GE2014STDMode_80.json b/examples/GE2014STDMode_80.json new file mode 100644 index 0000000..3c4fbeb --- /dev/null +++ b/examples/GE2014STDMode_80.json @@ -0,0 +1,210 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 10.9225, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2117222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 994.8304754323835, + 669.1590092466967, + 1175.9598211818447, + 800.6775706256853, + 1409.3742389324075, + 1025.7927775601206, + 1489.583861922882, + 3418.060996784348 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 92.08580840000008, + 976.4958435999995 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.7777777777777777, + "volume": 0.285419914 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/GE502014.json b/examples/GE502014.json new file mode 100644 index 0000000..b05e3e5 --- /dev/null +++ b/examples/GE502014.json @@ -0,0 +1,241 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 320.16988888888886, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 299.81666666666666, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 994.8304754323835, + 669.1590092466967, + 1175.9598211818447, + 800.6775706256853, + 1409.3742389324075, + 1025.7927775601206, + 1752.9687687620053, + 1709.3783029367285 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8055555555555556, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/GE802014.json b/examples/GE802014.json new file mode 100644 index 0000000..0299c47 --- /dev/null +++ b/examples/GE802014.json @@ -0,0 +1,208 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 303.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 994.8304754323835, + 669.1590092466967, + 1175.9598211818447, + 800.6775706256853, + 1409.3742389324075, + 1025.7927775601206, + 1752.9687687620053, + 1709.3783029367285 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.147111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.7777777777777777, + "volume": 0.285419914 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Generic1.json b/examples/Generic1.json new file mode 100644 index 0000000..9886ec0 --- /dev/null +++ b/examples/Generic1.json @@ -0,0 +1,244 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 316.4833333333333, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 44.44444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1240.1588749102618, + 640.7120410430998, + 1370.298741006432, + 748.8857047204805, + 1794.5752718750985, + 1144.194569898241, + 2936.789425828358, + 2649.6048185085992 + ], + "input_power": [ + 544.2380247058824, + 791.992942352941, + 539.57496, + 807.5301599999997, + 523.72054, + 860.3566999999998, + 474.29205411764696, + 1025.0512070588236 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 291.4833333333333, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.555555555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.1892705 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Generic2.json b/examples/Generic2.json new file mode 100644 index 0000000..79b176b --- /dev/null +++ b/examples/Generic2.json @@ -0,0 +1,244 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 44.44444444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 970.5815472933544, + 335.027047362426, + 1148.982167246432, + 454.0546759204806, + 1426.5035130750978, + 680.106119898241, + 2083.506843927181, + 1576.4530048089441 + ], + "input_power": [ + 348.9010894117647, + 576.4557247058822, + 339.57496000000003, + 607.5301599999998, + 323.72053999999997, + 660.3566999999999, + 274.292054117647, + 825.0512070588236 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 288.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.555555555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.0833333333333335, + "volume": 0.1892705 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Generic3.json b/examples/Generic3.json new file mode 100644 index 0000000..fb840c3 --- /dev/null +++ b/examples/Generic3.json @@ -0,0 +1,225 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 33.333333333333336, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 815.6414970229765, + 200.8381358833044, + 1036.782009486432, + 338.71446312048096, + 1249.8348062750974, + 521.079729898241, + 1657.8150967803294, + 1267.665455898216 + ], + "input_power": [ + 253.56415411764704, + 460.91850705882354, + 239.57495999999998, + 507.53015999999985, + 223.72053999999994, + 560.3566999999999, + 174.292054117647, + 725.0512070588234 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 285.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 22.22222222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.555555555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.3888888888888888, + "volume": 0.1892705 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/GenericUEF217.json b/examples/GenericUEF217.json new file mode 100644 index 0000000..291d7be --- /dev/null +++ b/examples/GenericUEF217.json @@ -0,0 +1,227 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 10.555555555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 302.59444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 15.555555555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 373.15, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 373.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1160.575832218223, + 570.1279412014787, + 1175.9598211818447, + 207.01305585570836, + 1214.1043839120757, + -1288.60737407244, + 1192.5515793278037, + -8540.78398524378 + ], + "input_power": [ + 254.8386503529412, + 571.5113691764708, + 249.136028, + 598.2904880000001, + 229.747112, + 689.3394920000002, + 169.2993150588235, + 973.1981515294119 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.111111111111111, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.361111111111111, + "volume": 0.221446485 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/LG_APHWC50.json b/examples/LG_APHWC50.json new file mode 100644 index 0000000..373ffe1 --- /dev/null +++ b/examples/LG_APHWC50.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 5000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 21.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 5000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 1.0, + 0.9764705882352941, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 268.15, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 677.7718971428568, + 584.2404685714286, + 658.5299999999999, + 1194.9779999999998, + 407.39599999999984, + 1352.164, + 503.4039999999997, + 2083.8199999999993, + 544.5794545454543, + 2702.8572727272726 + ], + "input_power": [ + 291.8914285714285, + 560.6914285714284, + 162.59999999999997, + 431.39999999999986, + 78.79999999999995, + 347.59999999999985, + 67.29999999999997, + 336.09999999999985, + 56.8454545454545, + 325.64545454545436 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 29.388888888888886, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.161111111111111, + "volume": 0.19986964799999998 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 324.81666666666666, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/LG_APHWC80.json b/examples/LG_APHWC80.json new file mode 100644 index 0000000..e996e18 --- /dev/null +++ b/examples/LG_APHWC80.json @@ -0,0 +1,195 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 5000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 21.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 5000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 1.0, + 0.9764705882352941, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 268.15, + 283.15, + 292.8722222222222, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 677.7718971428568, + 584.2404685714286, + 658.5299999999999, + 1194.9779999999998, + 407.39599999999984, + 1352.164, + 503.4039999999997, + 2083.8199999999993, + 544.5794545454543, + 2702.8572727272726 + ], + "input_power": [ + 291.8914285714285, + 560.6914285714284, + 162.59999999999997, + 431.39999999999986, + 78.79999999999995, + 347.59999999999985, + 67.29999999999997, + 336.09999999999985, + 56.8454545454545, + 325.64545454545436 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 29.388888888888886, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 3.0083333333333333, + "volume": 0.27254952000000005 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 324.81666666666666, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/NyleC125A_C_MP.json b/examples/NyleC125A_C_MP.json new file mode 100644 index 0000000..ea9ea6a --- /dev/null +++ b/examples/NyleC125A_C_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0017665246666666668, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 27130.0, + 26750.000002039997, + 26229.99999975, + 25840.00000494, + 25630.00000262, + 25099.999991970002, + 37030.00000037, + 36040.0000014, + 34980.00000488, + 33990.00000295, + 32839.9999975, + 31880.000001689998, + 50009.999997750005, + 47860.000000579996, + 45969.999998190004, + 44060.0000064, + 41599.99999584, + 39570.00000765, + 57119.999997060004, + 54619.999998, + 51980.00000046, + 48499.99999849, + 43800.000006199996, + 40700.0000064 + ], + "input_power": [ + 6400.0, + 7720.0, + 9650.0, + 12540.0, + 20540.0, + 24690.0, + 6890.0, + 8280.0, + 10130.0, + 12850.0, + 19750.0, + 24390.0, + 7690.0, + 9070.0, + 10870.0, + 13440.0, + 19680.0, + 22350.0, + 8580.0, + 9500.0, + 11270.0, + 13690.0, + 19720.0, + 22400.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC125A_C_SP.json b/examples/NyleC125A_C_SP.json new file mode 100644 index 0000000..91ed31e --- /dev/null +++ b/examples/NyleC125A_C_SP.json @@ -0,0 +1,7285 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 333.15, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 24740.851323089406, + 24655.08544404951, + 24580.88871693581, + 24517.001490014838, + 24462.13767529189, + 24414.984748510942, + 24374.203749154796, + 24338.429280444925, + 24306.269509341568, + 24276.306166543687, + 24247.094546489014, + 24217.163507354006, + 24185.015471053848, + 24149.126423242484, + 24107.945913312586, + 24059.89705439557, + 24003.37652336159, + 23936.754560819558, + 23858.374971117086, + 23766.55512234056, + 23659.585946315106, + 23535.731938604556, + 23393.23115851152, + 23230.29522907735, + 23045.1093370821, + 22835.832233044584, + 22600.596231222382, + 22337.507209611766, + 22044.64460994778, + 21720.0614377042, + 21361.784262093548, + 20967.813216067043, + 20536.121996314752, + 20064.657863265333, + 19551.341641086332, + 18994.067717683916, + 18390.704044703067, + 24891.47998387914, + 24816.495478466415, + 24752.32677341377, + 24697.792959075698, + 24651.68668954556, + 24612.77418265539, + 24579.79521997596, + 24551.46314681681, + 24526.46487222621, + 24503.460868991144, + 24481.08517363738, + 24457.945386429397, + 24432.62267137042, + 24403.671756202413, + 24369.620932406087, + 24328.97205520089, + 24280.200543545012, + 24221.75538013538, + 24152.059111407634, + 24069.507847536217, + 23972.47126243425, + 23859.292593753624, + 23728.288642884974, + 23577.74977495766, + 23405.939918839802, + 23211.096567138226, + 22991.43077619854, + 22745.12716610506, + 22470.34392068082, + 22165.212787487693, + 21827.839077826175, + 21456.30166673557, + 21048.652992993906, + 20602.91905911793, + 20117.099431363185, + 19589.16723972389, + 19017.06917793305, + 25277.281100594348, + 25230.45866956989, + 25193.521701057238, + 25165.43102116936, + 25145.121019758062, + 25131.49965041383, + 25123.448430465894, + 25119.822440982265, + 25119.450326769627, + 25121.13429637347, + 25123.65012207798, + 25125.7471399061, + 25126.14824961951, + 25123.549914718646, + 25116.622162442658, + 25104.008583769446, + 25084.326333415658, + 25056.166129836674, + 25018.092255226613, + 24968.64255551833, + 24906.328440383426, + 24829.634883232273, + 24737.020421213918, + 24626.917155216193, + 24497.73074986565, + 24347.840433527606, + 24175.59899830611, + 23979.332800043914, + 23757.341758322556, + 23507.899356462327, + 23229.252641522166, + 22919.622224299867, + 22577.20227933189, + 22200.160544893442, + 21786.638322998537, + 21334.750479399823, + 20842.58544358876, + 24991.602087974483, + 24904.03947887785, + 24828.312011614773, + 24763.14725200406, + 24707.246329603313, + 24659.283937708846, + 24617.90833335576, + 24581.74133731783, + 24549.378334107612, + 24519.388271976393, + 24490.3136629142, + 24460.6705826498, + 24428.9486706507, + 24393.61113012315, + 24353.094728012136, + 24305.809795001373, + 24250.140225513354, + 24184.44347770927, + 24107.05057348905, + 24016.266098491415, + 23910.36820209377, + 23787.608597412294, + 23646.21256130189, + 23484.378934356202, + 23300.280120907617, + 23092.06208902726, + 22857.84437052501, + 22595.720060949472, + 22303.755819587965, + 21979.991869466623, + 21622.44199735024, + 21229.09355374239, + 20797.90745288539, + 20326.818172760268, + 19813.733755086825, + 19256.53580532359, + 18653.079492667835, + 25139.54975332315, + 25062.723616118088, + 24996.961317175595, + 24941.06973687764, + 24893.82931934503, + 24853.994072437203, + 24820.291567752425, + 24791.422940627668, + 24766.062890138615, + 24742.859679099758, + 24720.435134064257, + 24697.384645324066, + 24672.27716690985, + 24643.655216591014, + 24610.034875875717, + 24569.90579001085, + 24521.731167982056, + 24463.9477825137, + 24394.96597006887, + 24313.16963084947, + 24216.916228796035, + 24104.53679158794, + 23974.335910643247, + 23824.59174111877, + 23653.556001910027, + 23459.45397565136, + 23240.48450871579, + 22994.82001121507, + 22720.606456999703, + 22415.963383658993, + 22078.983892520886, + 21707.73464865214, + 21300.255880858193, + 20854.561381683292, + 20368.63850741039, + 19840.44817806116, + 19267.92487739606, + 25516.32748918466, + 25467.559637351438, + 25428.893670185775, + 25399.279234283335, + 25377.639539978638, + 25362.871361344805, + 25353.8450361938, + 25349.404466076307, + 25348.367116281705, + 25349.52401583815, + 25351.63975751254, + 25353.452497810507, + 25353.673956976418, + 25350.989418993377, + 25344.057731583252, + 25331.511306206605, + 25311.956118062782, + 25283.971706089866, + 25246.111172964633, + 25196.901185102677, + 25134.841972658243, + 25058.407329524394, + 24966.04461333289, + 24856.174745454242, + 24727.192210997677, + 24577.46505881122, + 24405.334901481598, + 24209.11691533426, + 23987.099840433413, + 23737.545980582043, + 23458.691203321807, + 23148.74493993315, + 22805.89018543523, + 22428.28349858595, + 22014.05500188201, + 21561.30838155874, + 21068.12088759032, + 25367.273463397898, + 25276.93593600686, + 25198.83405872463, + 25131.676223698512, + 25074.14438681455, + 25024.89406769756, + 24982.55434971106, + 24945.727879957343, + 24912.990869277397, + 24882.893092250975, + 24853.95788719659, + 24824.682156171486, + 24793.536364971606, + 24758.964543131675, + 24719.384283925152, + 24673.186744364222, + 24618.736645199828, + 24554.37227092165, + 24478.405469758076, + 24389.121653676284, + 24284.77979838215, + 24163.612443320333, + 24023.825691674185, + 23863.599210365825, + 23681.086230056102, + 23474.413545144616, + 23241.68151376972, + 22980.964057808458, + 22690.308662876632, + 22367.73637832885, + 22011.24181725836, + 21618.79315649721, + 21188.332136616187, + 20717.774061924767, + 20205.00780047126, + 19647.895784042605, + 19044.274008164575, + 25511.08211660262, + 25431.420903699363, + 25363.197017867085, + 25305.199024528945, + 25256.18905284686, + 25214.902795721497, + 25180.049509792272, + 25150.312015437317, + 25124.346696773497, + 25100.783501656464, + 25078.225941680557, + 25055.251092178885, + 25030.40959222329, + 25002.22564462435, + 24969.19701593138, + 24929.795036432442, + 24882.464600154366, + 24825.62416486266, + 24757.665752061614, + 24676.954946994254, + 24581.830898642336, + 24470.606319726372, + 24341.567486705593, + 24192.974239777985, + 24023.059982880262, + 23830.031683687896, + 23612.06987361508, + 23367.328647814775, + 23093.935665178626, + 22789.992148337085, + 22453.57288365931, + 22082.726221253175, + 21675.47407496536, + 21229.811922381214, + 20743.708804824884, + 20215.107327359223, + 19641.923658785832, + 25874.18741490342, + 25822.441332963084, + 25781.123035242246, + 25749.165399060672, + 25725.474865476812, + 25708.931439287902, + 25698.38868902994, + 25692.673746977576, + 25690.587309144277, + 25690.90363528223, + 25692.37054888234, + 25693.709437174293, + 25693.615251126477, + 25690.756505446043, + 25683.775278578858, + 25671.28721270956, + 25651.88151376151, + 25624.120951396828, + 25586.541859016303, + 25537.654133759577, + 25475.941236504943, + 25399.86019186947, + 25307.84158820895, + 25198.289577617965, + 25069.58187592975, + 24920.069762716343, + 24748.078081288517, + 24551.905238695785, + 24329.82320572635, + 24080.077516907226, + 23800.88727050415, + 23490.44512852154, + 23146.91731670264, + 22768.44362452936, + 22353.137405222413, + 21899.085575741203, + 21404.34861678391, + 25742.56949342498, + 25649.358945138047, + 25568.786383332324, + 25499.54102648356, + 25440.285656806293, + 25389.656620253783, + 25346.26382651803, + 25308.69074902977, + 25275.494424958488, + 25245.205455212385, + 25216.328004438452, + 25187.33980102238, + 25156.692137088587, + 25122.809868500295, + 25084.091414859395, + 25038.90875950654, + 24985.607449521158, + 24922.506595721377, + 24847.898872664064, + 24760.050518644864, + 24657.201335698115, + 24537.564689596937, + 24399.327509853174, + 24240.650289717378, + 24059.667086178884, + 23854.485519965743, + 23623.186775544797, + 23363.82560112154, + 23074.430308640265, + 22753.00277378401, + 22397.518435974518, + 22005.9262983723, + 21576.14892787658, + 21106.08245512534, + 20593.59657449534, + 20036.534544101985, + 19432.713185799534, + 25882.08977997137, + 25799.504123762024, + 25728.73100177765, + 25668.54066448255, + 25617.67692607987, + 25574.8571645114, + 25538.77232145774, + 25508.08690233816, + 25481.43897631077, + 25457.440176272303, + 25434.675698858326, + 25411.704304443076, + 25387.058317139607, + 25359.243624799627, + 25326.739679013648, + 25287.999495110897, + 25241.449652159343, + 25185.490292965704, + 25118.495124075413, + 25038.811415772678, + 24944.760002080424, + 24834.635280760314, + 24706.705213312754, + 24559.211324976928, + 24390.368704730685, + 24198.366005290667, + 23981.36544311228, + 23737.50279838958, + 23464.887415055444, + 23161.602200781457, + 22825.703626977967, + 22455.221728794015, + 22048.160105117433, + 21602.49591857475, + 21116.179895531277, + 20587.136326091037, + 20013.26306409684, + 26231.34280405128, + 26176.54434069196, + 26132.501080686103, + 26098.129132077444, + 26072.318166648558, + 26053.931419920646, + 26041.805691153753, + 26034.75134334657, + 26031.5523032366, + 26030.96606130005, + 26031.723671751886, + 26032.529752545783, + 26032.062485374194, + 26028.97361566829, + 26021.88845259798, + 26009.405869071925, + 25990.09830173753, + 25962.511750980928, + 25925.165780926975, + 25876.55351943931, + 25815.14165812028, + 25739.370452310974, + 25647.653721091232, + 25538.37884727965, + 25409.90677743351, + 25260.5720218489, + 25088.68265456059, + 24892.52031334214, + 24670.340199705784, + 24420.37107890258, + 24140.81527992228, + 23829.848695493358, + 23485.62078208307, + 23106.25455989736, + 22689.846612880978, + 22234.467088717367, + 21738.15969882876, + 26117.681601066226, + 26021.49732518787, + 25938.355200260223, + 25866.92527108753, + 25805.851146212794, + 25753.749997917712, + 25709.212562222776, + 25670.803138887186, + 25637.05959140889, + 25606.49334702456, + 25577.58939670965, + 25548.806295178307, + 25518.576160883447, + 25485.30467601671, + 25447.371086508487, + 25403.128202027914, + 25350.902395982845, + 25288.9936055199, + 25215.675331524402, + 25129.194638620484, + 25027.772155170915, + 24909.60207327731, + 24772.852148779963, + 24615.663701257912, + 24436.15161402895, + 24232.40433414958, + 24002.483872415127, + 23744.425803359543, + 23456.239265255594, + 23135.906960114782, + 22781.385153687337, + 22390.603675462193, + 21961.465918667072, + 21491.84884026843, + 20979.602960971457, + 20422.552365220068, + 19818.49470119695, + 26252.754793237433, + 26167.15283536826, + 26093.740337223637, + 26031.26923430906, + 25978.46502586879, + 25934.026774885824, + 25896.6271080819, + 25864.91221591751, + 25837.501852591864, + 25812.9893360429, + 25789.941547947357, + 25766.898933720662, + 25742.37550251697, + 25714.858827229236, + 25682.81004448908, + 25644.663854666927, + 25598.828521871917, + 25543.68587395193, + 25477.591302493554, + 25398.873762822208, + 25305.835774001927, + 25196.75341883558, + 25069.876343864766, + 24923.427759369773, + 24755.60443936966, + 24564.57672162224, + 24348.48850762406, + 24105.457262610384, + 23833.574015555227, + 23530.903359171378, + 23195.4834499103, + 22825.326007962267, + 22418.416317256215, + 21972.71322545989, + 21486.149143979754, + 20956.630047961007, + 20382.0354762876, + 26587.958834671797, + 26530.031551862645, + 26483.188411122886, + 26446.328751220313, + 26418.325474661477, + 26398.025047691666, + 26384.24750029491, + 26375.786426193972, + 26371.40898285038, + 26369.855891464344, + 26369.841436974883, + 26370.053468059734, + 26369.15339713533, + 26365.776200356922, + 26358.530417618425, + 26345.998152552533, + 26326.735072530682, + 26299.270408663055, + 26262.106955798525, + 26213.721072524786, + 26152.562681168176, + 26077.05526779385, + 25985.59588220571, + 25876.555137946296, + 25748.27721229701, + 25599.0798462779, + 25427.25434464784, + 25231.065575904377, + 25008.7519722838, + 24758.525529761202, + 24478.571808050325, + 24167.049930603724, + 23822.09258461267, + 23441.806021007145, + 23024.27005445594, + 22567.53806336652, + 22069.63698988512, + 26492.800930616537, + 26393.539616357146, + 26307.726445615124, + 26234.012289523147, + 26171.021582952704, + 26117.352324513948, + 26071.576076555848, + 26032.237965166067, + 25997.85668017102, + 25966.92447513585, + 25937.90716736446, + 25909.24413789949, + 25879.348331522295, + 25846.606256753013, + 25809.37798585047, + 25765.997154812296, + 25714.7709633748, + 25653.980175013057, + 25581.87911694088, + 25496.695680110843, + 25396.631319214215, + 25279.861052681044, + 25144.533462680098, + 24988.770695118903, + 24810.668459643693, + 24608.296029639463, + 24379.696242229984, + 24122.885498277687, + 23835.8537623838, + 23516.56456288829, + 23162.95499186984, + 22772.935705145876, + 22344.39092227258, + 21875.178426544866, + 21363.129564996398, + 20806.04924839954, + 20201.71595126549, + 26623.258927493185, + 26534.546318864668, + 26458.40181380586, + 26393.559032863424, + 26338.72516032277, + 26292.58094420811, + 26253.780696282305, + 26220.952292047023, + 26192.69717074268, + 26167.590335348345, + 26144.180352581938, + 26120.98935290005, + 26096.513030498016, + 26069.220643309938, + 26037.55501300865, + 25999.93252500569, + 25954.743128451417, + 25900.350336234827, + 25835.09122498374, + 25757.27643506468, + 25665.190170582893, + 25557.09019938242, + 25431.207853045995, + 25285.748026895093, + 25118.889179989957, + 24928.783335129538, + 24713.55607885159, + 24471.306561432513, + 24200.1074968875, + 23898.005162970527, + 23563.0194011742, + 23193.143616729965, + 22786.344778607938, + 22340.563419517035, + 21853.71363590489, + 21323.683087957845, + 20748.33299960105, + 26944.200406092867, + 26883.06557908408, + 26833.345352442593, + 26793.92229566024, + 26763.652541967596, + 26741.365788334, + 26725.865295467473, + 26715.927887814858, + 26710.303953561695, + 26707.717444632217, + 26706.86587668951, + 26706.420329135304, + 26705.02544511009, + 26701.299431493124, + 26693.83405890239, + 26681.194661694593, + 26661.920137965233, + 26634.522949548475, + 26597.489122017254, + 26549.2782446833, + 26488.323470596966, + 26413.031516547475, + 26321.782663062706, + 26212.930754409295, + 26084.80319859261, + 25935.700967356795, + 25763.89859618473, + 25567.64418429797, + 25345.159394656886, + 25094.63945396057, + 24814.25315264681, + 24502.142844892187, + 24156.424448611997, + 23775.18744546029, + 23356.494880829865, + 22898.383363852186, + 22398.86306739759, + 26868.118347655236, + 26765.67408013116, + 26677.085776788208, + 26600.985135087532, + 26535.97741622909, + 26480.64144515151, + 26433.529610532194, + 26393.167864787312, + 26358.05572407171, + 26326.666268279, + 26297.446141041597, + 26268.815549730567, + 26239.168265455748, + 26206.871623065726, + 26170.26652114783, + 26127.667422028095, + 26077.36235177136, + 26017.61290018113, + 25946.65422079972, + 25862.695030908126, + 25763.917611526093, + 25648.477807412168, + 25514.505027063577, + 25360.102242716275, + 25183.345990345002, + 24982.2863696632, + 24754.947044123113, + 24499.32524091565, + 24213.391750970477, + 23895.090928956055, + 23542.340693279526, + 23153.032526086783, + 22725.03147326248, + 22256.176144429974, + 21744.27871295141, + 21187.12491592765, + 20582.474054198294, + 26993.783675115486, + 26901.863575882286, + 26822.891942409507, + 26755.584080285, + 26698.628858835393, + 26650.688711125968, + 26610.399633960846, + 26576.371187882833, + 26547.186497173483, + 26521.402249853076, + 26497.548697680682, + 26474.129656154055, + 26449.622504509727, + 26422.478185722946, + 26391.121206507698, + 26353.949637316742, + 26309.335112341545, + 26255.62282951234, + 26191.13155049804, + 26114.15360070639, + 26022.954869283796, + 25915.77480911545, + 25790.82643682527, + 25646.29633277592, + 25480.344641068772, + 25291.105069543966, + 25076.68488978042, + 24835.164937095706, + 24564.59961054618, + 24263.016872926986, + 23928.418250771916, + 23558.778834353583, + 23152.04727768326, + 22706.14579851103, + 22218.970178325693, + 21688.38976235478, + 21112.24745956459, + 27300.232138926876, + 27235.808756249662, + 27183.13195181964, + 27141.067525852646, + 27108.454842303352, + 27084.106828865068, + 27066.809976969922, + 27055.32434178872, + 27048.38354223105, + 27044.694760945215, + 27042.938744318286, + 27041.769802476036, + 27039.815809283034, + 27035.67820234251, + 27027.931982996524, + 27015.125716325787, + 26995.781531149827, + 26968.395120026875, + 26931.435739253873, + 26883.346208866573, + 26822.542912639416, + 26747.41579808558, + 26656.328376457026, + 26547.617722744435, + 26419.59447567718, + 26270.542837723435, + 26098.720575090098, + 25902.35901772285, + 25679.663059305967, + 25428.811157262626, + 25147.9553327547, + 24835.221170682726, + 24488.707819686086, + 24106.48799214281, + 23686.607964169765, + 23227.087575622474, + 22725.920230095257, + 27243.82443904605, + 27138.088699279564, + 27046.618572455096, + 26968.02658236225, + 26900.898816529443, + 26843.794926223785, + 26795.248126451163, + 26753.76519595618, + 26717.82647722217, + 26685.88587647121, + 26656.370863664157, + 26627.682472500586, + 26598.19530041876, + 26566.257508595765, + 26530.19082194737, + 26488.2905291281, + 26438.82548253124, + 26380.038098288776, + 26310.1443562715, + 26227.33380008884, + 26129.76953708904, + 26015.588238359094, + 25882.900138724697, + 25729.789036750284, + 25554.31229473906, + 25354.500838732936, + 25128.359158512594, + 24873.86530759743, + 24588.97090324559, + 24271.601126453996, + 23919.654721958224, + 23531.003998232663, + 23103.494827490427, + 22634.946645683358, + 22123.15245250207, + 21565.87881137585, + 20960.8658494728, + 27364.51024976557, + 27269.283329336493, + 27187.38695520416, + 27117.518117997595, + 27058.34737208457, + 27008.518835571558, + 26966.65019030385, + 26931.332681865406, + 26901.131119578953, + 26874.583876505956, + 26850.202889446642, + 26826.473658939925, + 26801.85524926352, + 26774.780288433834, + 26743.65496820604, + 26706.859044074026, + 26662.745835270467, + 26609.64222476675, + 26545.848659272964, + 26469.639149238028, + 26379.261268849492, + 26272.936156033724, + 26148.858512455856, + 26005.19660351964, + 25840.09225836768, + 25651.660869881278, + 25437.991394680485, + 25197.146353124077, + 24927.161829309574, + 24626.04747107327, + 24291.78648999015, + 23922.335661373963, + 23515.62532427719, + 23069.559381491054, + 22582.015299545546, + 22050.84410870936, + 21473.87040298995, + 27656.21837507056, + 27588.42313853712, + 27532.707977712766, + 27487.921923537353, + 27452.887570689563, + 27426.40107758676, + 27407.23216638511, + 27394.124122979443, + 27385.79379700337, + 27380.93160182925, + 27378.201514568158, + 27376.24107606994, + 27373.661390923156, + 27369.047127455113, + 27360.956517731847, + 27347.92135755815, + 27328.44700647755, + 27301.012387772338, + 27264.069988463485, + 27216.045859310765, + 27155.339614812638, + 27080.32443320635, + 26989.34705646789, + 26880.727790311925, + 26752.760504191912, + 26603.712631300048, + 26431.825168567255, + 26235.312676663234, + 26012.36327999632, + 25761.138666713712, + 25479.77408870131, + 25166.378361583687, + 24819.033864724264, + 24435.79654122511, + 24014.695897927097, + 23553.73500540981, + 23050.890497991586, + 27620.109512937084, + 27510.9711778564, + 27416.509932575733, + 27335.319127213184, + 27265.9656756256, + 27206.99005540858, + 27156.90630789648, + 27114.20203816234, + 27077.33841501801, + 27044.75017101399, + 27014.845602439636, + 26986.006569322948, + 26956.588495430693, + 26924.92036826841, + 26889.304739080348, + 26848.01772284947, + 26799.308998297558, + 26741.401807885053, + 26672.492957811184, + 26590.752818013916, + 26494.325322169894, + 26381.32796769461, + 26249.851815742226, + 26097.961491205617, + 25923.69518271649, + 25725.064642645193, + 25500.055187100897, + 25246.62569593147, + 24962.708612723498, + 24646.209944802376, + 24295.00926323217, + 23906.959702815704, + 23479.88796209459, + 23011.594303349113, + 22499.85255259836, + 21942.410099600074, + 21336.987897850853, + 27735.619586389053, + 27636.98402342712, + 27552.06280564383, + 27479.534608709357, + 27418.051672032674, + 27366.239798761413, + 27322.698355782024, + 27286.000273719652, + 27254.69204693818, + 27227.293733540253, + 27202.298955367245, + 27178.174897999263, + 27153.362310755187, + 27126.275506692575, + 27095.30236260778, + 27058.80431903587, + 27015.116380250693, + 26962.54711426477, + 26899.3786528294, + 26823.866691434625, + 26734.240489309206, + 26628.702869420686, + 26505.430218475292, + 26362.57248691804, + 26198.25318893264, + 26010.569402441593, + 25797.591769106104, + 25557.364494326128, + 25287.905347240358, + 24987.20566072624, + 24653.230331399922, + 24283.917819616345, + 23877.18014946916, + 23430.902908790737, + 22942.94524915226, + 22411.13988586356, + 21833.293097973285, + 28012.32317770507, + 27941.070502408664, + 27882.232919865182, + 27834.64269173854, + 27797.105643431456, + 27768.4011640853, + 27747.282206580287, + 27732.475287535293, + 27722.680487307953, + 27716.571449994633, + 27712.79538343049, + 27709.97305918935, + 27706.698812583843, + 27701.540542665276, + 27693.039712223755, + 27679.7113477881, + 27660.044039625856, + 27632.499941743336, + 27595.51477188558, + 27547.497811536352, + 27486.83190591819, + 27411.87346399233, + 27320.952458458807, + 27212.372425756355, + 27084.410466062418, + 26935.31724329326, + 26763.31698510381, + 26566.607482887797, + 26343.36009177763, + 26091.719730644512, + 25809.80488209836, + 25495.707592487826, + 25147.493471900307, + 24763.201694161948, + 24340.844996837666, + 23878.409681231016, + 23373.855612384414, + 27997.163598760846, + 27884.508941200114, + 27786.944678394542, + 27703.044986790672, + 27631.35760657384, + 27570.40384166812, + 27518.678559736283, + 27474.6501921799, + 27436.760734139247, + 27403.425744493303, + 27373.034345859887, + 27343.949224595483, + 27314.506630795313, + 27283.01637829338, + 27247.761844662386, + 27206.999971213787, + 27158.961262997822, + 27101.84978880339, + 27033.843181158212, + 26953.09263632868, + 26857.72291431994, + 26745.832338875938, + 26615.492797479284, + 26464.749741351352, + 26291.622185452314, + 26094.102708480958, + 25870.157452874955, + 25617.726124810586, + 25334.72199420298, + 25019.031894705924, + 24668.516223712, + 24281.008942352502, + 23854.317575497484, + 23386.22321175567, + 22874.48050347466, + 22316.81766674068, + 21710.93648137874, + 28107.29234121595, + 28005.143823638336, + 27917.09516846685, + 27841.80673641284, + 27777.912451926437, + 27724.019803196446, + 27678.709842150478, + 27640.53718445485, + 27608.03000951462, + 27579.69006047359, + 27553.992644214322, + 27529.386631358077, + 27504.29445626491, + 27477.112117033546, + 27446.209175501506, + 27409.928757245038, + 27366.58755157913, + 27314.475811557502, + 27251.857353972613, + 27176.96955935567, + 27088.023371976607, + 26983.20329984412, + 26860.66741470563, + 26718.54735204731, + 26554.948311094045, + 26367.949054809495, + 26155.60190989604, + 25915.932766794795, + 25646.94107968561, + 25346.59986648714, + 25012.8557088567, + 24643.628752190365, + 24236.812705622964, + 23790.27484202805, + 23301.855998017963, + 22769.370573943714, + 22190.606533895112, + 28368.710331295948, + 28293.91234561082, + 28231.865989304453, + 28181.386754764815, + 28141.26369811864, + 28110.259439231337, + 28087.11016170714, + 28070.525612888963, + 28059.189103858473, + 28051.75750943609, + 28046.86126818098, + 28043.10438239101, + 28039.064418102844, + 28033.29250509183, + 28024.313336872092, + 28010.625170696476, + 27990.69982755658, + 27962.982692182744, + 27925.892713044035, + 27877.82240234825, + 27817.137836041973, + 27742.17865381047, + 27651.258059077798, + 27542.662819006702, + 27414.65326449871, + 27265.463290194104, + 27093.300354471816, + 26896.345479449643, + 26672.753250984006, + 26420.651818670132, + 26138.142895842, + 25823.301759572274, + 25474.177250672397, + 25088.791773692537, + 24665.14129692163, + 24201.195352387298, + 23694.897035855964, + 28375.17644723429, + 28258.889135933612, + 28158.107352440344, + 28071.3860995295, + 27997.253943714888, + 27934.213015249014, + 27880.739008123175, + 27835.281180067377, + 27796.26235255035, + 27762.07891077957, + 27731.1008037013, + 27701.67154400049, + 27672.108208100854, + 27640.701436164825, + 27605.71543209361, + 27565.387963527097, + 27517.93036184401, + 27461.527522161723, + 27394.337903336418, + 27314.493527962928, + 27220.0999823749, + 27109.23641664474, + 26979.9555445835, + 26830.283643741048, + 26658.220555406006, + 26461.73968460565, + 26238.78800010608, + 25987.286034412115, + 25705.127883767265, + 25390.181208153834, + 25040.287231292867, + 24653.260740644087, + 24226.89008740606, + 23758.937186515992, + 23247.1375166499, + 22689.20012022248, + 22082.807603387242, + 28479.70889176075, + 28373.940616738822, + 28282.65943969611, + 28204.507406385095, + 28138.100126297086, + 28082.026772662048, + 28034.850082448775, + 27995.10635636476, + 27961.305458856215, + 27931.9308181081, + 27905.439426044184, + 27880.26183832686, + 27854.802174357355, + 27827.4381172756, + 27796.520913960245, + 27760.375375028725, + 27717.299874837194, + 27665.566351480506, + 27603.420306792366, + 27529.080806345086, + 27440.740479449792, + 27336.56551915636, + 27214.695682253347, + 27073.24428926811, + 26910.29822446671, + 26723.917935853977, + 26512.137435173478, + 26272.96429790744, + 26004.37966327695, + 25704.33823424179, + 25370.76827750042, + 25001.571623490134, + 24594.623666386928, + 24147.773364105506, + 23658.843238299363, + 23125.629374360713, + 22545.901421420505, + 28725.543341593177, + 28647.109887174607, + 28581.766118342646, + 28528.31075820925, + 28485.51609362521, + 28452.12797517995, + 28426.865817201757, + 28408.422597757588, + 28395.464858653122, + 28386.632705432803, + 28380.53980737985, + 28375.773397516172, + 28370.894272602436, + 28364.436793138026, + 28354.908883361113, + 28340.792031248588, + 28320.54128851606, + 28292.5852706179, + 28255.326156747236, + 28207.139689835873, + 28146.375176554404, + 28071.355487312212, + 27980.37705625728, + 27871.709881276467, + 27743.597523995293, + 27594.257109778064, + 27421.87932772782, + 27224.62843068627, + 27000.64223523397, + 26748.032121690172, + 26464.883034112816, + 26149.253480298674, + 25799.175531783163, + 25412.654823840527, + 24987.670555483714, + 24522.17548946439, + 24014.095952273015, + 28754.337530358738, + 28634.29862996413, + 28530.182218526315, + 28440.524125148753, + 28363.833742673738, + 28298.594027682277, + 28243.261500494064, + 28196.266245167597, + 28156.01190950011, + 28120.875705027498, + 28089.208407024522, + 28059.334354504565, + 28029.551450219817, + 27998.131160661218, + 27963.318516058403, + 27923.332110379746, + 27876.364101332427, + 27820.58021036227, + 27754.119722653933, + 27675.095487130755, + 27581.593916454807, + 27471.674987026956, + 27343.37223898677, + 27194.692776212538, + 27023.61726632136, + 26828.099940668977, + 26606.06859435, + 26355.42458619761, + 26074.042838783873, + 25759.77183841957, + 25410.433635154135, + 25023.823842775833, + 24597.71163881165, + 24129.839764527267, + 23617.92452492718, + 23059.655788754553, + 22452.696988491352, + 28853.049336822234, + 28743.55201078158, + 28648.930736638744, + 28567.80924518744, + 28498.78483096011, + 28440.428352227922, + 28391.284231000816, + 28349.870453027434, + 28314.678567795192, + 28284.17368853022, + 28256.79449219742, + 28230.953219500392, + 28205.035674881514, + 28177.40122652188, + 28146.382806341328, + 28110.28690999843, + 28067.393596890546, + 28015.956490153705, + 27954.202776662714, + 27880.333207031126, + 27792.5220956112, + 27688.917320493976, + 27567.64032350923, + 27426.786110225417, + 27264.42324994982, + 27078.593875728417, + 26867.31368434593, + 26628.571936325792, + 26360.331455930227, + 26060.528631160178, + 25727.07341375534, + 25357.849319194105, + 24950.713426693655, + 24503.496379209857, + 24014.002383437408, + 23480.00920980966, + 22899.268192498756, + 29082.98543563108, + 29000.824067415386, + 28932.09196057608, + 28875.5710689492, + 28830.01691010952, + 28794.15856537057, + 28766.698679784597, + 28746.31346214261, + 28731.652684974342, + 28721.339684548257, + 28713.971360871612, + 28708.11817769033, + 28702.324162489116, + 28695.106906491423, + 28684.957564659435, + 28670.340855694034, + 28649.695062034916, + 28621.43202986046, + 28583.93716908782, + 28535.569453372882, + 28474.661420110213, + 28399.519170433225, + 28308.422369214004, + 28199.624245063373, + 28071.35159033092, + 27921.804761104988, + 27749.157677212603, + 27551.557822219576, + 27327.126243430437, + 27073.957551888478, + 26790.11992237572, + 26473.655093412905, + 26122.57836725954, + 25734.878609913874, + 25308.518251112873, + 24841.433284332255, + 24331.53326678651, + 28923.330804347064, + 28801.58507174216, + 28695.94779608626, + 28604.94628186849, + 28527.081397316753, + 28460.82757439764, + 28404.632808816583, + 28356.918660017676, + 28316.080251183746, + 28280.486269236393, + 28248.47896483596, + 28218.374152381497, + 28188.46121001084, + 28157.003079600516, + 28122.236266765834, + 28082.37084086082, + 28035.590434978236, + 27980.05224594959, + 27913.887034345174, + 27835.19912447393, + 27742.066404383586, + 27632.54032586066, + 27504.64590443033, + 27356.38171935655, + 27185.719913642013, + 26990.606194028132, + 26768.95983099513, + 26518.673658761887, + 26237.614075286016, + 25923.621042263952, + 25574.508085130845, + 25188.062293060513, + 24762.04431896558, + 24294.18837949742, + 23782.202255046133, + 23223.767289740506, + 22616.538391448164, + 29019.380258955876, + 28908.18924710314, + 28812.047767880653, + 28729.57140925141, + 28659.34932291716, + 28599.944224318377, + 28549.892392634316, + 28507.703670782914, + 28471.861465420894, + 28440.822746943664, + 28413.018049485465, + 28386.851470919195, + 28360.70067285651, + 28332.91688064785, + 28301.8248833823, + 28265.723033887793, + 28222.88324873096, + 28171.551008217128, + 28109.945356390435, + 28036.25890103373, + 27948.65781366855, + 27845.281829555286, + 27724.244247692954, + 27583.63193081937, + 27421.505305411112, + 27235.89836168341, + 27024.81865359035, + 26786.247298824663, + 26518.13897881783, + 26218.421938740164, + 25884.997987500592, + 25515.742497746865, + 25108.504405865446, + 24661.106211981525, + 24171.34397995908, + 23636.98733740077, + 23055.779475648036, + 29242.142439238516, + 29158.293354849007, + 29088.02499522238, + 29030.11185857455, + 28983.302006860198, + 28946.317065772753, + 28917.85222474438, + 28896.57623694598, + 28881.13141928722, + 28870.133652416425, + 28862.172380720778, + 28855.810612326128, + 28849.584919097055, + 28842.00543663694, + 28831.55586428784, + 28816.69346513056, + 28795.849065984723, + 28767.427057408586, + 28729.805393699222, + 28681.335592892374, + 28620.342736762595, + 28545.125470823157, + 28453.956004326046, + 28345.080110261995, + 28216.717125360537, + 28067.059950089835, + 27894.275048656906, + 27696.502449007417, + 27471.85574282581, + 27218.42208553532, + 26934.26219629779, + 26617.41035801394, + 26265.874417323183, + 25877.63578460362, + 25450.64943397218, + 24982.843903284447, + 24472.121294134817, + 29134.836041419887, + 29010.924012483312, + 28903.353261750042, + 28810.640444651995, + 28731.27578035993, + 28663.723051783298, + 28606.419605570307, + 28557.776352107903, + 28516.17776552176, + 28479.981883676264, + 28447.52030817465, + 28417.09820435875, + 28386.994301309245, + 28355.460891845505, + 28320.723832525648, + 28280.982543646536, + 28234.410009243777, + 28179.152777091702, + 28113.33095870343, + 28035.038229330723, + 27942.341827964152, + 27833.282557333074, + 27705.87478390547, + 27558.106437888135, + 27387.939013226627, + 27193.307567605156, + 26972.12072244677, + 26722.26066291317, + 26441.58313790484, + 26127.917460061042, + 25779.06650575971, + 25392.80671511754, + 24966.88809198998, + 24499.034203971205, + 23986.942182394167, + 23428.282722330474, + 22820.700082590574, + 29227.493496483654, + 29114.15533510398, + 29016.083897886372, + 28931.88460066568, + 28860.136423015505, + 28799.391908248206, + 28748.177163414897, + 28704.9918593054, + 28668.309230448256, + 28636.576075110803, + 28608.2127552991, + 28581.613196757902, + 28555.14488897078, + 28527.148885159975, + 28495.939802286506, + 28459.805821050137, + 28417.00868588934, + 28365.78370498136, + 28304.339750242154, + 28230.859257326443, + 28143.498225627674, + 28040.386218278032, + 27919.62636214845, + 27779.295347848623, + 27617.443429726925, + 27432.09442587054, + 27221.24571810532, + 26982.86825199596, + 26714.90653684573, + 26415.27864569682, + 26081.876215330085, + 25712.564446265074, + 25305.182102760118, + 24857.541512812317, + 24367.42856815749, + 23832.60272427015, + 23250.79700036362, + 29441.199561728423, + 29355.2155479329, + 29283.00189088559, + 29223.32377514648, + 29174.919949014464, + 29136.502724527036, + 29106.75797746053, + 29084.345147329943, + 29067.89723738907, + 29056.020814630403, + 29047.296009785216, + 29040.276517323473, + 29033.489595453942, + 29025.43606612405, + 29014.590315020054, + 28999.400291566883, + 28978.28750892822, + 28949.64704400652, + 28911.847537442936, + 28863.231193617383, + 28802.11378064852, + 28726.78463039373, + 28635.50663844914, + 28526.516264149654, + 28398.02353056884, + 28248.212024519093, + 28075.238896551447, + 27877.234860955825, + 27652.304195760687, + 27398.524742733403, + 27113.94790738006, + 26796.598658945382, + 26444.475530412932, + 26055.550618504974, + 25627.769583682562, + 25159.051650145382, + 24647.289605831975, + 29516.860894987873, + 29388.951593967246, + 29277.80418849354, + 29181.916160327153, + 29099.75855496733, + 29029.775981651925, + 28970.38661335767, + 28919.982186799956, + 28876.928002432924, + 28839.562924449452, + 28806.1993807812, + 28775.123363098504, + 28744.594426810483, + 28712.84569106499, + 28678.0838387486, + 28638.489116486668, + 28592.215334643228, + 28537.3898673211, + 28472.11365236186, + 28394.461191345763, + 28302.480549591834, + 28194.19335615788, + 28067.594803840362, + 27920.653649174546, + 27751.312212434423, + 27557.48637763271, + 27337.065592520914, + 27087.912868589225, + 26807.864781066517, + 26494.73146892061, + 26146.29663485785, + 25760.3175453234, + 25334.525030501172, + 24866.623484313855, + 24354.29086442282, + 23795.178692228175, + 23186.91205286881, + 29603.22091211266, + 29485.927640327885, + 29384.29348331497, + 29296.905541949956, + 29222.324480847623, + 29159.084528361465, + 29105.69347658378, + 29060.632681345545, + 29022.35706221652, + 28989.295102505133, + 28959.848849258662, + 28932.39391326306, + 28905.279469042976, + 28876.82825486191, + 28845.336572722004, + 28809.07428836417, + 28766.284831268134, + 28715.18519465221, + 28653.965935473603, + 28580.791174428163, + 28493.79859595049, + 28391.09944821398, + 28270.77854313073, + 28130.89425635154, + 27969.478527266052, + 27784.536859002517, + 27574.048318428075, + 27335.965536148447, + 27068.214706508195, + 26768.695587590653, + 26435.281501217767, + 26065.819332950337, + 25658.129532087853, + 25210.006111668547, + 24719.21664846943, + 24183.502283006183, + 23600.577719533292, + 29800.348389488387, + 29710.444711611388, + 29634.654005436347, + 29571.72468624735, + 29520.378733067264, + 29479.31168865764, + 29447.192659518838, + 29422.664315889895, + 29404.342891748634, + 29390.81818481157, + 29380.65355653402, + 29372.38593211001, + 29364.52580047227, + 29355.557214292345, + 29343.93778998046, + 29328.098707685578, + 29306.444711295473, + 29277.354108436553, + 29239.1787704741, + 29190.244132511973, + 29128.84919339289, + 29053.266515698313, + 28961.742225748345, + 28852.49601360191, + 28723.721133056693, + 28573.58440164902, + 28400.226200654073, + 28201.760475085677, + 27976.274733696424, + 27721.83004897771, + 27436.461057159577, + 27118.175958210853, + 26764.95651583913, + 26374.758057490697, + 25945.509474350594, + 25475.113221342588, + 24961.445317129273, + 29900.60072691724, + 29768.567406176404, + 29653.718426423213, + 29554.532095746574, + 29469.46028597418, + 29396.928432672357, + 29335.335535146285, + 29283.05415643985, + 29238.43042333564, + 29199.784026355013, + 29165.40821975807, + 29133.569821543646, + 29102.50921344931, + 29070.440340951383, + 29035.550713264915, + 28996.00140334371, + 28949.92704788029, + 28895.435847305944, + 28830.60956579067, + 28753.50353124323, + 28662.146635311125, + 28554.54133338058, + 28428.663644576573, + 28282.46315176283, + 28113.863001541795, + 27920.759904254664, + 27701.024133981366, + 27452.499528540582, + 27173.003489489718, + 26860.326982124945, + 26512.234535481155, + 26126.464242331986, + 25700.727759189787, + 25232.7103063057, + 24720.070667669585, + 24160.44119101, + 23551.42778779434, + 29980.410846361283, + 29859.045698359503, + 29753.733774084976, + 29663.0438594549, + 29585.51830412524, + 29519.673021490642, + 29463.99748868458, + 29416.954746579213, + 29376.981399785425, + 29342.487616652877, + 29311.857129269985, + 29283.447233463845, + 29255.58878880033, + 29226.58621858406, + 29194.71750985837, + 29158.23421340535, + 29115.361443745835, + 29064.297879139405, + 29003.215761584368, + 28930.260896817734, + 28843.552654315317, + 28741.183967291672, + 28621.22133270002, + 28481.70481123239, + 28320.64802731956, + 28136.038169130956, + 27925.83598857488, + 27687.975801298235, + 27420.365486686744, + 27120.886487864915, + 26787.393811695856, + 26417.71602878154, + 26009.655273462628, + 25560.987243818534, + 25069.461201667396, + 24532.799972566092, + 23948.699945810306, + 30160.594309798482, + 30066.671662619374, + 29987.20612167797, + 29920.9293329824, + 29866.546506279537, + 29822.73641505501, + 29788.15139653318, + 29761.41735167713, + 29741.133745188716, + 29725.873605508485, + 29714.183524815795, + 29704.583659028656, + 29695.56772780391, + 29685.603014537082, + 29673.13036636244, + 29656.564194152983, + 29634.292472520487, + 29604.676739815477, + 29566.052098127184, + 29516.727213283535, + 29454.984314851266, + 29379.079196135892, + 29287.24121418154, + 29177.673289771163, + 29048.551907426478, + 28898.027115407847, + 28724.22252571449, + 28525.23531408425, + 28299.13621999376, + 28043.969546658456, + 27757.753161032408, + 27438.478493808478, + 27084.110539418296, + 26692.587856032158, + 26261.822565559174, + 25789.700353647127, + 25274.08046968261, + 30286.243894346917, + 30149.95720215563, + 30031.279124489876, + 29928.668795767015, + 29840.558914143185, + 29765.355741513205, + 29701.439103510747, + 29647.162389508085, + 29600.85255261634, + 29560.81010968531, + 29525.309141303584, + 29492.59729179844, + 29460.89576923592, + 29428.39934542083, + 29393.276355896665, + 29353.668699945676, + 29307.69184058891, + 29253.434804586075, + 29188.960182435665, + 29112.304128374886, + 29021.47636037971, + 28914.460160164854, + 28789.212373183727, + 28643.66340862852, + 28475.717239430185, + 28283.25140225834, + 28064.116997521432, + 27816.138689366562, + 27537.114705679614, + 27224.816838085262, + 26876.99044194679, + 26491.354436366335, + 26065.601304184762, + 25597.397091981642, + 25084.38141007529, + 24524.167432522747, + 23914.341897119855, + 30359.242283165964, + 30233.686002389448, + 30124.57877264118, + 30030.471064879475, + 29949.886913801507, + 29881.323917843085, + 29823.253239178826, + 29774.119603722076, + 29732.341301124914, + 29696.310184778125, + 29664.39167181131, + 29634.92474309273, + 29606.22194322945, + 29576.569380567227, + 29544.226727190584, + 29507.427218922792, + 29464.377655325832, + 29413.258399700437, + 29352.223379086114, + 29279.40008426106, + 29192.889569742216, + 29090.766453785327, + 28971.078918384777, + 28831.848709273785, + 28671.07113592424, + 28486.71507154679, + 28276.72295309091, + 28039.010781244662, + 27771.4681204349, + 27471.958098827337, + 27138.31740832625, + 26768.356304574754, + 26359.858606954705, + 25910.581698586684, + 25418.25652633001, + 24880.58760078271, + 24295.25299628163, + 30522.09943483073, + 30424.056226409866, + 30340.815778344473, + 30271.09296736664, + 30213.576233947362, + 30166.927582296234, + 30129.782580361665, + 30100.75035983079, + 30078.413616129477, + 30061.32860842231, + 30048.025159612684, + 30037.00665634265, + 30026.75004899307, + 30015.705851683484, + 30002.298142272237, + 29984.92456235634, + 29961.956317271626, + 29931.73817609259, + 29892.588471632516, + 29842.799100443415, + 29780.635522816036, + 29704.336762779873, + 29612.115408103135, + 29502.157610292823, + 29372.62308459463, + 29221.64510999302, + 29047.330529211173, + 28847.759748711047, + 28620.986738693242, + 28365.039033097222, + 28077.91772960114, + 27757.59748962185, + 27402.02653831501, + 27009.126664575007, + 26576.79322103494, + 26102.895124066636, + 25585.27485378072, + 30673.978475700234, + 30533.30645623424, + 30410.66915292874, + 30304.506526529625, + 30213.232101521462, + 30135.23296612753, + 30068.86977230998, + 30012.47673576959, + 29964.361635945872, + 29922.805816017168, + 29886.064182900453, + 29852.36520725154, + 29819.91092346494, + 29786.876929673846, + 29751.412387750297, + 29711.640023305008, + 29665.656125687427, + 29611.53054798579, + 29547.306707027055, + 29471.001583376878, + 29380.60572133968, + 29274.083228958683, + 29149.371778015742, + 29004.38260403153, + 28837.00050626542, + 28645.083847715552, + 28426.464555118808, + 28178.94811895079, + 27900.3135934258, + 27588.313596497006, + 27240.674309856167, + 26855.095478933854, + 26429.250412899462, + 25960.78598466093, + 25447.322630865132, + 24886.45435189754, + 24275.74871188246, + 30739.893927747547, + 30610.024766892773, + 30497.00220271279, + 30399.358391207097, + 30315.59905211402, + 30244.203468910542, + 30183.624488812457, + 30132.288522774295, + 30088.59554548925, + 30050.91909538934, + 30017.606274645288, + 29986.977749166555, + 29957.32774860135, + 29926.924066336636, + 29894.00805949805, + 29856.794648950065, + 29813.47231929584, + 29762.20311887726, + 29701.12265977501, + 29628.340117808442, + 29541.938232535693, + 29439.97330725363, + 29320.47520899786, + 29181.44736854272, + 29020.866780401313, + 28836.684002825474, + 28626.82315780573, + 28389.18193107145, + 28121.631572090588, + 27822.016894070006, + 27488.156273955225, + 27117.84165243046, + 26708.838533918784, + 26258.885986581878, + 25765.696642320316, + 25226.956696773235, + 24640.32590931866, + 30885.02559804144, + 30782.75794972024, + 30695.64023545422, + 30622.370562699514, + 30561.620602651146, + 30512.035590242736, + 30472.23432414675, + 30440.80916677434, + 30416.326044275404, + 30397.324446538565, + 30382.31742719124, + 30369.791603599537, + 30358.20715686833, + 30345.997831841203, + 30331.570937100503, + 30313.307344967336, + 30289.561491501496, + 30258.66137650158, + 30218.908563504843, + 30168.57817978736, + 30105.918916363924, + 30029.153027988028, + 29936.476333151957, + 29826.058214086705, + 29696.041616762017, + 29544.543050886394, + 29369.652589907037, + 29169.433871009925, + 28941.924095119728, + 28685.134026899916, + 28397.047994752695, + 28075.623890818926, + 27718.793170978326, + 27324.460854849276, + 26890.505525788954, + 26414.779330893187, + 25895.107980996643, + 31063.99227068493, + 30918.800364025843, + 30792.071103259426, + 30682.225275459925, + 30587.657231440444, + 30506.734885752747, + 30437.79971668739, + 30379.166766273618, + 30329.124640279486, + 30285.935508211707, + 30247.835103315814, + 30213.032722576005, + 30179.71122671529, + 30146.02704019536, + 30110.11015121669, + 30070.064111718457, + 30023.96603737859, + 29969.866607613796, + 29905.790065579462, + 29829.734218169764, + 29739.670436017564, + 29633.543653494522, + 29509.272368711023, + 29364.748643516145, + 29197.838103497776, + 29006.379937982503, + 28788.186900035656, + 28541.045306461336, + 28262.715037802296, + 27950.929538340155, + 27603.395816095177, + 27217.79444282639, + 26791.77955403159, + 26322.978848947303, + 25808.99359054875, + 25247.398605549944, + 24635.74228440366, + 31122.5442066113, + 30988.237927628896, + 30871.177509313413, + 30769.876792705534, + 30682.823182584736, + 30608.477647469168, + 30545.274719615823, + 30491.622495020354, + 30445.902633417165, + 30406.47035827941, + 30371.654456818997, + 30339.75727998657, + 30309.054742471486, + 30277.796322701863, + 30244.205062844547, + 30206.477568805174, + 30162.78401022803, + 30111.268120496217, + 30050.047196731553, + 29977.21209979459, + 29890.8272542846, + 29788.930648539656, + 29669.5338346365, + 29530.621928390672, + 29370.153609356414, + 29186.061120826707, + 28976.25026983335, + 28738.600427146743, + 28470.964527276123, + 28171.169068469488, + 27837.014112713467, + 27466.27328573355, + 27056.69377699387, + 26605.996339697376, + 26111.875290785723, + 25571.998510939284, + 24984.00744457724, + 31249.534354171446, + 31142.93610057231, + 31051.83647431006, + 30974.916813564876, + 30910.832020255773, + 30858.210560040443, + 30815.654462315368, + 30781.739320215733, + 30755.014290615465, + 30734.002094127238, + 30717.199015102466, + 30703.074901631346, + 30690.073165542715, + 30676.61078240426, + 30661.078291522328, + 30641.839795942036, + 30617.23296244724, + 30585.56902156054, + 30545.132767543295, + 30494.18255839554, + 30430.95031585611, + 30353.64152540259, + 30260.43523625121, + 30149.484061357067, + 30018.914177413903, + 29866.825324854242, + 29691.290807849367, + 29490.35749430925, + 29262.0458158826, + 29004.349767956952, + 28715.23690965846, + 28392.64836385214, + 28034.49881714164, + 27638.67651986943, + 27203.043286116666, + 26725.434493703277, + 26203.659084187937, + 31456.4728002931, + 31306.62384242856, + 31175.66728828591, + 31062.004751267876, + 30964.011408516057, + 30880.036000910633, + 30808.40083307066, + 30747.401773353904, + 30695.308253856772, + 30650.363270414517, + 30610.783382601116, + 30574.758713729254, + 30540.4529508504, + 30506.0033447547, + 30469.5207099711, + 30429.089424767226, + 30382.767431149518, + 30328.586234863113, + 30264.55090539189, + 30188.640075958465, + 30098.80594352418, + 29992.974268789185, + 29869.044376192283, + 29724.889153911055, + 29558.355053861862, + 29367.26209169972, + 29149.403846818463, + 28902.547462350616, + 28624.433645167446, + 28312.776665879028, + 27965.26435883406, + 27579.55812212006, + 27153.29291756333, + 26684.07727072878, + 26169.493270920153, + 25607.096571179914, + 24994.41638828927, + 31507.37126754683, + 31368.501141641635, + 31247.277858741054, + 31142.19694492698, + 31051.72749002002, + 30974.312147579527, + 30908.367134903623, + 30852.282233029175, + 30804.42078673171, + 30763.11970452559, + 30726.68945866388, + 30693.41408513837, + 30661.55118367962, + 30629.331917756903, + 30594.961014578243, + 30556.616765090403, + 30512.451023978923, + 30460.589209667975, + 30399.13030432061, + 30326.146853838523, + 30239.68496786217, + 30137.76431977079, + 30018.37814668228, + 29879.493249453368, + 29719.04999267945, + 29534.962304694687, + 29325.117677572027, + 29087.377167123068, + 28819.575392898205, + 28519.520538186596, + 28184.99435001604, + 27813.752139153206, + 27403.522780103394, + 26952.008711110706, + 26456.88593415799, + 25915.804014966758, + 25326.386082997367, + 31615.786979245848, + 31504.749668272223, + 31409.561197499166, + 31328.886135830882, + 31261.36261591045, + 31205.602334119554, + 31160.19055057874, + 31123.686089147217, + 31094.621337422926, + 31071.502246742602, + 31052.808332181696, + 31036.99267255439, + 31022.481910413615, + 31007.676252051013, + 30990.949467497052, + 30970.648890520846, + 30945.095418630273, + 30912.583513071964, + 30871.38119883133, + 30819.73006463243, + 30755.845262938117, + 30677.915509950024, + 30584.103085608433, + 30472.543833592445, + 30341.347161319845, + 30188.59603994718, + 30012.347004369778, + 29810.630153221628, + 29581.449148875487, + 29322.78121744293, + 29032.577148774137, + 28708.76129645815, + 28349.231577822644, + 27951.85947393414, + 27514.490029597833, + 27034.941853357635, + 26511.00711749628, + 31851.607306801336, + 31696.96152962486, + 31561.63974209662, + 31444.024383947835, + 31342.47145864858, + 31255.310533407475, + 31180.844739172047, + 31117.350770628516, + 31063.078886201805, + 31016.252908055587, + 30975.070222092338, + 30937.701777953178, + 30902.292089018047, + 30866.95923240558, + 30829.794848973175, + 30788.864143316947, + 30742.205883771767, + 30687.83240241126, + 30623.72959504776, + 30547.856921232364, + 30458.14740425489, + 30352.507631143908, + 30228.817752666724, + 30084.931483329412, + 29918.676101376732, + 29727.85244879222, + 29510.234931298146, + 29263.571518355537, + 28985.58374316409, + 28673.966702662343, + 28326.389057527525, + 27940.49303217555, + 27513.8944147612, + 27044.182557177846, + 26528.920375057765, + 25965.64434777182, + 25351.864518429724, + 31894.55297962821, + 31750.989787259212, + 31625.476138578142, + 31516.489244708002, + 31422.47988051064, + 31341.872384586546, + 31273.064659275, + 31214.428170654046, + 31164.307948540416, + 31121.02258648956, + 31082.864241795807, + 31048.098635492042, + 31014.965052350024, + 30981.6763408802, + 30946.41891333175, + 30907.352745692602, + 30862.611377689464, + 30810.30191278771, + 30748.50501819154, + 30675.2749248438, + 30588.63942742613, + 30486.599884358937, + 30367.131217801307, + 30228.181913651068, + 30067.674021544884, + 29883.503154858037, + 29673.538490704614, + 29435.62276993742, + 29167.572297148, + 28867.176940666708, + 28532.200132562488, + 28160.378868643147, + 27749.423708455244, + 27297.01877528397, + 26800.821756153375, + 26258.463901826137, + 25667.550026803772, + 31983.944470574257, + 31868.357363410614, + 31768.970828893172, + 31684.432666650213, + 31613.364240048835, + 31554.360476194783, + 31505.989865932595, + 31466.794463845505, + 31435.289888255556, + 31409.965321223433, + 31389.283508548695, + 31371.68075976948, + 31355.566948162807, + 31339.32551074436, + 31321.313448268593, + 31299.861325228656, + 31273.27326985651, + 31239.826974122792, + 31197.773693736923, + 31145.338248147007, + 31080.719020539964, + 31002.087957841424, + 30907.590570715685, + 30795.345933565903, + 30663.446684533934, + 30509.959025500306, + 30332.9227220844, + 30130.351103644232, + 29900.2310632766, + 29640.523057817107, + 29349.16110783996, + 29024.052797658205, + 28663.079275323642, + 28264.09525262673, + 27824.929005096743, + 27343.38237200163, + 26817.23075634815, + 32249.58275377058, + 32089.99778508163, + 31950.170220064396, + 31828.4633247786, + 31723.21392902272, + 31632.732426333892, + 31555.30277398808, + 31489.18249300002, + 31432.602668123036, + 31383.767947849323, + 31340.85654440978, + 31302.02023377403, + 31265.384355650454, + 31229.04781348618, + 31191.083074467046, + 31149.536169517633, + 31102.426693301306, + 31047.747804220144, + 30983.466224414948, + 30907.522239765254, + 30817.82969988938, + 30712.276018144377, + 30588.722171625974, + 30445.00270116871, + 30278.925711345873, + 30088.272870469402, + 29870.79941059008, + 29624.23412749735, + 29346.27938071943, + 29034.6110935233, + 28686.878752914625, + 28300.705409637856, + 27873.68767817617, + 27403.395736751485, + 26887.373327324472, + 26323.137755594482, + 25708.179890999665, + 32284.266933213927, + 32135.878964094303, + 32005.944957691507, + 31892.92381016968, + 31795.247981431825, + 31711.323495119646, + 31639.529938613556, + 31578.220463032772, + 31525.721783235207, + 31480.3341778175, + 31440.331489115077, + 31403.961123202065, + 31369.444049891365, + 31334.97480273456, + 31298.72147902207, + 31258.825739782955, + 31213.402809785064, + 31160.541477535004, + 31098.30409527808, + 31024.726578998325, + 30937.81840841858, + 30835.562627000392, + 30715.915841944003, + 30576.80822418848, + 30416.143508411555, + 30231.798993029715, + 30021.62554019827, + 29783.44757581116, + 29515.063089501058, + 29214.24363463952, + 28878.734328336697, + 28506.25385144151, + 28094.494448541685, + 27641.121927963628, + 27143.775661772514, + 26600.06858577222, + 26007.587199505422, + 32354.167546750654, + 32233.917617862437, + 32130.221513648095, + 32041.71026445992, + 31966.988464389033, + 31904.63427126522, + 31853.199406657015, + 31811.20915587178, + 31777.1623679555, + 31749.531455692948, + 31726.762395607653, + 31707.274727961874, + 31689.46155675658, + 31671.68954973153, + 31652.2989383652, + 31629.603517874802, + 31601.890647216274, + 31567.421249084327, + 31524.429809912413, + 31471.124379872657, + 31405.686572876006, + 31326.271566572137, + 31231.008102349373, + 31117.998485334923, + 30985.318584394627, + 30831.017832133104, + 30653.11922489373, + 30449.619322758583, + 30218.48824954845, + 29957.66969282299, + 29665.080903880462, + 29338.612697757955, + 28976.129453231228, + 28575.469112814837, + 28134.443182762072, + 27650.83673306492, + 27122.408397454157, + 32650.585826046172, + 32485.91668955014, + 32341.440198846452, + 32215.500446323284, + 32106.415088107547, + 32012.4753440649, + 31931.94599779977, + 31863.065396655278, + 31804.04545171331, + 31753.071637794485, + 31708.302993458165, + 31667.87212100246, + 31629.885186464217, + 31592.421919618984, + 31553.53561398115, + 31511.25312680369, + 31463.57487907848, + 31408.474855536017, + 31343.90060464561, + 31267.77323861526, + 31177.987433391747, + 31072.411428660544, + 30948.887027845947, + 30805.229598110876, + 30639.228070357072, + 30448.644939225043, + 30231.21626309393, + 29984.651664081717, + 29706.63432804505, + 29394.82100457937, + 29046.84200701887, + 28660.301212436385, + 28232.776061643595, + 27761.81755919092, + 27244.95027336741, + 26679.672336200965, + 26063.45544345821, + 32676.690439946782, + 32523.343493043933, + 32388.856646232325, + 32271.670480717345, + 32170.199141443125, + 32082.83033709252, + 32007.92534008717, + 31943.818986587416, + 31888.819676492338, + 31841.209373439782, + 31799.243604806295, + 31761.151461707224, + 31725.135598996596, + 31689.372235267187, + 31652.011152850566, + 31611.175697816976, + 31564.96277997545, + 31511.44287287371, + 31448.66001379829, + 31374.631803774377, + 31287.349407565955, + 31184.777553675758, + 31064.85453434521, + 30925.49220555452, + 30764.5759870226, + 30579.96486220712, + 30369.491378304545, + 30130.961646249954, + 29862.15534071726, + 29560.825700119138, + 29224.699526606903, + 28851.477186070686, + 28438.832608139342, + 27984.413286180472, + 27485.840277300387, + 26940.708202344173, + 26346.58524589567, + 32726.616647653384, + 32601.588584787107, + 32493.46911820432, + 32400.87250898139, + 32322.386581933435, + 32256.572725614264, + 32201.965892316515, + 32157.074598071493, + 32120.380922649263, + 32090.340509558613, + 32065.382566047116, + 32043.90986310107, + 32024.298735445493, + 32004.89908154412, + 31984.03436359952, + 31960.001607552884, + 31931.071403084225, + 31895.487903612247, + 31851.4688262945, + 31797.205452027076, + 31730.86262544499, + 31650.578754921924, + 31554.46581257029, + 31440.60933424127, + 31307.06841952475, + 31151.875731749402, + 30973.037497982612, + 30768.533509030498, + 30536.31711943792, + 30274.31524748851, + 29980.4283752046, + 29652.530548347284, + 29288.469376416364, + 28886.066032650437, + 28443.11525402681, + 27957.385341261528, + 27426.618158809393, + 33054.802929757825, + 32884.90204506609, + 32735.630876384395, + 32605.31434242943, + 32492.25092565659, + 32394.71267225993, + 32310.945192172414, + 32239.167659065624, + 32177.572810349848, + 32124.32694717425, + 32077.569934426614, + 32035.41520073353, + 31995.9497384603, + 31957.234103710976, + 31917.302416328348, + 31874.16235989393, + 31825.795181727994, + 31770.155692889584, + 31705.172268176404, + 31628.74684612495, + 31538.754929010458, + 31433.045582846924, + 31309.44143738702, + 31165.738686122204, + 30999.707086282655, + 30809.08995883732, + 30591.604188493875, + 30344.940223698715, + 30066.762076636966, + 29754.70732323258, + 29406.387103148118, + 29019.386119784984, + 28591.262640283257, + 28119.548495521838, + 27601.749080118294, + 27035.343352428932, + 26417.783834548856, + 33072.00053275406, + 32913.55791628951, + 32774.38325563624, + 32652.898817040794, + 32547.500430488504, + 32456.557489703362, + 32378.41295214819, + 32311.383339024513, + 32253.758735272553, + 32203.80278957132, + 32159.752714338585, + 32119.819285730784, + 32082.186843643158, + 32045.013291709707, + 32006.43009730304, + 31964.542291534653, + 31917.42846925474, + 31863.140789052202, + 31799.704973254702, + 31725.120307928646, + 31637.359642879157, + 31534.369391650114, + 31414.06953152416, + 31274.35360352263, + 31113.08871240565, + 30928.115526672038, + 30717.248278559386, + 30478.274764044025, + 30208.95634284097, + 29907.027938404073, + 29570.198037925868, + 29196.14869233759, + 28782.5355163093, + 28326.987688249737, + 27827.107950306436, + 27280.47260836561, + 26684.63153205224, + 33101.451934445235, + 32971.528138628426, + 32858.86923028671, + 32762.072701220484, + 32679.70960696891, + 32610.324566809846, + 32552.435763759942, + 32504.534944574556, + 32465.087419747768, + 32432.53206351241, + 32405.281313840092, + 32381.72117244111, + 32360.211204764535, + 32339.084539998195, + 32316.647871068555, + 32291.181454640977, + 32260.939111119435, + 32224.148224646717, + 32179.009743104303, + 32123.698178112434, + 32056.3616050301, + 31975.121662955007, + 31878.07355472364, + 31763.286046911177, + 31628.801469831567, + 31472.635717537498, + 31292.778247820366, + 31087.19208221038, + 30853.81380597638, + 30590.553568126037, + 30295.295081405755, + 29965.895622300603, + 29600.18603103448, + 29195.970711569964, + 28751.027631608424, + 28263.108322589916, + 27729.937879693276, + 33462.420192319696, + 33287.1373749495, + 33132.92317190424, + 32998.083328229004, + 32880.89715270768, + 32779.617517862825, + 32692.47085995583, + 32617.65717898672, + 32553.35003869432, + 32497.696566556195, + 32448.817453788637, + 32404.806955346678, + 32363.73288992412, + 32323.636639953445, + 32282.533151605923, + 32238.410934791536, + 32189.23206315902, + 32132.93217409589, + 32067.420468728316, + 31990.579711921277, + 31900.266232278456, + 31794.309922142293, + 31670.51423759396, + 31526.656198453384, + 31360.486388279198, + 31169.728954368817, + 30952.08160775839, + 30705.215623222768, + 30426.77583927555, + 30114.38065816915, + 29765.622045894608, + 29378.065532181787, + 28949.250210499245, + 28476.688738054316, + 27957.867335793053, + 27390.245788400247, + 26771.257444299423, + 33470.3739658474, + 33306.69649729688, + 33162.69655862326, + 33036.77810111425, + 32927.31863979636, + 32832.66925343474, + 32751.154584533382, + 32681.07283933498, + 32620.69578782094, + 32568.268763711418, + 32522.01066446538, + 32480.11395128041, + 32440.74464909293, + 32402.042346578084, + 32362.120196149684, + 32319.06491396039, + 32270.936779901545, + 32215.7696376032, + 32151.570894434273, + 32076.32152150224, + 31987.976053653434, + 31884.46258947294, + 31763.682791284493, + 31623.511885150663, + 31461.79866087271, + 31276.36547199061, + 31065.008235783193, + 30825.49643326788, + 30555.57310920088, + 30252.954872077247, + 29915.33189413062, + 29540.367911333466, + 29125.700223396983, + 28668.939693771074, + 28167.67074964445, + 27619.45138194451, + 27021.8131453374, + 33478.833289573384, + 33343.89387511456, + 33226.57715890442, + 33125.46386346741, + 33039.10827506672, + 32966.038243704235, + 32904.75518312063, + 32853.734070795304, + 32811.42344794637, + 32776.24541953069, + 32746.595654243913, + 32720.843384520384, + 32697.33140653316, + 32674.376080194135, + 32650.267329153816, + 32623.268640801565, + 32591.617066265422, + 32553.52322041217, + 32507.171281847368, + 32450.718992915266, + 32382.29765969887, + 32300.01215201997, + 32201.940903439016, + 32086.135911255267, + 31950.622736506688, + 31793.40050397001, + 31612.44190216066, + 31405.693183332853, + 31171.074163479505, + 30906.478222332295, + 30609.77230336165, + 30278.796913776696, + 29911.366124525342, + 29505.267570294225, + 29058.26244950874, + 28568.08552433296, + 28032.44512066977, + 33873.62346243037, + 33692.80592380494, + 33533.49772591643, + 33393.98544013841, + 33272.52920158321, + 33167.36270910184, + 33076.693225284194, + 32998.70157645874, + 32931.542152692775, + 32873.34290779234, + 32822.20535930219, + 32776.204588505825, + 32733.38924042549, + 32691.78152382216, + 32649.377211195566, + 32604.145638784157, + 32554.029706565147, + 32496.945878254483, + 32430.78418130683, + 32353.408206915643, + 32262.655110013035, + 32156.335609269936, + 32032.233987096002, + 31888.10808963958, + 31721.68932678782, + 31530.68267216658, + 31312.766663140468, + 31065.593400812813, + 30786.788550025678, + 30473.951339359926, + 30124.654561135107, + 29736.444571409505, + 29306.841289980177, + 28833.33820038294, + 28313.40234989224, + 27744.474349521373, + 27123.968374022403, + 33871.987214722896, + 33702.9332208163, + 33553.96804919782, + 33423.47733619633, + 33309.82028187949, + 33211.329650053616, + 33126.311768263906, + 33053.04652779419, + 32989.78738366702, + 32934.76135464381, + 32886.169023224575, + 32842.18453564815, + 32800.95560189214, + 32760.60349567278, + 32719.22305444512, + 32674.882679402963, + 32625.6243354788, + 32569.46355134392, + 32504.389419408308, + 32428.36459582069, + 32339.325300468536, + 32235.181316978098, + 32113.815992714302, + 31973.086238780874, + 31810.822530020214, + 31624.828905013528, + 31412.882966080764, + 31172.735879280506, + 30902.11237441019, + 30598.710745005992, + 30260.20284834272, + 29884.23410543405, + 29468.423501032295, + 29010.363583628583, + 28507.620465452746, + 27957.73382247335, + 27358.216894397763, + 33858.92031676943, + 33718.84311125813, + 33596.747934351115, + 33491.19873929683, + 33400.73304308253, + 33323.861926434096, + 33259.070033816264, + 33204.81557343244, + 33159.530317224795, + 33121.61960087422, + 33089.46232380038, + 33061.410949161655, + 33035.79150385518, + 33010.90357851679, + 32985.02032752113, + 32956.38846898153, + 32923.22828475006, + 32883.73362041756, + 32836.071885313635, + 32778.384052506524, + 32708.78465880331, + 32625.361804749788, + 32526.177154630444, + 32409.265936468586, + 32272.636942026198, + 32114.272526804027, + 31932.12861004159, + 31724.13467471707, + 31488.193767547436, + 31222.18249898845, + 30923.951043234483, + 30591.323138218748, + 30222.096085613222, + 29814.040750828506, + 29364.901563014035, + 28872.396515057928, + 28334.21716358715, + 34288.59831007274, + 34102.09065752125, + 33937.53490021578, + 33793.19843585834, + 33667.322225889795, + 33558.12079548959, + 33463.782233576036, + 33382.468192806155, + 33312.31388957566, + 33251.42810401906, + 33197.89318000958, + 33149.76502515919, + 33105.0731108186, + 33061.82047207726, + 33017.98370776335, + 32971.5129804438, + 32920.33201642429, + 32862.33810574922, + 32795.40210220175, + 32717.368423303767, + 32626.055050315877, + 32519.25352823748, + 32394.728965806662, + 32250.220035500286, + 32083.438973533946, + 31892.07157986195, + 31673.77721817737, + 31426.188815912064, + 31146.912864236492, + 30833.529418060003, + 30483.592096030647, + 30094.62808053511, + 29664.138117698993, + 29189.59651738647, + 28668.45115320059, + 28098.12346248305, + 27476.008446314336, + 34277.01647616096, + 34102.4417928824, + 33948.36894264873, + 33813.165246829994, + 33695.17159053503, + 33592.70242261136, + 33504.04575564527, + 33427.4631659618, + 33361.18979362471, + 33303.434342436485, + 33252.37907993844, + 33206.179837410484, + 33162.96600987138, + 33120.8405560786, + 33077.87999852833, + 33032.13442345551, + 32981.627480833886, + 32924.35638437581, + 32858.2919115325, + 32781.378403493865, + 32691.533765188495, + 32586.649465283837, + 32464.590536185988, + 32323.195574039808, + 32160.27673872894, + 31973.619753875697, + 31760.983906841197, + 31520.102048725243, + 31248.680594366397, + 30944.399522341988, + 30604.912374968033, + 30227.846258299338, + 29810.80184212946, + 29351.353359990593, + 28847.048609153822, + 28295.40895062885, + 27693.929309164178, + 34241.87234104932, + 34096.532885356144, + 33969.536308204806, + 33859.42979356779, + 33764.73408915637, + 33683.94350642052, + 33615.52592054892, + 33557.922770469086, + 33509.54905884719, + 33468.793352088134, + 33434.017780335664, + 33403.55803747216, + 33375.72338111876, + 33348.79663263543, + 33321.034177120746, + 33290.6659634121, + 33255.89550408565, + 33214.89987545622, + 33165.82971757742, + 33106.80923424159, + 33035.93619297978, + 32951.28192506186, + 32850.89132549635, + 32732.782853030545, + 32594.948530150537, + 32435.35394308105, + 32251.93824178563, + 32042.614139966525, + 31805.267915064727, + 31537.75940826002, + 31237.922024470816, + 30903.562732354363, + 30532.46206430666, + 30122.37411646234, + 29671.0265486949, + 29176.120584616485, + 28635.331011578026, + 34707.5300265142, + 34515.17426327173, + 34345.21477788152, + 34195.89979437404, + 34065.45110051858, + 33952.06404782313, + 33853.9075515344, + 33769.124090637895, + 33695.82970785784, + 33632.11400965714, + 33576.04016623755, + 33525.64491153945, + 33478.938543242046, + 33433.904922763264, + 33388.50147525975, + 33340.65918962688, + 33288.28261849881, + 33229.24987824841, + 33161.41264898731, + 33082.59617456585, + 32990.59926257312, + 32883.19428433697, + 32758.12717492399, + 32613.117433139432, + 32445.85812152743, + 32254.01586637073, + 32035.230857690887, + 31787.11684924821, + 31507.261158541616, + 31193.22466680896, + 30842.54181902669, + 30452.720623910045, + 30021.242653913025, + 29545.563045228326, + 29023.110497787417, + 28451.28727526046, + 27827.469205056448, + 34685.63766822649, + 34505.395640814226, + 34346.07017554923, + 34206.01027884271, + 34083.538520844624, + 33976.95103544372, + 33884.517520267436, + 33804.481236682, + 33735.059009792305, + 33674.44122844205, + 33620.791845213644, + 33572.24837642823, + 33526.921902145725, + 33482.897066164755, + 33438.232076022716, + 33390.958702995675, + 33339.08228209852, + 33280.58171208487, + 33213.40945544702, + 33135.491538416085, + 33044.72755096183, + 32938.99064679284, + 32816.12754335642, + 32673.9585218386, + 32510.27742716413, + 32322.851667996554, + 32109.42221673813, + 31867.70360952986, + 31595.38394625143, + 31290.124890521383, + 30949.561669696905, + 30571.3030748739, + 30152.931460887146, + 29692.00274631006, + 29186.046413454784, + 28632.565508372252, + 28029.036640852184, + 34627.84840871346, + 34477.119956989976, + 34345.09675332789, + 34230.30921242372, + 34131.26131271275, + 34046.43059636897, + 33974.26816930515, + 33913.198701172776, + 33861.62042536208, + 33817.90513900203, + 33780.39820296034, + 33747.418541843464, + 33717.258643996596, + 33688.18456150365, + 33658.435910187356, + 33626.22586960904, + 33589.741183068894, + 33547.14215760585, + 33496.56266399747, + 33436.11013676019, + 33363.86557414908, + 33277.88353815799, + 33176.19215451954, + 33056.793112705025, + 32917.66166592455, + 32756.74663112692, + 32571.970388999704, + 32361.228883969172, + 32122.391624200318, + 31853.30168159697, + 31551.775691801657, + 31215.603854195546, + 30842.5499318987, + 30430.35125176986, + 29976.718704406438, + 29479.33674414468, + 28935.86338905959, + 35130.603624306474, + 34932.23914951406, + 34756.71716327726, + 34602.26671595501, + 34467.09042164507, + 34349.364458183874, + 34247.23856714663, + 34158.836053847284, + 34082.253787338544, + 34015.562200411776, + 33956.8052895972, + 33904.00061516367, + 33855.13930111886, + 33808.186035209146, + 33761.079068919644, + 33711.73021747422, + 33658.02485983549, + 33597.82193870475, + 33528.953960522136, + 33449.22699546648, + 33356.420677455266, + 33248.288204144854, + 33122.55633693031, + 32976.925400945336, + 32809.06928506255, + 32616.635441893133, + 32397.24488778714, + 32148.492202833313, + 31867.945530859073, + 31553.146579430704, + 31201.610619853174, + 30810.826487170143, + 30378.256580164063, + 29901.336861356143, + 29377.476857006295, + 28804.05965711316, + 28178.441915414183, + 35098.02643026873, + 34911.96791321522, + 34747.242405756915, + 34602.18059934621, + 34475.08674917425, + 34364.238674170876, + 34267.88775700478, + 34184.2589440833, + 34111.55074555252, + 34047.93523529731, + 33991.558050941254, + 33940.538393846655, + 33892.969029114596, + 33846.91628558488, + 33800.42005583605, + 33751.49379618538, + 33698.124526688924, + 33638.27283114142, + 33569.87285707638, + 33490.83231576607, + 33399.0324822214, + 33292.32819519218, + 33168.547857166865, + 33025.493434372605, + 32860.940456775395, + 32672.638018079884, + 32458.308775729532, + 32215.648950906492, + 31942.328328531643, + 31635.99025726468, + 31294.25164950395, + 30914.70298138658, + 30494.908292788452, + 30032.405187324155, + 29524.704832347044, + 28969.291958949176, + 28363.62486196146, + 35017.00728734663, + 34860.76080702545, + 34723.583463867224, + 34603.98890329248, + 34500.4643344605, + 34411.47053026934, + 34335.44182735581, + 34270.78612609542, + 34215.88489060243, + 34169.09314872983, + 34128.7394920694, + 34093.126075951586, + 34060.528619445664, + 34029.196405359544, + 33997.352280239975, + 33963.19265437235, + 33924.887501780926, + 33880.580360228545, + 33828.388331216935, + 33766.4020799865, + 33692.68583551634, + 33605.27739052436, + 33502.18810146723, + 33381.40288854022, + 33240.88023567753, + 33078.55219055195, + 32892.32436457508, + 32680.075932897264, + 32439.65963440752, + 32168.901771733686, + 31865.602211242312, + 31527.53438303866, + 31152.445280966782, + 30738.05546260943, + 30282.0590492881, + 29782.123726063033, + 29235.890741733263, + 35558.00383728576, + 35353.467445990405, + 35172.22158205108, + 35012.47612215529, + 34872.41450672921, + 34750.19373993772, + 34643.944389684555, + 34551.770587612096, + 34471.75002910149, + 34401.93397327262, + 34340.34724298413, + 34284.98822483337, + 34233.82886915649, + 34184.81469002827, + 34135.86476526238, + 34084.87173641109, + 34029.70180876547, + 33968.19475135539, + 33898.163896949336, + 33817.396142054626, + 33723.65194691728, + 33614.66533552207, + 33488.14389559248, + 33341.7687785908, + 33173.194699718006, + 32980.04993791383, + 32759.936335856717, + 32510.42929996391, + 32229.07780039134, + 31913.404371033703, + 31560.9051095244, + 31169.049677235656, + 30735.28129927833, + 30257.016764502107, + 29731.646425495357, + 29156.5341985852, + 28529.017563837522, + 35514.35812292139, + 35322.331479973276, + 35152.0560124139, + 35001.84409673679, + 34869.981673174305, + 34754.72824569747, + 34654.316882016086, + 34566.95421357868, + 34490.82043557255, + 34424.06930692366, + 34364.82815029682, + 34311.19785209548, + 34261.25286246191, + 34213.04119527706, + 34164.58442816063, + 34113.87770247111, + 34058.88972330568, + 33997.562759500266, + 33927.81264362954, + 33847.52877200693, + 33754.574104684594, + 33646.7851654534, + 33521.97204184298, + 33377.918385121746, + 33212.38141029679, + 33023.09189611394, + 32807.754185057835, + 32564.046183351795, + 32289.619360957837, + 31982.098751576883, + 31639.082952648423, + 31258.14412535073, + 30836.827994600877, + 30372.65384905461, + 29863.11454110648, + 29305.676486889708, + 28697.77966627631, + 35409.50746581801, + 35247.611637612805, + 35105.15035525405, + 34980.62049488629, + 34872.49249639291, + 34779.210363395934, + 34699.19166325624, + 34630.82752707337, + 34572.48264968559, + 34522.49528966993, + 34479.177269342246, + 34440.813974756966, + 34405.66435570741, + 34371.96092572554, + 34337.9097620821, + 34301.69050578658, + 34261.45636158719, + 34215.334097970874, + 34161.424047163375, + 34097.80010512908, + 34022.50973157118, + 33933.573949931626, + 33828.98734739103, + 33706.71807486882, + 33564.707847023135, + 33400.8719422508, + 33213.099202687496, + 32999.25203420758, + 32757.166406424072, + 32484.651852688927, + 32179.49147009265, + 31839.44191946455, + 31462.23342537272, + 31045.56977612392, + 30587.128323763744, + 30084.559984076423, + 29535.48923658501, + 35605.76787822833, + 35400.53553037728, + 35218.64360485668, + 35058.29984794429, + 34917.68556965668, + 34794.9556437491, + 34688.23850771557, + 34595.63616278885, + 34515.22417394045, + 34445.051669880566, + 34383.14134305823, + 34327.48944966113, + 34276.06580961572, + 34226.81380658721, + 34177.65038797953, + 34126.466064935325, + 34071.12491233609, + 34009.464568801886, + 33939.296236691676, + 33858.4046821031, + 33764.54823487249, + 33655.458788574986, + 33528.84180052447, + 33382.37629177347, + 33213.71484711341, + 33020.4836150743, + 32800.28230792497, + 32550.684201673044, + 32269.23613606469, + 31953.458514585043, + 31600.845304457882, + 31208.864036645642, + 30774.95580584967, + 30296.535270509925, + 29770.990652805118, + 29195.683738652773, + 28567.94987770912, + 35560.86823587604, + 35368.16899883288, + 35197.26750615237, + 35046.474099331004, + 34914.07268360409, + 34798.32072794557, + 34697.44926506823, + 34609.662891423526, + 34533.13976720168, + 34466.03161633164, + 34406.46372648115, + 34352.53494905661, + 34302.31769920322, + 34253.85795580487, + 34205.17526148426, + 34154.26272260275, + 34099.087009260526, + 34037.58835529643, + 33967.6805582881, + 33887.25097955191, + 33794.16054414291, + 33686.24374085498, + 33561.308622220706, + 33417.136804511356, + 33251.48346773707, + 33062.07735564659, + 32846.620775727475, + 32602.789599205993, + 32328.233261047193, + 32020.57475995481, + 31677.410658371322, + 31296.31108247803, + 30874.819722194865, + 30410.453831180563, + 29900.704226832597, + 29343.035290287145, + 28734.884966419188, + 35453.33176001468, + 35290.80002051921, + 35147.743521668934, + 35022.65727635404, + 34914.00986120352, + 34820.24341658504, + 34739.7736466051, + 34670.989819108836, + 34612.254765680176, + 34561.90488164178, + 34518.25012605507, + 34479.57402172017, + 34444.13365517596, + 34410.15967670007, + 34375.85630030886, + 34339.40130375744, + 34298.946028539634, + 34252.61537988805, + 34198.50782677397, + 34134.69540190749, + 34059.22370173741, + 33970.111886451254, + 33865.35267997531, + 33742.912369974605, + 33600.7308078529, + 33436.72140875271, + 33248.77115155526, + 33034.74057888052, + 32792.463797087235, + 32519.748476272867, + 32214.375850273587, + 31874.10071666439, + 31496.651436758904, + 31079.72993560959, + 30621.011702007603, + 30118.14578848283, + 29568.754811303952, + 53584.11068304391, + 53061.432586793984, + 52578.08238804535, + 52131.628710693134, + 51719.613742371155, + 51339.55323445184, + 50988.93650204666, + 50665.22642400541, + 50365.859442916946, + 50088.24556510884, + 49829.768360647235, + 49587.78496333714, + 49359.6260707223, + 49142.59594408513, + 48933.97240844685, + 48731.006852567414, + 48530.92422894547, + 48330.923053818486, + 48128.17540716257, + 47919.82693269262, + 47702.99683786236, + 47474.77789386402, + 47232.23643562885, + 46972.4123618267, + 46692.31913486606, + 46388.9437808944, + 46059.24688979774, + 45700.1626152009, + 45308.59867446743, + 44881.436348699615, + 44415.53048273856, + 43907.70948516402, + 43354.77532829447, + 42753.503548187175, + 42100.643244638246, + 41392.917081182255, + 40627.02128509279, + 52885.500476116234, + 52389.58257612312, + 51930.39092000959, + 51505.62535064616, + 51112.959274641944, + 50750.03966234488, + 50414.4870478417, + 50103.89552895773, + 49815.83276725712, + 49547.839988042855, + 49297.43198035643, + 49062.0970969783, + 48839.29725442752, + 48626.46793296199, + 48421.018176578196, + 48220.330593011626, + 48021.76135373616, + 47822.64019396478, + 47620.27041264887, + 47411.92887247883, + 47194.865999883674, + 46966.305785031094, + 46723.445781827664, + 46463.45710791865, + 46183.4844446879, + 45880.646037258324, + 45552.03369449129, + 45194.71278898702, + 44805.72225708444, + 44382.07459886125, + 43920.755878133874, + 43418.72572245749, + 42872.917323126014, + 42280.23743517203, + 41637.56637736705, + 40941.758032221056, + 40189.63984598298, + 51522.270649461476, + 51080.23568072354, + 50670.73140870886, + 50291.69387044364, + 49941.03266669271, + 49616.63096195969, + 49316.34548448698, + 49038.00652625564, + 48779.41794298548, + 48538.357154135236, + 48312.57514290203, + 48099.79645622208, + 47897.71920477009, + 47704.01506295969, + 47516.329268943024, + 47332.28062461128, + 47149.46149559408, + 46965.43781126007, + 46777.74906471631, + 46583.9083128089, + 46381.40217612262, + 46167.69083898077, + 45940.20804944566, + 45696.36111931823, + 45433.53092413807, + 45149.071903183736, + 44840.31205947231, + 44504.55295975972, + 44139.06973454058, + 43741.111078048256, + 43307.89924825494, + 42836.630066871454, + 42324.4729193474, + 41768.570754871085, + 41166.040086369714, + 40513.97099050895, + 39809.42710769344 + ], + "input_power": [ + 11994.683766299999, + 12129.545662537033, + 12276.465575959257, + 12435.443506566662, + 12606.479454359256, + 12789.573419337035, + 12984.725401499993, + 13191.93540084814, + 13411.203417381479, + 13642.529451099994, + 13885.913502003705, + 14141.35557009259, + 14408.855655366662, + 14688.413757825918, + 14980.029877470368, + 15283.704014299992, + 15599.43616831481, + 15927.226339514807, + 16267.074527899993, + 16618.98073347037, + 16982.944956225925, + 17358.96719616666, + 17747.04745329259, + 18147.185727603697, + 18559.38201909999, + 18983.636327781478, + 19419.94865364814, + 19868.318996699993, + 20328.747356937045, + 20801.23373435926, + 21285.778128966664, + 21782.380540759255, + 22291.04096973704, + 22811.759415900004, + 23344.53587924814, + 23889.37035978147, + 24446.262857499976, + 12556.733131199999, + 12696.234252148142, + 12847.79339028148, + 13011.410545599996, + 13187.085718103699, + 13374.818907792593, + 13574.610114666664, + 13786.459338725917, + 14010.36657997037, + 14246.331838399994, + 14494.355114014817, + 14754.436406814815, + 15026.575716799996, + 15310.773043970363, + 15607.028388325925, + 15915.341749866662, + 16235.713128592593, + 16568.142524503703, + 16912.629937599995, + 17269.175367881486, + 17637.77881534815, + 18018.440279999995, + 18411.159761837032, + 18815.937260859253, + 19232.772777066657, + 19661.666310459255, + 20102.61786103703, + 20555.62742879999, + 21020.695013748147, + 21497.820615881472, + 21987.00423519999, + 22488.245871703704, + 23001.545525392587, + 23526.90319626667, + 24064.318884325923, + 24613.792589570367, + 25175.324311999986, + 13561.89265542, + 13709.744380848146, + 13869.654123461482, + 14041.621883259999, + 14225.647660243701, + 14421.731454412591, + 14629.873265766662, + 14850.07309430592, + 15082.33094003037, + 15326.646802939998, + 15583.020683034818, + 15851.452580314815, + 16131.942494779994, + 16424.490426430362, + 16729.096375265926, + 17045.760341286663, + 17374.482324492594, + 17715.262324883704, + 18068.100342459995, + 18432.996377221483, + 18809.950429168148, + 19198.962498299996, + 19600.032584617038, + 20013.16068811926, + 20438.34680880666, + 20875.590946679262, + 21324.893101737034, + 21786.25327397999, + 22259.671463408147, + 22745.147670021477, + 23242.681893819987, + 23752.274134803705, + 24273.924392972585, + 24807.63266832667, + 25353.39896086593, + 25911.223270590373, + 26481.10559749999, + 11964.242558748, + 12098.292531337034, + 12244.40052111126, + 12402.566528070665, + 12572.790552215258, + 12755.072593545037, + 12949.412652059998, + 13155.810727760145, + 13374.266820645482, + 13604.780930715997, + 13847.353057971708, + 14101.983202412594, + 14368.671364038664, + 14647.417542849922, + 14938.221738846372, + 15241.083952027995, + 15556.00418239482, + 15882.982429946816, + 16222.018694683997, + 16573.112976606375, + 16936.265275713926, + 17311.475592006664, + 17698.7439254846, + 18098.070276147704, + 18509.454643995996, + 18932.897029029486, + 19368.397431248148, + 19815.955850651997, + 20275.572287241037, + 20747.24674101526, + 21230.979211974656, + 21726.76970011927, + 22234.61820544903, + 22754.524727964006, + 23286.48926766415, + 23830.51182454948, + 24386.592398619992, + 12524.734060632001, + 12663.421565708144, + 12814.167087969481, + 12976.970627415998, + 13151.832184047702, + 13338.751757864591, + 13537.729348866666, + 13748.764957053923, + 13971.85858242637, + 14207.010224983997, + 14454.21988472682, + 14713.487561654816, + 14984.813255768, + 15268.196967066366, + 15563.638695549926, + 15871.138441218662, + 16190.696204072594, + 16522.311984111708, + 16865.985781335996, + 17221.717595745486, + 17589.507427340148, + 17969.355276119997, + 18361.26114208504, + 18765.22502523526, + 19181.246925570656, + 19609.326843091265, + 20049.46477779704, + 20501.660729688, + 20965.914698764147, + 21442.226685025482, + 21930.59668847199, + 22431.02470910371, + 22943.510746920587, + 23468.054801922674, + 24004.65687410993, + 24553.316963482368, + 25114.03507003999, + 13527.089431423205, + 13674.124494976148, + 13833.217575714285, + 14004.368673637598, + 14187.577788746103, + 14382.844921039794, + 14590.170070518665, + 14809.553237182725, + 15040.994421031974, + 15284.493622066397, + 15540.05084028602, + 15807.666075690817, + 16087.339328280797, + 16379.070598055965, + 16682.859885016333, + 16998.707189161865, + 17326.612510492596, + 17666.575849008506, + 18018.597204709597, + 18382.67657759589, + 18758.81396766735, + 19147.009374923997, + 19547.262799365843, + 19959.57424099286, + 20383.943699805062, + 20820.371175802462, + 21268.85666898504, + 21729.400179352797, + 22202.00170690575, + 22686.661251643887, + 23183.378813567197, + 23692.154392675708, + 24212.987988969395, + 24745.879602448273, + 25290.82923311233, + 25847.83688096157, + 26416.902545995992, + 11919.908813969998, + 12052.740901087034, + 12197.631005389258, + 12354.579126876668, + 12523.585265549258, + 12704.649421407039, + 12897.771594449998, + 13102.951784678145, + 13320.189992091482, + 13549.486216689997, + 13790.840458473705, + 14044.252717442594, + 14309.722993596664, + 14587.251286935922, + 14876.837597460373, + 15178.481925169997, + 15492.184270064816, + 15817.944632144814, + 16155.763011409996, + 16505.639407860373, + 16867.573821495924, + 17241.56625231666, + 17627.616700322596, + 18025.725165513704, + 18435.891647889992, + 18858.11614745148, + 19292.398664198146, + 19738.73919813, + 20197.137749247042, + 20667.594317549258, + 21150.10890303666, + 21644.681505709264, + 22151.312125567034, + 22670.00076261001, + 23200.747416838152, + 23743.552088251487, + 24298.414776849993, + 12478.063521330001, + 12615.530602598144, + 12765.055701051482, + 12926.638816690001, + 13100.279949513702, + 13285.979099522594, + 13483.736266716664, + 13693.551451095924, + 13915.424652660367, + 14149.355871409995, + 14395.345107344818, + 14653.392360464815, + 14923.497630769998, + 15205.66091826037, + 15499.882222935928, + 15806.161544796661, + 16124.498883842598, + 16454.894240073703, + 16797.347613489997, + 17151.85900409149, + 17518.428411878147, + 17897.05583685, + 18287.741279007045, + 18690.48473834926, + 19105.286214876658, + 19532.145708589265, + 19971.063219487034, + 20422.038747569997, + 20885.072292838155, + 21360.16385529149, + 21847.313434929998, + 22346.521031753706, + 22857.78664576259, + 23381.110276956675, + 23916.491925335933, + 24463.931590900378, + 25023.429273649992, + 13476.212661978003, + 13622.022732718151, + 13779.890820643483, + 13949.816925754003, + 14131.801048049701, + 14325.843187530594, + 14531.943344196668, + 14750.101518047926, + 14980.317709084373, + 15222.591917306, + 15476.92414271282, + 15743.314385304819, + 16021.762645081999, + 16312.268922044372, + 16614.833216191924, + 16929.455527524668, + 17256.135856042598, + 17594.874201745708, + 17945.670564633998, + 18308.52494470749, + 18683.43734196615, + 19070.40775641, + 19469.436188039042, + 19880.522636853264, + 20303.66710285267, + 20738.869586037265, + 21186.13008640704, + 21645.448603962, + 22116.825138702156, + 22600.259690627485, + 23095.752259737994, + 23603.302846033715, + 24122.91144951459, + 24654.578070180683, + 25198.302708031933, + 25754.085363068374, + 26321.926035289995, + 11877.168749051998, + 12008.782950697034, + 12152.455169527258, + 12308.185405542665, + 12475.973658743256, + 12655.819929129037, + 12847.724216699999, + 13051.686521456142, + 13267.70684339748, + 13495.785182523998, + 13735.921538835708, + 13988.115912332592, + 14252.368303014662, + 14528.67871088192, + 14817.047135934372, + 15117.473578171994, + 15429.958037594819, + 15754.500514202817, + 16091.101007995994, + 16439.75951897437, + 16800.476047137927, + 17173.250592486664, + 17558.0831550206, + 17954.973734739706, + 18363.922331643997, + 18784.928945733485, + 19217.993577008147, + 19663.116225468, + 20120.29689111304, + 20589.53557394326, + 21070.832273958662, + 21564.186991159266, + 22069.59972554503, + 22587.07047711601, + 23116.599245872156, + 23658.186031813482, + 24211.830834939996, + 12432.986661888, + 12569.233319348145, + 12717.537993993485, + 12877.900685823999, + 13050.3213948397, + 13234.800121040595, + 13431.336864426667, + 13639.931624997917, + 13860.584402754372, + 14093.295197695998, + 14338.06400982282, + 14594.890839134814, + 14863.775685632001, + 15144.718549314366, + 15437.719430181927, + 15742.778328234666, + 16059.8952434726, + 16389.070175895708, + 16730.303125503997, + 17083.594092297484, + 17448.943076276155, + 17826.35007744, + 18215.81509578904, + 18617.33813132326, + 19030.91918404266, + 19456.55825394726, + 19894.255341037046, + 20344.010445311997, + 20805.823566772156, + 21279.694705417485, + 21765.623861247997, + 22263.611034263704, + 22773.656224464594, + 23295.75943185068, + 23829.92065642193, + 24376.139898178368, + 24934.41715712, + 13426.9295723928, + 13571.514650320145, + 13728.157745432685, + 13896.8588577304, + 14077.617987213302, + 14270.435133881392, + 14475.310297734666, + 14692.243478773122, + 14921.234676996772, + 15162.283892405598, + 15415.391124999622, + 15680.556374778818, + 15957.7796417432, + 16247.060925892769, + 16548.40022722753, + 16861.797545747464, + 17187.252881452598, + 17524.766234342904, + 17874.3376044184, + 18235.966991679084, + 18609.65439612495, + 18995.399817756, + 19393.20325657224, + 19803.064712573658, + 20224.984185760262, + 20658.961676132065, + 21104.99718368904, + 21563.0907084312, + 22033.24225035855, + 22515.451809471084, + 23009.719385768793, + 23516.04497925171, + 24034.428589919793, + 24564.870217773077, + 25107.369862811527, + 25661.927525035167, + 26228.543204443995, + 11836.022363994001, + 11966.418680167035, + 12108.873013525259, + 12263.385364068665, + 12429.955731797258, + 12608.584116711037, + 12799.270518809999, + 13002.014938094144, + 13216.817374563481, + 13443.677828217997, + 13682.596299057706, + 13933.572787082594, + 14196.607292292663, + 14471.699814687921, + 14758.85035426837, + 15058.058911033997, + 15369.325484984818, + 15692.650076120817, + 16028.032684441992, + 16375.473309948376, + 16734.971952639928, + 17106.528612516664, + 17490.1432895786, + 17885.815983825705, + 18293.546695258, + 18713.335423875484, + 19145.182169678148, + 19589.086932665992, + 20045.049712839038, + 20513.070510197253, + 20993.149324740665, + 21485.286156469265, + 21989.481005383033, + 22505.73387148201, + 23034.044754766153, + 23574.413655235483, + 24126.84057288999, + 12389.503482306003, + 12524.529715958146, + 12671.613966795481, + 12830.756234818, + 13001.956520025702, + 13185.214822418591, + 13380.531141996662, + 13587.905478759923, + 13807.337832708368, + 14038.828203841997, + 14282.376592160816, + 14537.982997664816, + 14805.647420353998, + 15085.36986022837, + 15377.150317287927, + 15680.988791532662, + 15996.885282962598, + 16324.839791577706, + 16664.852317377998, + 17016.922860363487, + 17381.051420534153, + 17757.237997889995, + 18145.482592431043, + 18545.785204157262, + 18958.145833068662, + 19382.564479165267, + 19819.041142447037, + 20267.575822913994, + 20728.168520566152, + 21200.819235403484, + 21685.527967425995, + 22182.294716633714, + 22691.11948302659, + 23212.002266604675, + 23744.94306736793, + 24289.94188531637, + 24846.99872045, + 13379.240162667606, + 13522.60024778215, + 13678.018350081886, + 13845.494469566802, + 14025.028606236903, + 14216.620760092193, + 14420.270931132667, + 14635.979119358326, + 14863.745324769172, + 15103.5695473652, + 15355.451787146418, + 15619.392044112818, + 15895.390318264399, + 16183.44660960117, + 16483.56091812313, + 16795.733243830266, + 17119.9635867226, + 17456.25194680011, + 17804.598324062797, + 18165.00271851069, + 18537.465130143755, + 18921.985558961995, + 19318.564004965447, + 19727.200468154057, + 20147.894948527864, + 20580.64744608686, + 21025.457960831034, + 21482.3264927604, + 21951.253041874956, + 22432.237608174688, + 22925.2801916596, + 23430.38079232971, + 23947.539410184996, + 24476.75604522548, + 25018.03069745113, + 25571.363366861973, + 26136.754053457993, + 11796.469658796002, + 11925.648089497035, + 12066.88453738326, + 12220.179002454666, + 12385.53148471126, + 12562.941984153038, + 12752.41050078, + 12953.937034592143, + 13167.521585589482, + 13393.164153771999, + 13630.864739139708, + 13880.623341692597, + 14142.439961430664, + 14416.314598353923, + 14702.24725246237, + 15000.237923755996, + 15310.28661223482, + 15632.393317898812, + 15966.558040747997, + 16312.780780782372, + 16671.06153800193, + 17041.400312406666, + 17423.797103996596, + 17818.251912771702, + 18224.764738731992, + 18643.335581877483, + 19073.964442208147, + 19516.651319723995, + 19971.39621442504, + 20438.19912631126, + 20917.060055382663, + 21407.979001639265, + 21910.955965081037, + 22425.990945708007, + 22953.08394352015, + 23492.234958517474, + 24043.443990699987, + 12347.613982584, + 12481.419792428145, + 12627.283619457483, + 12785.205463672, + 12955.185325071701, + 13137.223203656597, + 13331.319099426666, + 13537.47301238192, + 13755.684942522372, + 13985.954889847999, + 14228.28285435882, + 14482.668836054818, + 14749.112834936, + 15027.614851002367, + 15318.17488425393, + 15620.792934690664, + 15935.469002312599, + 16262.203087119704, + 16600.995189112, + 16951.845308289485, + 17314.75344465215, + 17689.7195982, + 18076.743768933044, + 18475.82595685126, + 18886.96616195466, + 19310.16438424326, + 19745.420623717037, + 20192.734880375996, + 20652.10715422015, + 21123.537445249487, + 21607.025753463997, + 22102.57207886371, + 22610.17642144859, + 23129.838781218674, + 23661.559158173928, + 24205.337552314373, + 24761.17396363999, + 13333.1444328024, + 13475.279525104148, + 13629.472634591082, + 13795.7237612632, + 13974.032905120503, + 14164.400066162998, + 14366.825244390666, + 14581.308439803526, + 14807.849652401574, + 15046.4488821848, + 15297.106129153224, + 15559.82139330682, + 15834.594674645605, + 16121.42597316957, + 16420.31528887873, + 16731.262621773065, + 17054.267971852598, + 17389.33133911731, + 17736.4527235672, + 18095.63212520229, + 18466.869544022553, + 18850.164980028003, + 19245.518433218647, + 19652.929903594468, + 20072.399391155464, + 20503.926895901666, + 20947.512417833044, + 21403.155956949595, + 21870.857513251354, + 22350.617086738286, + 22842.434677410398, + 23346.31028526771, + 23862.24391031019, + 24390.23555253788, + 24930.285211950737, + 25482.392888548773, + 26046.558582331996, + 11758.510633457998, + 11886.471178687034, + 12026.489741101259, + 12178.566320700662, + 12342.700917485256, + 12518.893531455036, + 12707.144162609997, + 12907.452810950144, + 13119.81947647548, + 13344.244159185995, + 13580.726859081706, + 13829.267576162592, + 14089.866310428666, + 14362.52306187992, + 14647.237830516371, + 14944.010616337997, + 15252.841419344815, + 15573.730239536815, + 15906.677076913995, + 16251.681931476372, + 16608.744803223923, + 16977.86569215666, + 17359.0445982746, + 17752.281521577705, + 18157.576462065994, + 18574.92941973949, + 19004.340394598148, + 19445.809386642, + 19899.33639587104, + 20364.92142228526, + 20842.564465884665, + 21332.265526669267, + 21834.024604639042, + 22347.841699794015, + 22873.71681213415, + 23411.649941659485, + 23961.64108836999, + 12307.318162722002, + 12439.903548758146, + 12584.54695197948, + 12741.248372386, + 12910.007809977704, + 13090.825264754596, + 13283.700736716664, + 13488.634225863923, + 13705.625732196373, + 13934.675255713997, + 14175.78279641682, + 14428.948354304815, + 14694.171929377997, + 14971.45352163637, + 15260.793131079929, + 15562.190757708662, + 15875.646401522596, + 16201.160062521705, + 16538.731740705996, + 16888.361436075487, + 17250.04914863015, + 17623.794878369998, + 18009.598625295042, + 18407.460389405263, + 18817.38017070066, + 19239.357969181263, + 19673.393784847038, + 20119.487617697996, + 20577.63946773415, + 21047.84933495548, + 21530.11721936199, + 22024.443120953714, + 22530.82703973059, + 23049.268975692677, + 23579.768928839927, + 24122.32689917237, + 24676.94288668999, + 13288.642382797203, + 13429.552482286148, + 13582.520598960285, + 13747.546732819601, + 13924.630883864102, + 14113.773052093793, + 14314.973237508666, + 14528.231440108726, + 14753.547659893973, + 14990.921896864398, + 15240.35415102002, + 15501.844422360817, + 15775.3927108868, + 16060.999016597965, + 16358.663339494331, + 16668.385679575862, + 16990.1660368426, + 17324.004411294503, + 17669.900802931596, + 18027.855211753886, + 18397.867637761352, + 18779.938080953998, + 19174.066541331842, + 19580.253018894866, + 19998.497513643066, + 20428.800025576464, + 20871.16055469503, + 21325.579100998806, + 21792.055664487754, + 22270.590245161882, + 22761.182843021197, + 23263.833458065707, + 23778.542090295392, + 24305.308739710275, + 24844.133406310328, + 25395.016090095574, + 25957.956791065993, + 11722.14528798, + 11848.887947737034, + 11987.68862467926, + 12138.547318806666, + 12301.464030119258, + 12476.438758617036, + 12663.471504299998, + 12862.562267168145, + 13073.711047221483, + 13296.917844459998, + 13532.182658883703, + 13779.505490492596, + 14038.886339286666, + 14310.32520526592, + 14593.822088430372, + 14889.376988779999, + 15196.989906314817, + 15516.660841034814, + 15848.389792939997, + 16192.176762030374, + 16548.021748305928, + 16915.924751766663, + 17295.885772412596, + 17687.904810243705, + 18091.981865259997, + 18508.116937461487, + 18936.31002684815, + 19376.561133419993, + 19828.870257177037, + 20293.237398119265, + 20769.66255624666, + 21258.145731559267, + 21758.686924057034, + 22271.286133740006, + 22795.943360608155, + 23332.658604661483, + 23881.431865899995, + 12268.616022720003, + 12399.980984948144, + 12543.403964361481, + 12698.884960959997, + 12866.423974743702, + 13046.021005712593, + 13237.676053866664, + 13441.389119205922, + 13657.16020173037, + 13884.989301439997, + 14124.87641833482, + 14376.821552414816, + 14640.82470368, + 14916.885872130368, + 15205.00505776593, + 15505.182260586664, + 15817.417480592598, + 16141.710717783706, + 16478.061972159994, + 16826.471243721484, + 17186.93853246815, + 17559.463838399995, + 17944.047161517043, + 18340.688501819262, + 18749.387859306666, + 19170.145233979267, + 19602.960625837037, + 20047.834034879997, + 20504.765461108153, + 20973.75490452148, + 21454.802365119995, + 21947.907842903714, + 22453.071337872592, + 22970.292850026675, + 23499.572379365934, + 24040.909925890373, + 24594.305489599996, + 13245.734012652001, + 13385.419119328144, + 13537.162243189485, + 13700.963384236, + 13876.822542467702, + 14064.739717884595, + 14264.714910486668, + 14476.748120273927, + 14700.839347246374, + 14936.988591404002, + 15185.195852746818, + 15445.461131274818, + 15717.784426988, + 16002.165739886368, + 16298.60506996993, + 16607.102417238668, + 16927.657781692596, + 17260.27116333171, + 17604.942562155997, + 17961.671978165487, + 18330.459411360152, + 18711.30486174, + 19104.208329305045, + 19509.169814055265, + 19926.18931599067, + 20355.266835111266, + 20796.40237141704, + 21249.595924908008, + 21714.847495584156, + 22192.157083445487, + 22681.524688492, + 23182.95031072371, + 23696.433950140596, + 24221.975606742682, + 24759.575280529934, + 25309.232971502373, + 25870.948679659996, + 11687.373622362, + 11812.898396647035, + 11950.481188117259, + 12100.121996772667, + 12261.820822613256, + 12435.577665639035, + 12621.392525849997, + 12819.265403246143, + 13029.19629782748, + 13251.185209593998, + 13485.232138545709, + 13731.337084682595, + 13989.500048004666, + 14259.721028511922, + 14542.000026204372, + 14836.337041081997, + 15142.732073144816, + 15461.185122392817, + 15791.696188825994, + 16134.265272444374, + 16488.892373247923, + 16855.57749123666, + 17234.320626410597, + 17625.121778769702, + 18027.980948313994, + 18442.898135043484, + 18869.873338958143, + 19308.906560058, + 19759.997798343044, + 20223.147053813263, + 20698.354326468663, + 21185.619616309268, + 21684.942923335035, + 22196.32424754601, + 22719.763588942154, + 23255.26094752348, + 23802.816323289993, + 12231.507562578003, + 12361.652100998148, + 12503.854656603482, + 12658.115229394001, + 12824.433819369702, + 13002.810426530592, + 13193.245050876665, + 13395.737692407924, + 13610.288351124369, + 13836.897027025998, + 14075.563720112817, + 14326.288430384815, + 14589.071157842, + 14863.911902484368, + 15150.810664311926, + 15449.76744332466, + 15760.782239522596, + 16083.855052905701, + 16418.985883473993, + 16766.174731227486, + 17125.42159616615, + 17496.72647829, + 17880.08937759904, + 18275.51029409326, + 18682.989227772658, + 19102.52617863726, + 19534.121146687034, + 19977.774131921993, + 20433.485134342158, + 20901.254153947484, + 21381.081190737994, + 21872.96624471371, + 22376.909315874596, + 22892.91040422068, + 23420.969509751932, + 23961.086632468374, + 24513.26177236999, + 13204.419322366803, + 13342.879436230149, + 13493.397567278684, + 13655.973715512402, + 13830.607880931304, + 14017.300063535391, + 14216.050263324665, + 14426.858480299126, + 14649.724714458773, + 14884.648965803597, + 15131.63123433362, + 15390.671520048818, + 15661.7698229492, + 15944.926143034767, + 16240.140480305527, + 16547.412834761468, + 16866.743206402596, + 17198.131595228904, + 17541.578001240396, + 17897.08242443709, + 18264.64486481895, + 18644.265322385996, + 19035.943797138243, + 19439.680289075663, + 19855.474798198265, + 20283.327324506066, + 20723.237867999036, + 21175.206428677197, + 21639.233006540555, + 22115.31760158908, + 22603.460213822793, + 23103.660843241712, + 23615.919489845786, + 24140.236153635076, + 24676.61083460953, + 25225.043532769174, + 25785.534248114, + 11654.195636604001, + 11778.502525417036, + 11914.867431415258, + 12063.290354598665, + 12223.771294967257, + 12396.31025252104, + 12580.907227259997, + 12777.562219184147, + 12986.275228293482, + 13207.046254587996, + 13439.875298067705, + 13684.762358732592, + 13941.707436582665, + 14210.710531617924, + 14491.771643838372, + 14784.890773243997, + 15090.067919834817, + 15407.303083610814, + 15736.596264571996, + 16077.947462718377, + 16431.356678049928, + 16796.82391056666, + 17174.349160268597, + 17563.932427155705, + 17965.573711227997, + 18379.273012485482, + 18805.030330928148, + 19242.845666555993, + 19692.719019369048, + 20154.65038936726, + 20628.639776550655, + 21114.687180919267, + 21612.792602473044, + 22122.956041212004, + 22645.17749713615, + 23179.456970245483, + 23725.79446053999, + 12195.992782296002, + 12324.916896908146, + 12465.899028705478, + 12618.939177687997, + 12784.037343855702, + 12961.193527208594, + 13150.407727746664, + 13351.679945469923, + 13565.01018037837, + 13790.398432471997, + 14027.844701750817, + 14277.348988214815, + 14538.911291863998, + 14812.531612698369, + 15098.209950717926, + 15395.94630592266, + 15705.740678312595, + 16027.593067887703, + 16361.503474647996, + 16707.47189859349, + 17065.49833972415, + 17435.582798039995, + 17817.72527354104, + 18211.92576622726, + 18618.184276098662, + 19036.500803155264, + 19466.87534739704, + 19909.307908823994, + 20363.798487436146, + 20830.34708323348, + 21308.95369621599, + 21799.618326383712, + 22302.340973736587, + 22817.121638274675, + 23343.96031999793, + 23882.85701890637, + 24433.81173499999, + 13164.698311941605, + 13301.933432992151, + 13451.226571227882, + 13612.5777266488, + 13785.986899254905, + 13971.454089046196, + 14168.979296022666, + 14378.562520184327, + 14600.203761531173, + 14833.903020063199, + 15079.660295780419, + 15337.475588682817, + 15607.348898770397, + 15889.28022604317, + 16183.269570501132, + 16489.316932144266, + 16807.422310972597, + 17137.585706986105, + 17479.807120184796, + 17834.086550568685, + 18200.42399813775, + 18578.819462891995, + 18969.27294483145, + 19371.784443956058, + 19786.35396026586, + 20212.981493760868, + 20651.667044441037, + 21102.4106123064, + 21565.212197356963, + 22040.07179959269, + 22526.9894190136, + 23025.965055619716, + 23536.99870941099, + 24060.090380387483, + 24595.240068549134, + 25142.447773895972, + 25701.71349642799, + 11622.611330705999, + 11745.700334047033, + 11880.847354573261, + 12028.052392284666, + 12187.315447181258, + 12358.636519263038, + 12542.015608529995, + 12737.452714982148, + 12944.947838619484, + 13164.500979441997, + 13396.112137449707, + 13639.781312642592, + 13895.508505020665, + 14163.29371458392, + 14443.136941332374, + 14735.038185265994, + 15038.99744638482, + 15355.014724688812, + 15683.090020177997, + 16023.223332852374, + 16375.414662711926, + 16739.664009756663, + 17115.971373986595, + 17504.336755401702, + 17904.760154001993, + 18317.241569787482, + 18741.781002758144, + 19178.378452913996, + 19627.033920255046, + 20087.747404781258, + 20560.518906492664, + 21045.34842538926, + 21542.235961471037, + 22051.181514738008, + 22572.185085190154, + 23105.24667282748, + 23650.36627764999, + 12162.071681874002, + 12289.775372678145, + 12429.537080667482, + 12581.356805842, + 12745.234548201703, + 12921.170307746594, + 13109.164084476664, + 13309.215878391924, + 13521.32568949237, + 13745.493517777997, + 13981.71936324882, + 14230.003225904815, + 14490.345105745999, + 14762.74500277237, + 15047.202916983926, + 15343.718848380664, + 15652.292796962598, + 15972.9247627297, + 16305.614745681996, + 16650.362745819486, + 17007.168763142152, + 17376.032797649998, + 17756.95484934304, + 18149.934918221257, + 18554.973004284657, + 18972.06910753326, + 19401.22322796704, + 19842.435365585996, + 20295.705520390155, + 20761.033692379482, + 21238.41988155399, + 21727.864087913706, + 22229.366311458594, + 22742.926552188677, + 23268.54481010393, + 23806.22108520437, + 24355.955377489987, + 13126.570981376404, + 13262.581109614148, + 13410.649255037084, + 13570.775417645204, + 13742.959597438505, + 13927.201794416993, + 14123.502008580665, + 14331.860239929527, + 14552.276488463574, + 14784.750754182796, + 15029.28303708722, + 15285.87333717682, + 15554.5216544516, + 15835.227988911569, + 16127.992340556726, + 16432.814709387065, + 16749.695095402596, + 17078.633498603307, + 17419.629918989198, + 17772.684356560287, + 18137.79681131655, + 18514.967283258, + 18904.195772384643, + 19305.48227869646, + 19718.826802193464, + 20144.229342875664, + 20581.68990074304, + 21031.208475795593, + 21492.78506803335, + 21966.419677456284, + 22452.112304064394, + 22949.862947857717, + 23459.67160883619, + 23981.53828699988, + 24515.462982348734, + 25061.445694882772, + 25619.486424601997, + 11592.620704668001, + 11714.491822537038, + 11848.420957591261, + 11994.408109830665, + 12152.453279255256, + 12322.556465865038, + 12504.717669659998, + 12698.936890640145, + 12905.214128805483, + 13123.549384155998, + 13353.94265669171, + 13596.393946412594, + 13850.903253318664, + 14117.470577409922, + 14396.095918686373, + 14686.779277147998, + 14989.52065279482, + 15304.320045626817, + 15631.177455643996, + 15970.092882846375, + 16321.06632723393, + 16684.09778880666, + 17059.187267564597, + 17446.334763507708, + 17845.540276635995, + 18256.803806949483, + 18680.12535444815, + 19115.504919131996, + 19562.942501001038, + 20022.438100055264, + 20493.991716294662, + 20977.60334971927, + 21473.273000329038, + 21981.00066812401, + 22500.78635310415, + 23032.63005526948, + 23576.531774619994, + 12129.744261312002, + 12256.227528308147, + 12394.768812489481, + 12545.368113855999, + 12708.025432407701, + 12882.740768144593, + 13069.514121066666, + 13268.345491173923, + 13479.234878466372, + 13702.182282943995, + 13937.187704606818, + 14184.251143454816, + 14443.372599487999, + 14714.55207270637, + 14997.789563109925, + 15293.085070698662, + 15600.438595472599, + 15919.850137431707, + 16251.319696575998, + 16594.847272905485, + 16950.43286642015, + 17318.076477119997, + 17697.778105005043, + 18089.537750075262, + 18493.355412330664, + 18909.231091771268, + 19337.164788397044, + 19777.156502207996, + 20229.206233204153, + 20693.313981385483, + 21169.479746751997, + 21657.703529303715, + 22157.98532904059, + 22670.325145962674, + 23194.72298006993, + 23731.178831362373, + 24279.692699839994, + 13090.037330671204, + 13224.822466096148, + 13371.665618706284, + 13530.5667885016, + 13701.525975482102, + 13884.543179647797, + 14079.618400998666, + 14286.751639534723, + 14505.942895255976, + 14737.192168162399, + 14980.49945825402, + 15235.86476553082, + 15503.288089992799, + 15782.769431639968, + 16074.308790472329, + 16377.906166489865, + 16693.5615596926, + 17021.274970080503, + 17361.046397653598, + 17712.875842411886, + 18076.76330435535, + 18452.708783484, + 18840.71227979784, + 19240.773793296863, + 19652.893323981065, + 20077.07087185047, + 20513.30643690504, + 20961.600019144797, + 21421.951618569754, + 21894.361235179887, + 22378.828868975197, + 22875.354519955712, + 23383.938188121396, + 23904.57987347228, + 24437.279576008328, + 24982.03729572957, + 25538.853032635994, + 11579.798658044, + 11701.128304032183, + 11834.515967205556, + 11979.961647564116, + 12137.465345107854, + 12307.02705983678, + 12488.64679175089, + 12682.324540850188, + 12888.060307134674, + 13105.854090604338, + 13335.705891259193, + 13577.615709099231, + 13831.583544124449, + 14097.609396334858, + 14375.693265730455, + 14665.83515231123, + 14968.035056077199, + 15282.292977028344, + 15608.608915164674, + 15946.982870486203, + 16297.414842992901, + 16659.904832684784, + 17034.45283956187, + 17421.058863624126, + 17819.722904871567, + 18230.444963304206, + 18653.225038922017, + 19088.06313172501, + 19534.959241713208, + 19993.913368886573, + 20464.92551324513, + 20947.995674788883, + 21443.123853517798, + 21950.31004943192, + 22469.55426253121, + 23000.856492815685, + 23544.216740285345, + 12115.88327584263, + 12241.823942413741, + 12379.822626170038, + 12529.879327111521, + 12691.994045238185, + 12866.166780550038, + 13052.397533047073, + 13250.686302729297, + 13461.033089596705, + 13683.437893649294, + 13917.900714887079, + 14164.42155331004, + 14423.000408918186, + 14693.63728171152, + 14976.33217169004, + 15271.085078853743, + 15577.896003202637, + 15896.76494473671, + 16227.691903455963, + 16570.67687936042, + 16925.71987245004, + 17292.820882724853, + 17671.979910184862, + 18063.196954830048, + 18466.47201666041, + 18881.805095675973, + 19309.196191876705, + 19748.64530526263, + 20200.15243583375, + 20663.71758359004, + 21139.34074853152, + 21627.0219306582, + 22126.76112997004, + 22638.55834646709, + 23162.413580149307, + 23698.32683101671, + 24246.298099069292, + 13074.306255280168, + 13208.54675890054, + 13354.845279706105, + 13513.201817696852, + 13683.616372872782, + 13866.088945233903, + 14060.619534780204, + 14267.208141511694, + 14485.854765428368, + 14716.559406530225, + 14959.322064817274, + 15214.1427402895, + 15481.02143294691, + 15759.95814278951, + 16050.952869817302, + 16354.005614030264, + 16669.116375428424, + 16996.285154011766, + 17335.511949780284, + 17686.796762734, + 18050.139592872896, + 18425.540440196968, + 18812.999304706245, + 19212.516186400695, + 19624.091085280324, + 20047.724001345156, + 20483.414934595156, + 20931.163885030342, + 21390.97085265073, + 21862.835837456296, + 22346.75883944703, + 22842.739858622972, + 23350.778894984083, + 23870.875948530396, + 24403.03101926188, + 24947.244107178554, + 25503.515212280403, + 11564.22375849, + 11684.876990887034, + 11817.58824046926, + 11962.357507236666, + 12119.184791189256, + 12288.070092327036, + 12469.013410649997, + 12662.014746158145, + 12867.074098851483, + 13084.191468729998, + 13313.366855793707, + 13554.600260042593, + 13807.891681476665, + 14073.241120095921, + 14350.648575900372, + 14640.11404889, + 14941.637539064815, + 15255.219046424812, + 15580.858570969998, + 15918.556112700375, + 16268.311671615926, + 16630.125247716664, + 17003.996841002598, + 17389.926451473704, + 17787.914079129994, + 18197.959723971486, + 18620.06338599815, + 19054.225065209994, + 19500.44476160704, + 19958.722475189254, + 20429.05820595666, + 20911.45195390927, + 21405.903719047034, + 21912.41350137001, + 22430.981300878153, + 22961.607117571482, + 23504.29095144999, + 12099.010520610002, + 12224.273363798147, + 12361.594224171482, + 12510.973101730002, + 12672.409996473703, + 12845.904908402594, + 13031.457837516664, + 13229.068783815925, + 13438.737747300369, + 13660.464727969997, + 13894.249725824819, + 14140.092740864815, + 14397.993773089996, + 14667.952822500369, + 14949.969889095926, + 15244.044972876663, + 15550.178073842597, + 15868.369191993705, + 16198.618327329996, + 16540.92547985149, + 16895.290649558152, + 17261.713836449995, + 17640.19504052704, + 18030.734261789265, + 18433.33150023666, + 18847.986755869264, + 19274.700028687035, + 19713.47131869, + 20164.300625878153, + 20627.18795025148, + 21102.13329180999, + 21589.136650553708, + 22088.19802648259, + 22599.31741959668, + 23122.49482989593, + 23657.73025738037, + 24205.023702049995, + 13055.097359826004, + 13188.657502438144, + 13334.275662235485, + 13491.951839217998, + 13661.686033385702, + 13843.478244738595, + 14037.328473276664, + 14243.236718999922, + 14461.202981908373, + 14691.227262001998, + 14933.309559280822, + 15187.449873744816, + 15453.648205393998, + 15731.904554228366, + 16022.21892024793, + 16324.591303452667, + 16639.021703842598, + 16965.510121417705, + 17304.056556178, + 17654.661008123487, + 18017.32347725415, + 18392.043963569995, + 18778.82246707104, + 19177.658987757266, + 19588.553525628664, + 20011.506080685267, + 20446.516652927035, + 20893.585242354002, + 21352.71184896616, + 21823.896472763485, + 22307.139113745998, + 22802.43977191371, + 23309.798447266596, + 23829.21513980468, + 24360.689849527935, + 24904.222576436372, + 25459.813320529996, + 11537.420492171997, + 11656.855839097034, + 11788.349203207259, + 11931.900584502666, + 12087.50998298326, + 12255.177398649039, + 12434.9028315, + 12626.686281536146, + 12830.527748757482, + 13046.427233163997, + 13274.384734755708, + 13514.400253532594, + 13766.473789494665, + 14030.605342641922, + 14306.79491297437, + 14595.042500491998, + 14895.348105194817, + 15207.711727082815, + 15532.133366155995, + 15868.613022414374, + 16217.150695857928, + 16577.746386486666, + 16950.4000943006, + 17335.111819299706, + 17731.881561483995, + 18140.709320853486, + 18561.595097408142, + 18994.538891147993, + 19439.540702073034, + 19896.60053018326, + 20365.718375478657, + 20846.894237959266, + 21340.12811762503, + 21845.420014476003, + 22362.76992851215, + 22892.17785973348, + 23433.64380813999, + 12069.870459767999, + 12193.912879148147, + 12330.01331571348, + 12478.171769463997, + 12638.388240399703, + 12810.662728520592, + 12994.995233826663, + 13191.385756317923, + 13399.83429599437, + 13620.340852855996, + 13852.905426902817, + 14097.528018134817, + 14354.208626551996, + 14622.947252154367, + 14903.743894941925, + 15196.598554914657, + 15501.511232072595, + 15818.481926415703, + 16147.510637943999, + 16488.597366657486, + 16841.742112556152, + 17206.944875639998, + 17584.20565590904, + 17973.52445336326, + 18374.901268002664, + 18788.336099827262, + 19213.82894883704, + 19651.379815031993, + 20100.988698412148, + 20562.65559897748, + 21036.38051672799, + 21522.163451663713, + 22020.00440378459, + 22529.90337309067, + 23051.860359581933, + 23585.875363258372, + 24131.948384119994, + 13021.751068840804, + 13154.08621864015, + 13298.479385624685, + 13454.9305697944, + 13623.439771149304, + 13804.006989689398, + 13996.632225414669, + 14201.315478325128, + 14418.056748420775, + 14646.8560357016, + 14887.713340167622, + 15140.628661818819, + 15405.602000655199, + 15682.63335667677, + 15971.722729883531, + 16272.870120275467, + 16586.075527852598, + 16911.338952614904, + 17248.6603945624, + 17598.03985369509, + 17959.477330012953, + 18332.972823516, + 18718.526334204245, + 19116.137862077663, + 19525.807407136268, + 19947.534969380064, + 20381.32054880904, + 20827.1641454232, + 21285.065759222558, + 21755.025390207087, + 22237.043038376796, + 22731.11870373171, + 23237.252386271794, + 23755.444085997082, + 24285.69380290753, + 24828.001537003176, + 25382.367288283996, + 11512.210905714, + 11630.428367167035, + 11760.703845805258, + 11903.037341628664, + 12057.428854637259, + 12223.87838483104, + 12402.385932209998, + 12592.951496774143, + 12795.575078523483, + 13010.256677458, + 13236.996293577706, + 13475.793926882596, + 13726.649577372664, + 13989.563245047922, + 14264.534929908372, + 14551.564631954, + 14850.65235118482, + 15161.798087600819, + 15485.001841201998, + 15820.263611988375, + 16167.583399959927, + 16526.961205116662, + 16898.397027458595, + 17281.890866985705, + 17677.442723697997, + 18085.052597595488, + 18504.72048867815, + 18936.446396945998, + 19380.23032239904, + 19836.072265037255, + 20303.972224860663, + 20783.93020186927, + 21275.946196063036, + 21780.020207442012, + 22296.152236006154, + 22824.342281755486, + 23364.590344689994, + 12042.324078786005, + 12165.146074358148, + 12300.026087115482, + 12446.964117058, + 12605.960164185704, + 12777.014228498594, + 12960.126309996664, + 13155.296408679926, + 13362.524524548371, + 13581.810657601996, + 13813.154807840818, + 14056.556975264819, + 14312.017159874, + 14579.535361668368, + 14859.111580647928, + 15150.745816812665, + 15454.438070162598, + 15770.188340697705, + 16097.996628417999, + 16437.862933323486, + 16789.78725541415, + 17153.76959469, + 17529.80995115104, + 17917.908324797263, + 18318.064715628665, + 18730.279123645265, + 19154.551548847037, + 19590.881991233993, + 20039.27045080615, + 20499.716927563484, + 20972.221421505994, + 21456.783932633713, + 21953.40446094659, + 22462.08300644468, + 22982.81956912793, + 23515.61414899637, + 24060.46674604999, + 12989.998457715603, + 13121.108614702149, + 13264.276788873885, + 13419.502980230802, + 13586.787188772902, + 13766.129414500198, + 13957.529657412664, + 14160.987917510323, + 14376.504194793175, + 14604.0784892612, + 14843.710800914421, + 15095.401129752818, + 15359.1494757764, + 15634.955838985168, + 15922.820219379133, + 16222.742616958269, + 16534.723031722595, + 16858.761463672105, + 17194.8579128068, + 17543.01237912669, + 17903.22486263175, + 18275.495363322, + 18659.823881197444, + 19056.21041625806, + 19464.654968503866, + 19885.15753793486, + 20317.71812455104, + 20762.336728352402, + 21219.01334933896, + 21687.747987510687, + 22168.540642867596, + 22661.391315409714, + 23166.300005136996, + 23683.26671204948, + 24212.29143614713, + 24753.37417742997, + 25306.51493589799, + 11488.594999116, + 11605.594575097033, + 11734.65216826326, + 11875.767778614663, + 12028.941406151258, + 12194.173050873036, + 12371.462712779998, + 12560.810391872144, + 12762.21608814948, + 12975.679801611996, + 13201.201532259707, + 13438.781280092593, + 13688.419045110664, + 13950.11482731392, + 14223.868626702371, + 14509.680443275995, + 14807.550277034821, + 15117.478127978819, + 15439.463996107996, + 15773.507881422373, + 16119.609783921931, + 16477.769703606664, + 16847.987640476596, + 17230.263594531705, + 17624.597565771997, + 18030.989554197487, + 18449.439559808146, + 18879.947582603996, + 19322.51362258504, + 19777.137679751264, + 20243.819754102657, + 20722.559845639265, + 21213.35795436103, + 21716.214080268008, + 22231.128223360152, + 22758.10038363748, + 23297.130561099995, + 12016.371377664003, + 12137.972949428144, + 12271.632538377484, + 12417.350144511998, + 12575.125767831702, + 12744.959408336594, + 12926.851066026666, + 13120.800740901921, + 13326.80843296237, + 13544.874142207995, + 13774.99786863882, + 14017.179612254817, + 14271.419373056, + 14537.717151042367, + 14816.072946213926, + 15106.486758570667, + 15408.958588112599, + 15723.488434839706, + 16050.076298751996, + 16388.722179849487, + 16739.42607813215, + 17102.187993599997, + 17477.007926253038, + 17863.885876091263, + 18262.821843114667, + 18673.815827323262, + 19096.86782871704, + 19531.977847296, + 19979.145883060155, + 20438.371936009487, + 20909.656006143992, + 21392.99809346371, + 21888.398197968592, + 22395.856319658673, + 22915.37245853393, + 23446.94661459437, + 23990.578787839997, + 12959.839526450403, + 13089.72469062415, + 13231.667871983089, + 13385.669070527201, + 13551.728286256504, + 13729.845519170998, + 13920.020769270672, + 14122.254036555525, + 14336.545321025576, + 14562.8946226808, + 14801.301941521222, + 15051.76727754682, + 15314.290630757601, + 15588.872001153566, + 15875.511388734732, + 16174.208793501062, + 16484.9642154526, + 16807.777654589307, + 17142.6491109112, + 17489.57858441829, + 17848.566075110553, + 18219.611582988, + 18602.71510805064, + 18997.87665029846, + 19405.096209731462, + 19824.373786349664, + 20255.709380153035, + 20699.102991141604, + 21154.55461931536, + 21622.06426467429, + 22101.631927218397, + 22593.257606947715, + 23096.941303862193, + 23612.683017961877, + 24140.48274924673, + 24680.34049771677, + 25232.256263371994, + 11466.572772378, + 11582.354462887037, + 11710.194170581257, + 11850.091895460668, + 12002.04763752526, + 12166.061396775038, + 12342.133173209997, + 12530.262966830143, + 12730.450777635482, + 12942.696605625999, + 13167.000450801706, + 13403.362313162594, + 13651.782192708666, + 13912.260089439924, + 14184.796003356374, + 14469.389934457999, + 14766.041882744821, + 15074.751848216813, + 15395.519830873996, + 15728.345830716375, + 16073.229847743927, + 16430.171881956663, + 16799.171933354595, + 17180.230001937703, + 17573.346087705995, + 17978.520190659485, + 18395.752310798143, + 18825.042448122, + 19266.39060263104, + 19719.796774325263, + 20185.260963204662, + 20662.78316926926, + 21152.36339251904, + 21654.001632954005, + 22167.69789057415, + 22693.452165379487, + 23231.264457369994, + 11992.012356402003, + 12112.393504358148, + 12244.832669499483, + 12389.329851826002, + 12545.885051337704, + 12714.498268034595, + 12895.169501916664, + 13087.898752983925, + 13292.686021236372, + 13509.531306673998, + 13738.43460929682, + 13979.395929104818, + 14232.415266097998, + 14497.49262027637, + 14774.627991639929, + 15063.821380188663, + 15365.072785922597, + 15678.382208841706, + 16003.749648945999, + 16341.175106235485, + 16690.65858071015, + 17052.200072369997, + 17425.799581215044, + 17811.45710724526, + 18209.172650460663, + 18618.946210861268, + 19040.777788447038, + 19474.667383218002, + 19920.614995174154, + 20378.620624315485, + 20848.684270641996, + 21330.80593415371, + 21824.9856148506, + 22331.223312732673, + 22849.51902779993, + 23379.87276005237, + 23922.28450948999, + 12931.2742750452, + 13059.934446406147, + 13200.652634952286, + 13353.428840683599, + 13518.263063600101, + 13695.155303701793, + 13884.105560988664, + 14085.113835460723, + 14298.180127117974, + 14523.3044359604, + 14760.486761988019, + 15009.727105200816, + 15271.0254655988, + 15544.38184318197, + 15829.796237950328, + 16127.268649903865, + 16436.799079042597, + 16758.38752536651, + 17092.0339888756, + 17437.738469569886, + 17795.500967449352, + 18165.321482513995, + 18547.200014763843, + 18941.13656419886, + 19347.131130819063, + 19765.18371462446, + 20195.29431561504, + 20637.462933790794, + 21091.689569151753, + 21557.97422169788, + 22036.316891429193, + 22526.71757834571, + 23029.17628244739, + 23543.693003734275, + 24070.26774220633, + 24608.90049786357, + 25159.59127070599, + 11446.144225500004, + 11560.708030537035, + 11687.329852759261, + 11826.009692166663, + 11976.747548759258, + 12139.543422537039, + 12314.3973135, + 12501.309221648145, + 12700.279146981484, + 12911.3070895, + 13134.393049203709, + 13369.537026092596, + 13616.739020166666, + 13875.999031425923, + 14147.317059870371, + 14430.6931055, + 14726.12716831482, + 15033.619248314817, + 15353.169345499999, + 15684.777459870375, + 16028.44359142593, + 16384.167740166664, + 16751.9499060926, + 17131.790089203707, + 17523.688289499998, + 17927.644506981487, + 18343.65874164815, + 18771.730993499998, + 19211.86126253704, + 19664.049548759263, + 20128.295852166662, + 20604.600172759267, + 21092.962510537036, + 21593.382865500003, + 22105.861237648154, + 22630.39762698148, + 23166.992033499995, + 11969.247015000003, + 12088.407739148148, + 12219.626480481482, + 12362.903238999997, + 12518.238014703702, + 12685.630807592594, + 12865.081617666665, + 13056.590444925923, + 13260.15728937037, + 13475.782150999998, + 13703.46502981482, + 13943.205925814818, + 14195.004839, + 14458.861769370369, + 14734.776716925926, + 15022.749681666666, + 15322.780663592597, + 15634.869662703708, + 15959.016678999997, + 16295.221712481489, + 16643.484763148153, + 17003.805830999998, + 17376.184916037044, + 17760.622018259262, + 18157.117137666664, + 18565.670274259264, + 18986.28142803704, + 19418.950598999996, + 19863.677787148154, + 20320.462992481484, + 20789.306214999993, + 21270.207454703712, + 21763.16671159259, + 22268.18398566667, + 22785.25927692593, + 23314.39258537037, + 23855.583910999994, + 12904.302703500001, + 13031.737882048148, + 13171.23107778149, + 13322.782290700003, + 13486.391520803701, + 13662.058768092596, + 13849.78403256667, + 14049.567314225926, + 14261.408613070376, + 14485.307929100001, + 14721.26526231482, + 14969.280612714821, + 15229.3539803, + 15501.485365070372, + 15785.674767025934, + 16081.922186166668, + 16390.2276224926, + 16710.591076003708, + 17043.0125467, + 17387.492034581486, + 17744.029539648152, + 18112.625061900002, + 18493.278601337046, + 18885.990157959262, + 19290.759731766662, + 19707.587322759267, + 20136.472930937038, + 20577.416556300002, + 21030.418198848158, + 21495.47785858149, + 21972.595535499997, + 22461.771229603717, + 22963.004940892595, + 23476.296669366682, + 24001.64641502593, + 24539.054177870374, + 25088.519957899993, + 11427.309358482, + 11540.655278047034, + 11666.05921479726, + 11803.521168732665, + 11953.041139853258, + 12114.619128159036, + 12288.255133649995, + 12473.949156326147, + 12671.701196187483, + 12881.511253233997, + 13103.379327465707, + 13337.305418882594, + 13583.289527484667, + 13841.331653271922, + 14111.431796244375, + 14393.589956401998, + 14687.806133744818, + 14994.080328272816, + 15312.412539985995, + 15642.802768884374, + 15985.251014967926, + 16339.75727823666, + 16706.321558690597, + 17084.943856329704, + 17475.624171153995, + 17878.362503163487, + 18293.158852358145, + 18720.013218737997, + 19158.925602303043, + 19609.89600305326, + 20072.924420988664, + 20548.01085610926, + 21035.155308415036, + 21534.35777790601, + 22045.618264582154, + 22568.936768443487, + 23104.31328948999, + 11948.075353458002, + 12066.015653798146, + 12196.013971323478, + 12338.070306034004, + 12492.184657929703, + 12658.357027010594, + 12836.587413276666, + 13026.875816727927, + 13229.22223736437, + 13443.626675185998, + 13670.089130192819, + 13908.609602384817, + 14159.188091761998, + 14421.824598324369, + 14696.519122071926, + 14983.271663004662, + 15282.0822211226, + 15592.950796425705, + 15915.877388913996, + 16250.861998587488, + 16597.90462544615, + 16957.00526949, + 17328.16393071904, + 17711.380609133263, + 18106.655304732663, + 18513.988017517262, + 18933.378747487033, + 19364.82749464199, + 19808.334258982155, + 20263.899040507484, + 20731.52183921799, + 21211.20265511371, + 21702.941488194592, + 22206.738338460673, + 22722.59320591193, + 23250.50609054837, + 23790.476992369993, + 12878.9248118148, + 13005.134997550147, + 13143.403200470684, + 13293.7294205764, + 13456.113657867301, + 13630.555912343392, + 13817.056184004667, + 14015.614472851126, + 14226.230778882777, + 14448.905102099601, + 14683.63744250162, + 14930.42780008882, + 15189.276174861201, + 15460.182566818765, + 15743.14697596153, + 16038.16940228947, + 16345.249845802602, + 16664.388306500907, + 16995.5847843844, + 17338.83927945309, + 17694.15179170695, + 18061.522321145996, + 18440.950867770243, + 18832.437431579663, + 19235.98201257427, + 19651.584610754067, + 20079.24522611904, + 20518.963858669198, + 20970.74050840455, + 21434.575175325084, + 21910.46785943079, + 22398.41856072171, + 22898.42727919779, + 23410.49401485908, + 23934.618767705535, + 24470.801537737174, + 25019.042324953993, + 11410.068171324, + 11522.196205417034, + 11646.382256695259, + 11782.62632515866, + 11930.928410807259, + 12091.288513641037, + 12263.706633659996, + 12448.182770864143, + 12644.716925253482, + 12853.309096827996, + 13073.959285587709, + 13306.667491532593, + 13551.433714662664, + 13808.25795497792, + 14077.140212478374, + 14358.080487164, + 14651.078779034817, + 14956.135088090812, + 15273.249414331995, + 15602.421757758373, + 15943.652118369926, + 16296.940496166662, + 16662.286891148593, + 17039.691303315707, + 17429.153732667994, + 17830.674179205485, + 18244.25264292815, + 18669.889123835997, + 19107.583621929043, + 19557.336137207258, + 20019.146669670667, + 20493.015219319266, + 20978.94178615304, + 21476.926370172005, + 21986.96897137615, + 22509.06958976548, + 23043.228225339994, + 11928.497371776, + 12045.217248308147, + 12173.99514202548, + 12314.831052927995, + 12467.724981015703, + 12632.67692628859, + 12809.686888746663, + 12998.754868389922, + 13199.88086521837, + 13413.064879231992, + 13638.306910430818, + 13875.606958814813, + 14124.965024383999, + 14386.381107138368, + 14659.855207077926, + 14945.387324202664, + 15242.977458512592, + 15552.625610007699, + 15874.331778687994, + 16208.095964553486, + 16553.918167604148, + 16911.798387839994, + 17281.736625261045, + 17663.732879867257, + 18057.78715165866, + 18463.899440635265, + 18882.06974679703, + 19312.298070143996, + 19754.584410676154, + 20208.928768393485, + 20675.331143295996, + 21153.79153538371, + 21644.309944656594, + 22146.886371114673, + 22661.520814757932, + 23188.21327558637, + 23726.96375359999, + 12855.140599989601, + 12980.125792912153, + 13117.169003019886, + 13266.270230312799, + 13427.429474790904, + 13600.646736454191, + 13785.922015302669, + 13983.255311336325, + 14192.646624555173, + 14414.095954959199, + 14647.603302548421, + 14893.168667322814, + 15150.7920492824, + 15420.473448427165, + 15702.21286475713, + 15996.010298272266, + 16301.865748972596, + 16619.779216858107, + 16949.7507019288, + 17291.780204184684, + 17645.867723625754, + 18012.013260252003, + 18390.216814063442, + 18780.478385060065, + 19182.797973241868, + 19597.17557860886, + 20023.61120116104, + 20462.1048408984, + 20912.656497820954, + 21375.266171928688, + 21849.933863221595, + 22336.65957169971, + 22835.443297362992, + 23346.28504021148, + 23869.18480024513, + 24404.142577463972, + 24951.158371867998, + 11394.420664025998, + 11505.330812647035, + 11628.298978453258, + 11763.325161444665, + 11910.40936162126, + 12069.551578983039, + 12240.751813529994, + 12424.010065262146, + 12619.326334179483, + 12826.700620281998, + 13046.132923569707, + 13277.623244042594, + 13521.171581700664, + 13776.77793654392, + 14044.442308572372, + 14324.164697785996, + 14615.945104184817, + 14919.783527768817, + 15235.679968537997, + 15563.634426492372, + 15903.64690163193, + 16255.717393956666, + 16619.845903466598, + 16996.032430161707, + 17384.276974041997, + 17784.57953510749, + 18196.940113358145, + 18621.358708793996, + 19057.83532141504, + 19506.36995122126, + 19966.96259821266, + 20439.613262389266, + 20924.32194375103, + 21421.088642298007, + 21929.913358030153, + 22450.796090947486, + 22983.736841049995, + 11910.513069954002, + 12026.012522678146, + 12153.569992587483, + 12293.185479681999, + 12444.858983961702, + 12608.590505426597, + 12784.380044076664, + 12972.227599911921, + 13172.133172932374, + 13384.096763138, + 13608.118370528822, + 13844.19799510482, + 14092.335636866002, + 14352.531295812367, + 14624.784971943931, + 14909.096665260664, + 15205.466375762593, + 15513.89410344971, + 15834.379848322002, + 16166.923610379485, + 16511.525389622155, + 16868.18518605, + 17236.90299966304, + 17617.678830461267, + 18010.512678444666, + 18415.404543613262, + 18832.354425967034, + 19261.362325505997, + 19702.428242230155, + 20155.552176139485, + 20620.734127233998, + 21097.974095513706, + 21587.272080978593, + 22088.62808362868, + 22602.04210346393, + 23127.51414048437, + 23665.04419469, + 12832.9500680244, + 12956.710268134151, + 13092.528485429084, + 13240.404719909202, + 13400.338971574502, + 13572.331240425, + 13756.381526460664, + 13952.489829681524, + 14160.656150087574, + 14380.880487678802, + 14613.16284245522, + 14857.503214416822, + 15113.901603563598, + 15382.358009895566, + 15662.872433412726, + 15955.444874115066, + 16260.075332002596, + 16576.763807075306, + 16905.5102993332, + 17246.314808776286, + 17599.177335404554, + 17964.097879218003, + 18341.07644021664, + 18730.11301840046, + 19131.20761376946, + 19544.360226323664, + 19969.570856063037, + 20406.839502987597, + 20856.16616709735, + 21317.550848392286, + 21790.993546872396, + 22276.494262537715, + 22774.052995388196, + 23283.669745423882, + 23805.34451264473, + 24339.077297050775, + 24884.868098641997, + 11380.366836587998, + 11490.059099737035, + 11611.809380071258, + 11745.617677590666, + 11891.483992295256, + 12049.408324185039, + 12219.390673259997, + 12401.431039520146, + 12595.529422965485, + 12801.685823595999, + 13019.900241411706, + 13250.172676412594, + 13492.503128598666, + 13746.89159796992, + 14013.338084526373, + 14291.842588267997, + 14582.405109194824, + 14885.025647306817, + 15199.704202603998, + 15526.440775086372, + 15865.235364753931, + 16216.087971606665, + 16578.9985956446, + 16953.96723686771, + 17340.993895275995, + 17740.07857086949, + 18151.22126364815, + 18574.421973611992, + 19009.68070076104, + 19456.997445095258, + 19916.372206614662, + 20387.804985319264, + 20871.295781209035, + 21366.844594284008, + 21874.451424544153, + 22394.116271989486, + 22925.83913661999, + 11894.122447992, + 12008.401476908146, + 12134.738523009484, + 12273.133586296, + 12423.5866667677, + 12586.097764424598, + 12760.666879266666, + 12947.294011293921, + 13145.979160506373, + 13356.722326904, + 13579.52351048682, + 13814.382711254819, + 14061.299929208, + 14320.275164346367, + 14591.308416669928, + 14874.399686178664, + 15169.548972872599, + 15476.756276751708, + 15796.021597816, + 16127.344936065487, + 16470.726291500152, + 16826.16566412, + 17193.663053925044, + 17573.218460915265, + 17964.831885090665, + 18368.503326451264, + 18784.232784997042, + 19212.020260727997, + 19651.865753644153, + 20103.769263745486, + 20567.730791031998, + 21043.7503355037, + 21531.827897160594, + 22031.96347600268, + 22544.157072029928, + 23068.408685242368, + 23604.71831563999, + 12812.353215919198, + 12934.888423216149, + 13069.481647698285, + 13216.1328893656, + 13374.842148218102, + 13545.609424255797, + 13728.434717478667, + 13923.318027886724, + 14130.259355479975, + 14349.2587002584, + 14580.316062222018, + 14823.431441370816, + 15078.6048377048, + 15345.836251223966, + 15625.125681928332, + 15916.473129817867, + 16219.878594892598, + 16535.3420771525, + 16862.8635765976, + 17202.443093227885, + 17554.080627043353, + 17917.776178043998, + 18293.529746229844, + 18681.34133160086, + 19081.21093415706, + 19493.13855389846, + 19917.124190825034, + 20353.167844936794, + 20801.26951623375, + 21261.42920471588, + 21733.646910383195, + 22217.922633235714, + 22714.256373273394, + 23222.648130496276, + 23743.097904904324, + 24275.605696497572, + 24820.17150527599, + 11367.90668901, + 11476.381066687038, + 11596.913461549262, + 11729.503873596666, + 11874.152302829261, + 12030.858749247038, + 12199.623212849998, + 12380.445693638148, + 12573.326191611482, + 12778.264706769998, + 12995.261239113706, + 13224.315788642596, + 13465.428355356662, + 13718.598939255922, + 13983.827540340375, + 14261.114158609998, + 14550.45879406482, + 14851.861446704817, + 15165.322116529998, + 15490.840803540372, + 15828.417507735927, + 16178.052229116664, + 16539.7449676826, + 16913.495723433705, + 17299.304496369998, + 17697.171286491488, + 18107.096093798147, + 18529.078918289997, + 18963.11975996704, + 19409.21861882926, + 19867.375494876665, + 20337.590388109267, + 20819.863298527034, + 21314.19422613001, + 21820.583170918155, + 22339.030132891487, + 22869.53511204999, + 11879.325505890001, + 11992.384110998148, + 12117.500733291483, + 12254.67537277, + 12403.908029433704, + 12565.198703282591, + 12738.547394316663, + 12923.954102535925, + 13121.418827940372, + 13330.941570529996, + 13552.52233030482, + 13786.161107264817, + 14031.857901409996, + 14289.61271274037, + 14559.425541255929, + 14841.296386956663, + 15135.225249842597, + 15441.212129913702, + 15759.257027169995, + 16089.359941611487, + 16431.52087323815, + 16785.739822049996, + 17152.016788047044, + 17530.35177122926, + 17920.74477159666, + 18323.195789149264, + 18737.704823887034, + 19164.271875809995, + 19602.89694491815, + 20053.58003121148, + 20516.321134689995, + 20991.120255353708, + 21477.97739320259, + 21976.892548236676, + 22487.865720455924, + 23010.89690986037, + 23545.98611644999, + 12793.350043674003, + 12914.660258158152, + 13048.028489827488, + 13193.454738682005, + 13350.939004721702, + 13520.481287946594, + 13702.081588356667, + 13895.739905951927, + 14101.456240732376, + 14319.230592698, + 14549.06296184882, + 14790.953348184818, + 15044.901751705998, + 15310.90817241237, + 15588.972610303928, + 15879.095065380667, + 16181.275537642598, + 16495.51402708971, + 16821.810533722, + 17160.16505753949, + 17510.577598542153, + 17873.048156729998, + 18247.576732103047, + 18634.163324661262, + 19032.807934404664, + 19443.510561333267, + 19866.27120544704, + 20301.089866746, + 20747.966545230156, + 21206.901240899482, + 21677.893953753995, + 22160.94468379371, + 22656.05343101859, + 23163.220195428683, + 23682.44497702393, + 24213.72777580437, + 24757.068591769992, + 11357.040221292, + 11464.296713497035, + 11583.61122288726, + 11714.983749462664, + 11858.414293223257, + 12013.902854169037, + 12181.449432300002, + 12361.054027616146, + 12552.716640117484, + 12756.437269803997, + 12972.215916675708, + 13200.052580732594, + 13439.947261974663, + 13691.899960401923, + 13955.910676014375, + 14231.979408811998, + 14520.106158794819, + 14820.290925962816, + 15132.533710315996, + 15456.834511854375, + 15793.193330577928, + 16141.610166486664, + 16502.085019580598, + 16874.617889859706, + 17259.208777323995, + 17655.857681973484, + 18064.564603808147, + 18485.329542827996, + 18918.15249903304, + 19363.03347242326, + 19819.972462998663, + 20288.969470759264, + 20770.024495705038, + 21263.13753783601, + 21768.308597152147, + 22285.53767365348, + 22814.824767339993, + 11866.122243648002, + 11977.960424948145, + 12101.856623433483, + 12237.810839104, + 12385.823071959705, + 12545.893322000593, + 12718.021589226664, + 12902.207873637923, + 13098.452175234372, + 13306.754494015993, + 13527.11482998282, + 13759.53318313482, + 14004.009553471997, + 14260.54394099437, + 14529.136345701929, + 14809.786767594664, + 15102.495206672598, + 15407.261662935702, + 15724.086136384001, + 16052.968627017488, + 16393.90913483615, + 16746.907659840002, + 17111.96420202904, + 17489.07876140326, + 17878.251337962658, + 18279.481931707258, + 18692.770542637038, + 19118.117170751993, + 19555.521816052154, + 20004.984478537488, + 20466.505158207994, + 20940.083855063713, + 21425.720569104593, + 21923.41530033067, + 22433.16804874192, + 22954.97881433837, + 23488.84759711999, + 12775.9405512888, + 12896.025772960149, + 13028.169011816686, + 13172.370267858401, + 13328.6295410853, + 13496.946831497395, + 13677.322139094667, + 13869.755463877127, + 14074.246805844776, + 14290.7961649976, + 14519.40354133562, + 14760.068934858822, + 15012.792345567199, + 15277.57377346077, + 15554.413218539528, + 15843.310680803468, + 16144.266160252599, + 16457.27965688691, + 16782.3511707064, + 17119.48070171109, + 17468.668249900955, + 17829.913815276, + 18203.217397836244, + 18588.578997581662, + 18985.998614512264, + 19395.476248628063, + 19817.01189992904, + 20250.605568415194, + 20696.25725408656, + 21153.966956943088, + 21623.734676984797, + 22105.560414211715, + 22599.444168623795, + 23105.385940221076, + 23623.38572900353, + 24153.443534971175, + 24695.559358124, + 11347.767433434, + 11453.806040167035, + 11571.902664085257, + 11702.057305188666, + 11844.269963477262, + 11998.540638951037, + 12164.86933161, + 12343.256041454148, + 12533.70076848348, + 12736.203512697997, + 12950.764274097704, + 13177.383052682593, + 13416.059848452664, + 13666.794661407921, + 13929.58749154837, + 14204.438338873999, + 14491.347203384817, + 14790.314085080814, + 15101.338983961994, + 15424.421900028372, + 15759.562833279928, + 16106.761783716664, + 16466.018751338597, + 16837.333736145705, + 17220.706738137997, + 17616.137757315486, + 18023.62679367815, + 18443.173847225997, + 18874.77891795904, + 19318.44200587726, + 19774.16311098066, + 20241.942233269267, + 20721.779372743036, + 21213.674529402015, + 21717.627703246155, + 22233.63889427548, + 22761.70810248999, + 11854.512661266004, + 11965.130418758148, + 12087.806193435485, + 12222.539985298, + 12369.331794345704, + 12528.181620578594, + 12699.089463996665, + 12882.055324599927, + 13077.07920238837, + 13284.161097361999, + 13503.301009520821, + 13734.498938864815, + 13977.754885393999, + 14233.068849108371, + 14500.440830007927, + 14779.870828092662, + 15071.358843362597, + 15374.904875817707, + 15690.508925457998, + 16018.17099228349, + 16357.891076294152, + 16709.66917749, + 17073.505295871044, + 17449.399431437265, + 17837.351584188662, + 18237.361754125264, + 18649.42994124704, + 19073.556145553994, + 19509.740367046154, + 19957.982605723482, + 20418.282861585994, + 20890.641134633715, + 21375.057424866594, + 21871.53173228468, + 22380.06405688793, + 22900.65439867637, + 23433.302757649995, + 12760.124738763601, + 12878.984967622147, + 13009.903213665886, + 13152.879476894797, + 13307.913757308901, + 13475.006054908199, + 13654.156369692666, + 13845.364701662322, + 14048.631050817174, + 14263.955417157198, + 14491.33780068242, + 14730.778201392817, + 14982.2766192884, + 15245.833054369165, + 15521.44750663513, + 15809.119976086267, + 16108.850462722596, + 16420.638966544102, + 16744.485487550795, + 17080.390025742683, + 17428.35258111975, + 17788.373153681998, + 18160.45174342944, + 18544.588350362057, + 18940.782974479862, + 19349.03561578286, + 19769.346274271036, + 20201.7149499444, + 20646.141642802955, + 21102.626352846688, + 21571.1690800756, + 22051.769824489715, + 22544.428586088998, + 23049.145364873482, + 23565.920160843136, + 24094.75297399797, + 24635.643804337997, + 11340.088325436001, + 11444.909046697036, + 11561.78778514326, + 11690.724540774663, + 11831.719313591257, + 11984.772103593037, + 12149.88291078, + 12327.051735152147, + 12516.278576709481, + 12717.563435451999, + 12930.906311379706, + 13156.307204492596, + 13393.766114790664, + 13643.283042273923, + 13904.857986942374, + 14178.490948795998, + 14464.18192783482, + 14761.930924058815, + 15071.737937467995, + 15393.602968062374, + 15727.526015841928, + 16073.507080806663, + 16431.546162956598, + 16801.643262291702, + 17183.798378811993, + 17578.011512517485, + 17984.282663408147, + 18402.611831484002, + 18832.99901674504, + 19275.44421919126, + 19729.947438822666, + 20196.508675639267, + 20675.127929641036, + 21165.80520082801, + 21668.54048920015, + 22183.33379475748, + 22710.18511749999, + 11844.496758744002, + 11953.894092428149, + 12075.349443297482, + 12208.862811351995, + 12354.434196591703, + 12512.063599016594, + 12681.751018626665, + 12863.496455421926, + 13057.29990940237, + 13263.161380567995, + 13481.08086891882, + 13711.058374454817, + 13953.093897175999, + 14207.18743708237, + 14473.33899417393, + 14751.548568450662, + 15041.816159912596, + 15344.141768559704, + 15658.525394391998, + 15984.967037409488, + 16323.466697612152, + 16674.024374999997, + 17036.640069573044, + 17411.31378133126, + 17798.045510274656, + 18196.83525640326, + 18607.683019717035, + 19030.588800216, + 19465.552597900158, + 19912.574412769485, + 20371.654244823992, + 20842.79209406371, + 21325.987960488597, + 21821.24184409867, + 22328.553744893925, + 22847.92366287437, + 23379.35159803999, + 12745.902606098405, + 12863.537842144155, + 12993.231095375086, + 13134.9823657912, + 13288.791653392504, + 13454.658958178994, + 13632.584280150664, + 13822.567619307527, + 14024.608975649573, + 14238.708349176803, + 14464.86573988922, + 14703.08114778682, + 14953.354572869597, + 15215.68601513757, + 15490.075474590727, + 15776.522951229064, + 16075.028445052596, + 16385.591956061307, + 16708.213484255197, + 17042.893029634288, + 17389.630592198555, + 17748.426171948, + 18119.279768882647, + 18502.19138300246, + 18897.161014307465, + 19304.188662797667, + 19723.27432847304, + 20154.418011333597, + 20597.619711379353, + 21052.87942861029, + 21520.197163026394, + 21999.57291462771, + 22491.006683414194, + 22994.49846938587, + 23510.04827254273, + 24037.656092884772, + 24577.321930411996, + 11334.002897298002, + 11437.605733087035, + 11553.266586061261, + 11680.985456220664, + 11820.762343565255, + 11972.59724809504, + 12136.490169809997, + 12312.441108710143, + 12500.450064795483, + 12700.517038065998, + 12912.642028521708, + 13136.825036162594, + 13373.066060988662, + 13621.365102999918, + 13881.72216219637, + 14154.137238577998, + 14438.610332144814, + 14735.141442896815, + 15043.730570833995, + 15364.377715956369, + 15697.082878263927, + 16041.846057756662, + 16398.6672544346, + 16767.546468297704, + 17148.483699345994, + 17541.478947579486, + 17946.532212998147, + 18363.643495601995, + 18792.81279539104, + 19234.040112365255, + 19687.325446524657, + 20152.668797869264, + 20630.070166399033, + 21119.529552114007, + 21621.04695501415, + 22134.62237509948, + 22660.255812369993, + 11836.074536082, + 11944.251445958145, + 12064.486373019483, + 12196.779317266, + 12341.1302786977, + 12497.539257314593, + 12666.006253116659, + 12846.531266103922, + 13039.11429627637, + 13243.755343634, + 13460.454408176822, + 13689.211489904817, + 13930.026588817998, + 14182.899704916366, + 14447.830838199929, + 14724.819988668663, + 15013.867156322593, + 15314.972341161705, + 15628.135543185996, + 15953.356762395482, + 16290.63599879015, + 16639.973252369993, + 17001.36852313504, + 17374.821811085265, + 17760.33311622066, + 18157.90243854126, + 18567.529778047032, + 18989.215134737995, + 19422.958508614145, + 19868.759899675482, + 20326.619307921996, + 20796.536733353703, + 21278.51217597059, + 21772.545635772673, + 22278.637112759927, + 22796.786606932365, + 23326.994118289997, + 12733.274153293201, + 12849.684396526149, + 12978.152656944281, + 13118.678934547599, + 13271.2632293361, + 13435.905541309796, + 13612.605870468666, + 13801.364216812723, + 14002.180580341972, + 14215.054961056401, + 14439.987358956021, + 14676.977774040819, + 14926.026206310802, + 15187.132655765967, + 15460.297122406331, + 15745.519606231866, + 16042.800107242594, + 16352.138625438507, + 16673.535160819596, + 17006.98971338588, + 17352.502283137354, + 17710.072870073996, + 18079.70147419584, + 18461.38809550286, + 18855.132733995062, + 19260.935389672457, + 19678.796062535042, + 20108.714752582804, + 20550.69145981575, + 21004.72618423388, + 21470.818925837197, + 21948.96968462571, + 22439.17846059939, + 22941.445253758277, + 23455.77006410233, + 23982.15289163157, + 24520.593736345993, + 11329.511149020002, + 11431.896099337037, + 11546.339066839259, + 11672.840051526664, + 11811.399053399258, + 11962.016072457038, + 12124.691108699999, + 12299.424162128142, + 12486.215232741482, + 12685.064320540001, + 12895.971425523709, + 13118.936547692594, + 13353.959687046665, + 13601.040843585923, + 13860.18001731037, + 14131.377208220001, + 14414.63241631482, + 14709.945641594815, + 15017.316884059997, + 15336.746143710376, + 15668.23342054593, + 16011.778714566663, + 16367.3820257726, + 16735.043354163703, + 17114.762699739997, + 17506.540062501484, + 17910.37544244815, + 18326.268839579996, + 18754.22025389704, + 19194.22968539926, + 19646.297134086657, + 20110.422599959267, + 20586.606083017035, + 21074.847583260005, + 21575.147100688147, + 22087.504635301484, + 22611.920187099997, + 11829.245993280003, + 11936.202479348147, + 12055.21698260148, + 12186.289503039998, + 12329.420040663703, + 12484.608595472591, + 12651.855167466661, + 12831.159756645924, + 13022.522363010368, + 13225.942986559998, + 13441.42162729482, + 13668.958285214816, + 13908.552960319996, + 14160.205652610368, + 14423.916362085924, + 14699.68508874666, + 14987.511832592598, + 15287.396593623704, + 15599.339371839998, + 15923.340167241488, + 16259.39897982815, + 16607.515809599998, + 16967.690656557043, + 17339.923520699263, + 17724.21440202666, + 18120.56330053926, + 18528.970216237034, + 18949.435149119992, + 19381.958099188145, + 19826.53906644148, + 20283.17805087999, + 20751.87505250371, + 21232.63007131259, + 21725.44310730667, + 22230.314160485934, + 22747.24323085037, + 23276.230318399994, + 12722.23938034801, + 12837.42463076815, + 12964.667898373484, + 13103.969183164007, + 13255.328485139706, + 13418.745804300597, + 13594.221140646667, + 13781.754494177929, + 13981.345864894376, + 14192.995252796001, + 14416.70265788282, + 14652.468080154817, + 14900.291519612001, + 15160.17297625437, + 15432.112450081931, + 15716.109941094666, + 16012.165449292599, + 16320.278974675706, + 16640.450517243997, + 16972.680076997487, + 17316.967653936154, + 17673.313248059996, + 18041.716859369048, + 18422.178487863264, + 18814.698133542664, + 19219.275796407266, + 19635.91147645704, + 20064.605173692, + 20505.356888112157, + 20958.16661971749, + 21423.034368507997, + 21899.960134483714, + 22388.943917644592, + 22889.98571799068, + 23403.085535521936, + 23928.243370238375, + 24465.459222139994, + 11326.613080602, + 11427.780145447037, + 11541.005227477259, + 11666.288326692666, + 11803.62944309326, + 11953.028576679037, + 12114.485727449997, + 12288.000895406145, + 12473.574080547483, + 12671.205282873998, + 12880.894502385709, + 13102.641739082594, + 13336.446992964668, + 13582.31026403192, + 13840.231552284373, + 14110.210857721997, + 14392.248180344817, + 14686.343520152814, + 14992.496877145997, + 15310.708251324373, + 15640.977642687929, + 15983.30505123667, + 16337.690476970596, + 16704.133919889704, + 17082.635379993993, + 17473.194857283484, + 17875.812351758144, + 18290.487863418, + 18717.22139226304, + 19156.012938293257, + 19606.862501508655, + 20069.77008190926, + 20544.735679495036, + 21031.75929426601, + 21530.84092622215, + 22041.98057536348, + 22565.17824168999, + 11824.011130338002, + 11929.747192598148, + 12047.541272043485, + 12177.393368674, + 12319.303482489702, + 12473.271613490599, + 12639.29776167667, + 12817.381927047927, + 13007.524109604376, + 13209.724309345998, + 13423.98252627282, + 13650.29876038482, + 13888.673011682002, + 14139.105280164367, + 14401.595565831929, + 14676.143868684663, + 14962.750188722597, + 15261.414525945705, + 15572.136880353999, + 15894.917251947489, + 16229.755640726155, + 16576.652046690004, + 16935.60646983904, + 17306.618910173263, + 17689.689367692663, + 18084.817842397264, + 18492.004334287038, + 18911.248843362, + 19342.55136962215, + 19785.911913067477, + 20241.330473697995, + 20708.807051513708, + 21188.34164651459, + 21679.934258700676, + 22183.58488807193, + 22699.293534628374, + 23227.060198369993, + 12712.798287262805, + 12826.758544870147, + 12952.776819662688, + 13090.853111640401, + 13240.987420803305, + 13403.179747151395, + 13577.430090684667, + 13763.738451403127, + 13962.104829306776, + 14172.529224395597, + 14395.01163666962, + 14629.552066128817, + 14876.150512773202, + 15134.806976602767, + 15405.52145761753, + 15688.293955817466, + 15983.124471202596, + 16290.013003772905, + 16608.9595535284, + 16939.964120469085, + 17283.02670459495, + 17638.147305905997, + 18005.32592440224, + 18384.56256008366, + 18775.857212950265, + 19179.20988300207, + 19594.620570239033, + 20022.089274661197, + 20461.61599626855, + 20913.20073506108, + 21376.843491038795, + 21852.54426420171, + 22340.303054549793, + 22840.119862083076, + 23351.994686801532, + 23875.927528705175, + 24411.918387794, + 11326.389448128964, + 11427.421192257741, + 11540.51095357171, + 11665.658732070859, + 11802.864527755197, + 11952.12834062472, + 12113.450170679424, + 12286.830017919312, + 12472.267882344395, + 12669.763763954654, + 12879.317662750103, + 13100.929578730736, + 13334.59951189655, + 13580.327462247553, + 13838.113429783747, + 14107.957414505114, + 14389.85941641168, + 14683.81943550342, + 14989.837471780342, + 15307.913525242466, + 15638.047595889762, + 15980.23968372224, + 16334.489788739918, + 16700.79791094277, + 17079.164050330804, + 17469.588206904038, + 17872.070380662444, + 18286.61057160604, + 18713.20877973483, + 19151.86500504879, + 19602.579247547932, + 20065.35150723228, + 20540.181784101795, + 21027.070078156514, + 21526.016389396395, + 22037.020717821466, + 22560.083063431724, + 11823.527853821248, + 11929.128313327581, + 12046.786790019101, + 12176.503283895798, + 12318.277794957692, + 12472.110323204764, + 12638.000868637024, + 12815.949431254467, + 13005.956011057098, + 13208.020608044904, + 13422.143222217916, + 13648.323853576097, + 13886.562502119465, + 14136.859167848019, + 14399.213850761762, + 14673.62655086068, + 14960.0972681448, + 15258.626002614088, + 15569.21275426857, + 15891.857523108245, + 16226.560309133092, + 16573.321112343125, + 16932.13993273835, + 17303.01677031875, + 17685.95162508434, + 18080.944497035125, + 18487.995386171086, + 18907.10429249223, + 19338.271215998575, + 19781.49615669009, + 20236.77911456678, + 20704.120089628683, + 21183.51908187575, + 21674.976091308017, + 22178.49111792546, + 22694.06416172808, + 23221.695222715887, + 12711.847651467364, + 12825.67179865329, + 12951.553963024406, + 13089.494144580698, + 13239.49234332218, + 13401.548559248848, + 13575.6627923607, + 13761.835042657736, + 13960.065310139962, + 14170.353594807368, + 14392.699896659966, + 14627.104215697746, + 14873.566551920701, + 15132.08690532885, + 15402.665275922187, + 15685.301663700704, + 15979.996068664415, + 16286.748490813303, + 16605.55893014737, + 16936.427386666637, + 17279.353860371084, + 17634.338351260707, + 18001.38085933553, + 18380.481384595525, + 18771.63992704071, + 19174.856486671084, + 19590.131063486646, + 20017.463657487377, + 20456.85426867331, + 20908.302897044425, + 21371.809542600706, + 21847.374205342207, + 22334.99688526886, + 22834.677582380726, + 23346.416296677762, + 23870.21302815998, + 24406.06777682738, + 12147.6287167, + 12208.064278537036, + 12280.55785755926, + 12365.109453766661, + 12461.719067159258, + 12570.386697737036, + 12691.112345500005, + 12823.896010448148, + 12968.737692581484, + 13125.6373919, + 13294.595108403711, + 13475.610842092594, + 13668.684592966669, + 13873.816361025923, + 14091.006146270376, + 14320.253948699996, + 14561.559768314823, + 14814.923605114816, + 15080.345459100005, + 15357.825330270374, + 15647.363218625933, + 15948.959124166664, + 16262.613046892597, + 16588.324986803706, + 16926.094943899996, + 17275.922918181484, + 17637.80890964815, + 18011.752918299997, + 18397.75494413704, + 18795.814987159258, + 19205.933047366663, + 19628.109124759263, + 20062.343219337035, + 20508.635331100006, + 20966.985460048152, + 21437.393606181482, + 21919.85976949999, + 12566.873971799998, + 12631.793637814812, + 12708.771321014814, + 12797.807021400002, + 12898.90073897037, + 13012.052473725927, + 13137.262225666664, + 13274.52999479259, + 13423.8557811037, + 13585.2395846, + 13758.681405281484, + 13944.18124314815, + 14141.739098199996, + 14351.354970437033, + 14573.028859859256, + 14806.760766466665, + 15052.550690259259, + 15310.398631237038, + 15580.304589399995, + 15862.268564748148, + 16156.29055728148, + 16462.370566999998, + 16780.50859390371, + 17110.704637992596, + 17452.958699266655, + 17807.270777725927, + 18173.64087337037, + 18552.068986199996, + 18942.555116214815, + 19345.099263414817, + 19759.70142779999, + 20186.361609370364, + 20625.079808125924, + 21075.85602406667, + 21538.690257192597, + 22013.582507503703, + 22500.532774999985, + 13314.98609838, + 13387.977151914814, + 13473.026222634819, + 13570.133310540004, + 13679.29841563037, + 13800.521537905932, + 13933.80267736667, + 14079.141834012597, + 14236.539007843705, + 14405.994198860006, + 14587.507407061488, + 14781.078632448156, + 14986.70787502, + 15204.39513477704, + 15434.140411719263, + 15675.943705846666, + 15929.805017159266, + 16195.724345657045, + 16473.70169134, + 16763.737054208148, + 17065.83043426149, + 17379.981831500005, + 17706.191245923717, + 18044.4586775326, + 18394.78412632666, + 18757.167592305927, + 19131.609075470373, + 19518.108575820002, + 19916.66609335482, + 20327.28162807482, + 20749.955179979996, + 21184.686749070377, + 21631.476335345928, + 22090.323938806676, + 22561.2295594526, + 23044.193197283705, + 23539.214852299992 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.426538638300477, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC125A_MP.json b/examples/NyleC125A_MP.json new file mode 100644 index 0000000..ea9ea6a --- /dev/null +++ b/examples/NyleC125A_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0017665246666666668, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 27130.0, + 26750.000002039997, + 26229.99999975, + 25840.00000494, + 25630.00000262, + 25099.999991970002, + 37030.00000037, + 36040.0000014, + 34980.00000488, + 33990.00000295, + 32839.9999975, + 31880.000001689998, + 50009.999997750005, + 47860.000000579996, + 45969.999998190004, + 44060.0000064, + 41599.99999584, + 39570.00000765, + 57119.999997060004, + 54619.999998, + 51980.00000046, + 48499.99999849, + 43800.000006199996, + 40700.0000064 + ], + "input_power": [ + 6400.0, + 7720.0, + 9650.0, + 12540.0, + 20540.0, + 24690.0, + 6890.0, + 8280.0, + 10130.0, + 12850.0, + 19750.0, + 24390.0, + 7690.0, + 9070.0, + 10870.0, + 13440.0, + 19680.0, + 22350.0, + 8580.0, + 9500.0, + 11270.0, + 13690.0, + 19720.0, + 22400.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC125A_SP.json b/examples/NyleC125A_SP.json new file mode 100644 index 0000000..f9bd1e9 --- /dev/null +++ b/examples/NyleC125A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 26826.400702040017, + 26724.31540732306, + 26636.040673103733, + 26560.210327251145, + 26495.431761373206, + 26440.285930816477, + 26393.32735466632, + 26353.08411574685, + 26318.057860620873, + 26286.723799589956, + 26257.530706694415, + 26228.90091971329, + 26199.23034016439, + 26166.888433304222, + 26130.218228128073, + 26087.536317369944, + 26037.132857502573, + 25977.271568737473, + 25906.189735024836, + 25822.098204053676, + 25723.18138725167, + 25607.597259785278, + 25473.477360559693, + 25318.926792218845, + 25142.02422114539, + 24940.821877460723, + 24713.345555025047, + 24457.594611437205, + 24171.541968034824, + 23853.1341098943, + 23500.291085830737, + 23110.906508397966, + 22682.847553888594, + 22213.95496233393, + 21702.043037504063, + 21144.899646907794, + 20540.286221792703, + 27260.678307639806, + 27196.624391703757, + 27144.280092542725, + 27102.51307362544, + 27070.164562159414, + 27046.049349090892, + 27028.95578910483, + 27017.645800624985, + 27010.854865813788, + 27007.292030572422, + 27005.639904540876, + 27004.554661097813, + 27002.666037360617, + 26998.57733418549, + 26990.865416167315, + 26978.08071163973, + 26958.747212675127, + 26931.36247508461, + 26894.397618418054, + 26846.29732596404, + 26785.47984474991, + 26710.336985541755, + 26619.23412284441, + 26510.5101949014, + 26382.47770369503, + 26233.422714946355, + 26061.604858115166, + 25865.257326399962, + 25642.586876737994, + 25391.773829805283, + 25110.972070016567, + 24798.309045525308, + 24451.885768223743, + 24069.776813742817, + 23650.03032145226, + 23190.667994460477, + 22689.685099614686, + 26868.118347655236, + 26765.67408013116, + 26677.085776788208, + 26600.985135087532, + 26535.97741622909, + 26480.64144515151, + 26433.529610532194, + 26393.167864787312, + 26358.05572407171, + 26326.666268279, + 26297.446141041597, + 26268.815549730567, + 26239.168265455748, + 26206.871623065726, + 26170.26652114783, + 26127.667422028095, + 26077.36235177136, + 26017.61290018113, + 25946.65422079972, + 25862.695030908126, + 25763.917611526093, + 25648.477807412168, + 25514.505027063577, + 25360.102242716275, + 25183.345990345002, + 24982.2863696632, + 24754.947044123113, + 24499.32524091565, + 24213.391750970477, + 23895.090928956055, + 23542.340693279526, + 23153.032526086783, + 22725.03147326248, + 22256.176144429974, + 21744.27871295141, + 21187.12491592765, + 20582.474054198294, + 27300.232138926876, + 27235.808756249662, + 27183.13195181964, + 27141.067525852646, + 27108.454842303352, + 27084.106828865068, + 27066.809976969922, + 27055.32434178872, + 27048.38354223105, + 27044.694760945215, + 27042.938744318286, + 27041.769802476036, + 27039.815809283034, + 27035.67820234251, + 27027.931982996524, + 27015.125716325787, + 26995.781531149827, + 26968.395120026875, + 26931.435739253873, + 26883.346208866573, + 26822.542912639416, + 26747.41579808558, + 26656.328376457026, + 26547.617722744435, + 26419.59447567718, + 26270.542837723435, + 26098.720575090098, + 25902.35901772285, + 25679.663059305967, + 25428.811157262626, + 25147.9553327547, + 24835.221170682726, + 24488.707819686086, + 24106.48799214281, + 23686.607964169765, + 23227.087575622474, + 22725.920230095257, + 27243.82443904605, + 27138.088699279564, + 27046.618572455096, + 26968.02658236225, + 26900.898816529443, + 26843.794926223785, + 26795.248126451163, + 26753.76519595618, + 26717.82647722217, + 26685.88587647121, + 26656.370863664157, + 26627.682472500586, + 26598.19530041876, + 26566.257508595765, + 26530.19082194737, + 26488.2905291281, + 26438.82548253124, + 26380.038098288776, + 26310.1443562715, + 26227.33380008884, + 26129.76953708904, + 26015.588238359094, + 25882.900138724697, + 25729.789036750284, + 25554.31229473906, + 25354.500838732936, + 25128.359158512594, + 24873.86530759743, + 24588.97090324559, + 24271.601126453996, + 23919.654721958224, + 23531.003998232663, + 23103.494827490427, + 22634.946645683358, + 22123.15245250207, + 21565.87881137585, + 20960.8658494728, + 27656.21837507056, + 27588.42313853712, + 27532.707977712766, + 27487.921923537353, + 27452.887570689563, + 27426.40107758676, + 27407.23216638511, + 27394.124122979443, + 27385.79379700337, + 27380.93160182925, + 27378.201514568158, + 27376.24107606994, + 27373.661390923156, + 27369.047127455113, + 27360.956517731847, + 27347.92135755815, + 27328.44700647755, + 27301.012387772338, + 27264.069988463485, + 27216.045859310765, + 27155.339614812638, + 27080.32443320635, + 26989.34705646789, + 26880.727790311925, + 26752.760504191912, + 26603.712631300048, + 26431.825168567255, + 26235.312676663234, + 26012.36327999632, + 25761.138666713712, + 25479.77408870131, + 25166.378361583687, + 24819.033864724264, + 24435.79654122511, + 24014.695897927097, + 23553.73500540981, + 23050.890497991586, + 27620.109512937084, + 27510.9711778564, + 27416.509932575733, + 27335.319127213184, + 27265.9656756256, + 27206.99005540858, + 27156.90630789648, + 27114.20203816234, + 27077.33841501801, + 27044.75017101399, + 27014.845602439636, + 26986.006569322948, + 26956.588495430693, + 26924.92036826841, + 26889.304739080348, + 26848.01772284947, + 26799.308998297558, + 26741.401807885053, + 26672.492957811184, + 26590.752818013916, + 26494.325322169894, + 26381.32796769461, + 26249.851815742226, + 26097.961491205617, + 25923.69518271649, + 25725.064642645193, + 25500.055187100897, + 25246.62569593147, + 24962.708612723498, + 24646.209944802376, + 24295.00926323217, + 23906.959702815704, + 23479.88796209459, + 23011.594303349113, + 22499.85255259836, + 21942.410099600074, + 21336.987897850853, + 28012.32317770507, + 27941.070502408664, + 27882.232919865182, + 27834.64269173854, + 27797.105643431456, + 27768.4011640853, + 27747.282206580287, + 27732.475287535293, + 27722.680487307953, + 27716.571449994633, + 27712.79538343049, + 27709.97305918935, + 27706.698812583843, + 27701.540542665276, + 27693.039712223755, + 27679.7113477881, + 27660.044039625856, + 27632.499941743336, + 27595.51477188558, + 27547.497811536352, + 27486.83190591819, + 27411.87346399233, + 27320.952458458807, + 27212.372425756355, + 27084.410466062418, + 26935.31724329326, + 26763.31698510381, + 26566.607482887797, + 26343.36009177763, + 26091.719730644512, + 25809.80488209836, + 25495.707592487826, + 25147.493471900307, + 24763.201694161948, + 24340.844996837666, + 23878.409681231016, + 23373.855612384414, + 27997.163598760846, + 27884.508941200114, + 27786.944678394542, + 27703.044986790672, + 27631.35760657384, + 27570.40384166812, + 27518.678559736283, + 27474.6501921799, + 27436.760734139247, + 27403.425744493303, + 27373.034345859887, + 27343.949224595483, + 27314.506630795313, + 27283.01637829338, + 27247.761844662386, + 27206.999971213787, + 27158.961262997822, + 27101.84978880339, + 27033.843181158212, + 26953.09263632868, + 26857.72291431994, + 26745.832338875938, + 26615.492797479284, + 26464.749741351352, + 26291.622185452314, + 26094.102708480958, + 25870.157452874955, + 25617.726124810586, + 25334.72199420298, + 25019.031894705924, + 24668.516223712, + 24281.008942352502, + 23854.317575497484, + 23386.22321175567, + 22874.48050347466, + 22316.81766674068, + 21710.93648137874, + 28368.710331295948, + 28293.91234561082, + 28231.865989304453, + 28181.386754764815, + 28141.26369811864, + 28110.259439231337, + 28087.11016170714, + 28070.525612888963, + 28059.189103858473, + 28051.75750943609, + 28046.86126818098, + 28043.10438239101, + 28039.064418102844, + 28033.29250509183, + 28024.313336872092, + 28010.625170696476, + 27990.69982755658, + 27962.982692182744, + 27925.892713044035, + 27877.82240234825, + 27817.137836041973, + 27742.17865381047, + 27651.258059077798, + 27542.662819006702, + 27414.65326449871, + 27265.463290194104, + 27093.300354471816, + 26896.345479449643, + 26672.753250984006, + 26420.651818670132, + 26138.142895842, + 25823.301759572274, + 25474.177250672397, + 25088.791773692537, + 24665.14129692163, + 24201.195352387298, + 23694.897035855964, + 28375.17644723429, + 28258.889135933612, + 28158.107352440344, + 28071.3860995295, + 27997.253943714888, + 27934.213015249014, + 27880.739008123175, + 27835.281180067377, + 27796.26235255035, + 27762.07891077957, + 27731.1008037013, + 27701.67154400049, + 27672.108208100854, + 27640.701436164825, + 27605.71543209361, + 27565.387963527097, + 27517.93036184401, + 27461.527522161723, + 27394.337903336418, + 27314.493527962928, + 27220.0999823749, + 27109.23641664474, + 26979.9555445835, + 26830.283643741048, + 26658.220555406006, + 26461.73968460565, + 26238.78800010608, + 25987.286034412115, + 25705.127883767265, + 25390.181208153834, + 25040.287231292867, + 24653.260740644087, + 24226.89008740606, + 23758.937186515992, + 23247.1375166499, + 22689.20012022248, + 22082.807603387242, + 28725.543341593177, + 28647.109887174607, + 28581.766118342646, + 28528.31075820925, + 28485.51609362521, + 28452.12797517995, + 28426.865817201757, + 28408.422597757588, + 28395.464858653122, + 28386.632705432803, + 28380.53980737985, + 28375.773397516172, + 28370.894272602436, + 28364.436793138026, + 28354.908883361113, + 28340.792031248588, + 28320.54128851606, + 28292.5852706179, + 28255.326156747236, + 28207.139689835873, + 28146.375176554404, + 28071.355487312212, + 27980.37705625728, + 27871.709881276467, + 27743.597523995293, + 27594.257109778064, + 27421.87932772782, + 27224.62843068627, + 27000.64223523397, + 26748.032121690172, + 26464.883034112816, + 26149.253480298674, + 25799.175531783163, + 25412.654823840527, + 24987.670555483714, + 24522.17548946439, + 24014.095952273015, + 28754.337530358738, + 28634.29862996413, + 28530.182218526315, + 28440.524125148753, + 28363.833742673738, + 28298.594027682277, + 28243.261500494064, + 28196.266245167597, + 28156.01190950011, + 28120.875705027498, + 28089.208407024522, + 28059.334354504565, + 28029.551450219817, + 27998.131160661218, + 27963.318516058403, + 27923.332110379746, + 27876.364101332427, + 27820.58021036227, + 27754.119722653933, + 27675.095487130755, + 27581.593916454807, + 27471.674987026956, + 27343.37223898677, + 27194.692776212538, + 27023.61726632136, + 26828.099940668977, + 26606.06859435, + 26355.42458619761, + 26074.042838783873, + 25759.77183841957, + 25410.433635154135, + 25023.823842775833, + 24597.71163881165, + 24129.839764527267, + 23617.92452492718, + 23059.655788754553, + 22452.696988491352, + 29082.98543563108, + 29000.824067415386, + 28932.09196057608, + 28875.5710689492, + 28830.01691010952, + 28794.15856537057, + 28766.698679784597, + 28746.31346214261, + 28731.652684974342, + 28721.339684548257, + 28713.971360871612, + 28708.11817769033, + 28702.324162489116, + 28695.106906491423, + 28684.957564659435, + 28670.340855694034, + 28649.695062034916, + 28621.43202986046, + 28583.93716908782, + 28535.569453372882, + 28474.661420110213, + 28399.519170433225, + 28308.422369214004, + 28199.624245063373, + 28071.35159033092, + 27921.804761104988, + 27749.157677212603, + 27551.557822219576, + 27327.126243430437, + 27073.957551888478, + 26790.11992237572, + 26473.655093412905, + 26122.57836725954, + 25734.878609913874, + 25308.518251112873, + 24841.433284332255, + 24331.53326678651, + 28923.330804347064, + 28801.58507174216, + 28695.94779608626, + 28604.94628186849, + 28527.081397316753, + 28460.82757439764, + 28404.632808816583, + 28356.918660017676, + 28316.080251183746, + 28280.486269236393, + 28248.47896483596, + 28218.374152381497, + 28188.46121001084, + 28157.003079600516, + 28122.236266765834, + 28082.37084086082, + 28035.590434978236, + 27980.05224594959, + 27913.887034345174, + 27835.19912447393, + 27742.066404383586, + 27632.54032586066, + 27504.64590443033, + 27356.38171935655, + 27185.719913642013, + 26990.606194028132, + 26768.95983099513, + 26518.673658761887, + 26237.614075286016, + 25923.621042263952, + 25574.508085130845, + 25188.062293060513, + 24762.04431896558, + 24294.18837949742, + 23782.202255046133, + 23223.767289740506, + 22616.538391448164, + 29242.142439238516, + 29158.293354849007, + 29088.02499522238, + 29030.11185857455, + 28983.302006860198, + 28946.317065772753, + 28917.85222474438, + 28896.57623694598, + 28881.13141928722, + 28870.133652416425, + 28862.172380720778, + 28855.810612326128, + 28849.584919097055, + 28842.00543663694, + 28831.55586428784, + 28816.69346513056, + 28795.849065984723, + 28767.427057408586, + 28729.805393699222, + 28681.335592892374, + 28620.342736762595, + 28545.125470823157, + 28453.956004326046, + 28345.080110261995, + 28216.717125360537, + 28067.059950089835, + 27894.275048656906, + 27696.502449007417, + 27471.85574282581, + 27218.42208553532, + 26934.26219629779, + 26617.41035801394, + 26265.874417323183, + 25877.63578460362, + 25450.64943397218, + 24982.843903284447, + 24472.121294134817, + 29134.836041419887, + 29010.924012483312, + 28903.353261750042, + 28810.640444651995, + 28731.27578035993, + 28663.723051783298, + 28606.419605570307, + 28557.776352107903, + 28516.17776552176, + 28479.981883676264, + 28447.52030817465, + 28417.09820435875, + 28386.994301309245, + 28355.460891845505, + 28320.723832525648, + 28280.982543646536, + 28234.410009243777, + 28179.152777091702, + 28113.33095870343, + 28035.038229330723, + 27942.341827964152, + 27833.282557333074, + 27705.87478390547, + 27558.106437888135, + 27387.939013226627, + 27193.307567605156, + 26972.12072244677, + 26722.26066291317, + 26441.58313790484, + 26127.917460061042, + 25779.06650575971, + 25392.80671511754, + 24966.88809198998, + 24499.034203971205, + 23986.942182394167, + 23428.282722330474, + 22820.700082590574, + 29441.199561728423, + 29355.2155479329, + 29283.00189088559, + 29223.32377514648, + 29174.919949014464, + 29136.502724527036, + 29106.75797746053, + 29084.345147329943, + 29067.89723738907, + 29056.020814630403, + 29047.296009785216, + 29040.276517323473, + 29033.489595453942, + 29025.43606612405, + 29014.590315020054, + 28999.400291566883, + 28978.28750892822, + 28949.64704400652, + 28911.847537442936, + 28863.231193617383, + 28802.11378064852, + 28726.78463039373, + 28635.50663844914, + 28526.516264149654, + 28398.02353056884, + 28248.212024519093, + 28075.238896551447, + 27877.234860955825, + 27652.304195760687, + 27398.524742733403, + 27113.94790738006, + 26796.598658945382, + 26444.475530412932, + 26055.550618504974, + 25627.769583682562, + 25159.051650145382, + 24647.289605831975, + 29516.860894987873, + 29388.951593967246, + 29277.80418849354, + 29181.916160327153, + 29099.75855496733, + 29029.775981651925, + 28970.38661335767, + 28919.982186799956, + 28876.928002432924, + 28839.562924449452, + 28806.1993807812, + 28775.123363098504, + 28744.594426810483, + 28712.84569106499, + 28678.0838387486, + 28638.489116486668, + 28592.215334643228, + 28537.3898673211, + 28472.11365236186, + 28394.461191345763, + 28302.480549591834, + 28194.19335615788, + 28067.594803840362, + 27920.653649174546, + 27751.312212434423, + 27557.48637763271, + 27337.065592520914, + 27087.912868589225, + 26807.864781066517, + 26494.73146892061, + 26146.29663485785, + 25760.3175453234, + 25334.525030501172, + 24866.623484313855, + 24354.29086442282, + 23795.178692228175, + 23186.91205286881, + 29800.348389488387, + 29710.444711611388, + 29634.654005436347, + 29571.72468624735, + 29520.378733067264, + 29479.31168865764, + 29447.192659518838, + 29422.664315889895, + 29404.342891748634, + 29390.81818481157, + 29380.65355653402, + 29372.38593211001, + 29364.52580047227, + 29355.557214292345, + 29343.93778998046, + 29328.098707685578, + 29306.444711295473, + 29277.354108436553, + 29239.1787704741, + 29190.244132511973, + 29128.84919339289, + 29053.266515698313, + 28961.742225748345, + 28852.49601360191, + 28723.721133056693, + 28573.58440164902, + 28400.226200654073, + 28201.760475085677, + 27976.274733696424, + 27721.83004897771, + 27436.461057159577, + 27118.175958210853, + 26764.95651583913, + 26374.758057490697, + 25945.509474350594, + 25475.113221342588, + 24961.445317129273, + 29900.60072691724, + 29768.567406176404, + 29653.718426423213, + 29554.532095746574, + 29469.46028597418, + 29396.928432672357, + 29335.335535146285, + 29283.05415643985, + 29238.43042333564, + 29199.784026355013, + 29165.40821975807, + 29133.569821543646, + 29102.50921344931, + 29070.440340951383, + 29035.550713264915, + 28996.00140334371, + 28949.92704788029, + 28895.435847305944, + 28830.60956579067, + 28753.50353124323, + 28662.146635311125, + 28554.54133338058, + 28428.663644576573, + 28282.46315176283, + 28113.863001541795, + 27920.759904254664, + 27701.024133981366, + 27452.499528540582, + 27173.003489489718, + 26860.326982124945, + 26512.234535481155, + 26126.464242331986, + 25700.727759189787, + 25232.7103063057, + 24720.070667669585, + 24160.44119101, + 23551.42778779434, + 30160.594309798482, + 30066.671662619374, + 29987.20612167797, + 29920.9293329824, + 29866.546506279537, + 29822.73641505501, + 29788.15139653318, + 29761.41735167713, + 29741.133745188716, + 29725.873605508485, + 29714.183524815795, + 29704.583659028656, + 29695.56772780391, + 29685.603014537082, + 29673.13036636244, + 29656.564194152983, + 29634.292472520487, + 29604.676739815477, + 29566.052098127184, + 29516.727213283535, + 29454.984314851266, + 29379.079196135892, + 29287.24121418154, + 29177.673289771163, + 29048.551907426478, + 28898.027115407847, + 28724.22252571449, + 28525.23531408425, + 28299.13621999376, + 28043.969546658456, + 27757.753161032408, + 27438.478493808478, + 27084.110539418296, + 26692.587856032158, + 26261.822565559174, + 25789.700353647127, + 25274.08046968261, + 30286.243894346917, + 30149.95720215563, + 30031.279124489876, + 29928.668795767015, + 29840.558914143185, + 29765.355741513205, + 29701.439103510747, + 29647.162389508085, + 29600.85255261634, + 29560.81010968531, + 29525.309141303584, + 29492.59729179844, + 29460.89576923592, + 29428.39934542083, + 29393.276355896665, + 29353.668699945676, + 29307.69184058891, + 29253.434804586075, + 29188.960182435665, + 29112.304128374886, + 29021.47636037971, + 28914.460160164854, + 28789.212373183727, + 28643.66340862852, + 28475.717239430185, + 28283.25140225834, + 28064.116997521432, + 27816.138689366562, + 27537.114705679614, + 27224.816838085262, + 26876.99044194679, + 26491.354436366335, + 26065.601304184762, + 25597.397091981642, + 25084.38141007529, + 24524.167432522747, + 23914.341897119855, + 30522.09943483073, + 30424.056226409866, + 30340.815778344473, + 30271.09296736664, + 30213.576233947362, + 30166.927582296234, + 30129.782580361665, + 30100.75035983079, + 30078.413616129477, + 30061.32860842231, + 30048.025159612684, + 30037.00665634265, + 30026.75004899307, + 30015.705851683484, + 30002.298142272237, + 29984.92456235634, + 29961.956317271626, + 29931.73817609259, + 29892.588471632516, + 29842.799100443415, + 29780.635522816036, + 29704.336762779873, + 29612.115408103135, + 29502.157610292823, + 29372.62308459463, + 29221.64510999302, + 29047.330529211173, + 28847.759748711047, + 28620.986738693242, + 28365.039033097222, + 28077.91772960114, + 27757.59748962185, + 27402.02653831501, + 27009.126664575007, + 26576.79322103494, + 26102.895124066636, + 25585.27485378072, + 30673.978475700234, + 30533.30645623424, + 30410.66915292874, + 30304.506526529625, + 30213.232101521462, + 30135.23296612753, + 30068.86977230998, + 30012.47673576959, + 29964.361635945872, + 29922.805816017168, + 29886.064182900453, + 29852.36520725154, + 29819.91092346494, + 29786.876929673846, + 29751.412387750297, + 29711.640023305008, + 29665.656125687427, + 29611.53054798579, + 29547.306707027055, + 29471.001583376878, + 29380.60572133968, + 29274.083228958683, + 29149.371778015742, + 29004.38260403153, + 28837.00050626542, + 28645.083847715552, + 28426.464555118808, + 28178.94811895079, + 27900.3135934258, + 27588.313596497006, + 27240.674309856167, + 26855.095478933854, + 26429.250412899462, + 25960.78598466093, + 25447.322630865132, + 24886.45435189754, + 24275.74871188246, + 30885.02559804144, + 30782.75794972024, + 30695.64023545422, + 30622.370562699514, + 30561.620602651146, + 30512.035590242736, + 30472.23432414675, + 30440.80916677434, + 30416.326044275404, + 30397.324446538565, + 30382.31742719124, + 30369.791603599537, + 30358.20715686833, + 30345.997831841203, + 30331.570937100503, + 30313.307344967336, + 30289.561491501496, + 30258.66137650158, + 30218.908563504843, + 30168.57817978736, + 30105.918916363924, + 30029.153027988028, + 29936.476333151957, + 29826.058214086705, + 29696.041616762017, + 29544.543050886394, + 29369.652589907037, + 29169.433871009925, + 28941.924095119728, + 28685.134026899916, + 28397.047994752695, + 28075.623890818926, + 27718.793170978326, + 27324.460854849276, + 26890.505525788954, + 26414.779330893187, + 25895.107980996643, + 31063.99227068493, + 30918.800364025843, + 30792.071103259426, + 30682.225275459925, + 30587.657231440444, + 30506.734885752747, + 30437.79971668739, + 30379.166766273618, + 30329.124640279486, + 30285.935508211707, + 30247.835103315814, + 30213.032722576005, + 30179.71122671529, + 30146.02704019536, + 30110.11015121669, + 30070.064111718457, + 30023.96603737859, + 29969.866607613796, + 29905.790065579462, + 29829.734218169764, + 29739.670436017564, + 29633.543653494522, + 29509.272368711023, + 29364.748643516145, + 29197.838103497776, + 29006.379937982503, + 28788.186900035656, + 28541.045306461336, + 28262.715037802296, + 27950.929538340155, + 27603.395816095177, + 27217.79444282639, + 26791.77955403159, + 26322.978848947303, + 25808.99359054875, + 25247.398605549944, + 24635.74228440366, + 31249.534354171446, + 31142.93610057231, + 31051.83647431006, + 30974.916813564876, + 30910.832020255773, + 30858.210560040443, + 30815.654462315368, + 30781.739320215733, + 30755.014290615465, + 30734.002094127238, + 30717.199015102466, + 30703.074901631346, + 30690.073165542715, + 30676.61078240426, + 30661.078291522328, + 30641.839795942036, + 30617.23296244724, + 30585.56902156054, + 30545.132767543295, + 30494.18255839554, + 30430.95031585611, + 30353.64152540259, + 30260.43523625121, + 30149.484061357067, + 30018.914177413903, + 29866.825324854242, + 29691.290807849367, + 29490.35749430925, + 29262.0458158826, + 29004.349767956952, + 28715.23690965846, + 28392.64836385214, + 28034.49881714164, + 27638.67651986943, + 27203.043286116666, + 26725.434493703277, + 26203.659084187937, + 31456.4728002931, + 31306.62384242856, + 31175.66728828591, + 31062.004751267876, + 30964.011408516057, + 30880.036000910633, + 30808.40083307066, + 30747.401773353904, + 30695.308253856772, + 30650.363270414517, + 30610.783382601116, + 30574.758713729254, + 30540.4529508504, + 30506.0033447547, + 30469.5207099711, + 30429.089424767226, + 30382.767431149518, + 30328.586234863113, + 30264.55090539189, + 30188.640075958465, + 30098.80594352418, + 29992.974268789185, + 29869.044376192283, + 29724.889153911055, + 29558.355053861862, + 29367.26209169972, + 29149.403846818463, + 28902.547462350616, + 28624.433645167446, + 28312.776665879028, + 27965.26435883406, + 27579.55812212006, + 27153.29291756333, + 26684.07727072878, + 26169.493270920153, + 25607.096571179914, + 24994.41638828927, + 31615.786979245848, + 31504.749668272223, + 31409.561197499166, + 31328.886135830882, + 31261.36261591045, + 31205.602334119554, + 31160.19055057874, + 31123.686089147217, + 31094.621337422926, + 31071.502246742602, + 31052.808332181696, + 31036.99267255439, + 31022.481910413615, + 31007.676252051013, + 30990.949467497052, + 30970.648890520846, + 30945.095418630273, + 30912.583513071964, + 30871.38119883133, + 30819.73006463243, + 30755.845262938117, + 30677.915509950024, + 30584.103085608433, + 30472.543833592445, + 30341.347161319845, + 30188.59603994718, + 30012.347004369778, + 29810.630153221628, + 29581.449148875487, + 29322.78121744293, + 29032.577148774137, + 28708.76129645815, + 28349.231577822644, + 27951.85947393414, + 27514.490029597833, + 27034.941853357635, + 26511.00711749628, + 31851.607306801336, + 31696.96152962486, + 31561.63974209662, + 31444.024383947835, + 31342.47145864858, + 31255.310533407475, + 31180.844739172047, + 31117.350770628516, + 31063.078886201805, + 31016.252908055587, + 30975.070222092338, + 30937.701777953178, + 30902.292089018047, + 30866.95923240558, + 30829.794848973175, + 30788.864143316947, + 30742.205883771767, + 30687.83240241126, + 30623.72959504776, + 30547.856921232364, + 30458.14740425489, + 30352.507631143908, + 30228.817752666724, + 30084.931483329412, + 29918.676101376732, + 29727.85244879222, + 29510.234931298146, + 29263.571518355537, + 28985.58374316409, + 28673.966702662343, + 28326.389057527525, + 27940.49303217555, + 27513.8944147612, + 27044.182557177846, + 26528.920375057765, + 25965.64434777182, + 25351.864518429724, + 31983.944470574257, + 31868.357363410614, + 31768.970828893172, + 31684.432666650213, + 31613.364240048835, + 31554.360476194783, + 31505.989865932595, + 31466.794463845505, + 31435.289888255556, + 31409.965321223433, + 31389.283508548695, + 31371.68075976948, + 31355.566948162807, + 31339.32551074436, + 31321.313448268593, + 31299.861325228656, + 31273.27326985651, + 31239.826974122792, + 31197.773693736923, + 31145.338248147007, + 31080.719020539964, + 31002.087957841424, + 30907.590570715685, + 30795.345933565903, + 30663.446684533934, + 30509.959025500306, + 30332.9227220844, + 30130.351103644232, + 29900.2310632766, + 29640.523057817107, + 29349.16110783996, + 29024.052797658205, + 28663.079275323642, + 28264.09525262673, + 27824.929005096743, + 27343.38237200163, + 26817.23075634815, + 32249.58275377058, + 32089.99778508163, + 31950.170220064396, + 31828.4633247786, + 31723.21392902272, + 31632.732426333892, + 31555.30277398808, + 31489.18249300002, + 31432.602668123036, + 31383.767947849323, + 31340.85654440978, + 31302.02023377403, + 31265.384355650454, + 31229.04781348618, + 31191.083074467046, + 31149.536169517633, + 31102.426693301306, + 31047.747804220144, + 30983.466224414948, + 30907.522239765254, + 30817.82969988938, + 30712.276018144377, + 30588.722171625974, + 30445.00270116871, + 30278.925711345873, + 30088.272870469402, + 29870.79941059008, + 29624.23412749735, + 29346.27938071943, + 29034.6110935233, + 28686.878752914625, + 28300.705409637856, + 27873.68767817617, + 27403.395736751485, + 26887.373327324472, + 26323.137755594482, + 25708.179890999665, + 32354.167546750654, + 32233.917617862437, + 32130.221513648095, + 32041.71026445992, + 31966.988464389033, + 31904.63427126522, + 31853.199406657015, + 31811.20915587178, + 31777.1623679555, + 31749.531455692948, + 31726.762395607653, + 31707.274727961874, + 31689.46155675658, + 31671.68954973153, + 31652.2989383652, + 31629.603517874802, + 31601.890647216274, + 31567.421249084327, + 31524.429809912413, + 31471.124379872657, + 31405.686572876006, + 31326.271566572137, + 31231.008102349373, + 31117.998485334923, + 30985.318584394627, + 30831.017832133104, + 30653.11922489373, + 30449.619322758583, + 30218.48824954845, + 29957.66969282299, + 29665.080903880462, + 29338.612697757955, + 28976.129453231228, + 28575.469112814837, + 28134.443182762072, + 27650.83673306492, + 27122.408397454157, + 32650.585826046172, + 32485.91668955014, + 32341.440198846452, + 32215.500446323284, + 32106.415088107547, + 32012.4753440649, + 31931.94599779977, + 31863.065396655278, + 31804.04545171331, + 31753.071637794485, + 31708.302993458165, + 31667.87212100246, + 31629.885186464217, + 31592.421919618984, + 31553.53561398115, + 31511.25312680369, + 31463.57487907848, + 31408.474855536017, + 31343.90060464561, + 31267.77323861526, + 31177.987433391747, + 31072.411428660544, + 30948.887027845947, + 30805.229598110876, + 30639.228070357072, + 30448.644939225043, + 30231.21626309393, + 29984.651664081717, + 29706.63432804505, + 29394.82100457937, + 29046.84200701887, + 28660.301212436385, + 28232.776061643595, + 27761.81755919092, + 27244.95027336741, + 26679.672336200965, + 26063.45544345821, + 32726.616647653384, + 32601.588584787107, + 32493.46911820432, + 32400.87250898139, + 32322.386581933435, + 32256.572725614264, + 32201.965892316515, + 32157.074598071493, + 32120.380922649263, + 32090.340509558613, + 32065.382566047116, + 32043.90986310107, + 32024.298735445493, + 32004.89908154412, + 31984.03436359952, + 31960.001607552884, + 31931.071403084225, + 31895.487903612247, + 31851.4688262945, + 31797.205452027076, + 31730.86262544499, + 31650.578754921924, + 31554.46581257029, + 31440.60933424127, + 31307.06841952475, + 31151.875731749402, + 30973.037497982612, + 30768.533509030498, + 30536.31711943792, + 30274.31524748851, + 29980.4283752046, + 29652.530548347284, + 29288.469376416364, + 28886.066032650437, + 28443.11525402681, + 27957.385341261528, + 27426.618158809393, + 33054.802929757825, + 32884.90204506609, + 32735.630876384395, + 32605.31434242943, + 32492.25092565659, + 32394.71267225993, + 32310.945192172414, + 32239.167659065624, + 32177.572810349848, + 32124.32694717425, + 32077.569934426614, + 32035.41520073353, + 31995.9497384603, + 31957.234103710976, + 31917.302416328348, + 31874.16235989393, + 31825.795181727994, + 31770.155692889584, + 31705.172268176404, + 31628.74684612495, + 31538.754929010458, + 31433.045582846924, + 31309.44143738702, + 31165.738686122204, + 30999.707086282655, + 30809.08995883732, + 30591.604188493875, + 30344.940223698715, + 30066.762076636966, + 29754.70732323258, + 29406.387103148118, + 29019.386119784984, + 28591.262640283257, + 28119.548495521838, + 27601.749080118294, + 27035.343352428932, + 26417.783834548856, + 33101.451934445235, + 32971.528138628426, + 32858.86923028671, + 32762.072701220484, + 32679.70960696891, + 32610.324566809846, + 32552.435763759942, + 32504.534944574556, + 32465.087419747768, + 32432.53206351241, + 32405.281313840092, + 32381.72117244111, + 32360.211204764535, + 32339.084539998195, + 32316.647871068555, + 32291.181454640977, + 32260.939111119435, + 32224.148224646717, + 32179.009743104303, + 32123.698178112434, + 32056.3616050301, + 31975.121662955007, + 31878.07355472364, + 31763.286046911177, + 31628.801469831567, + 31472.635717537498, + 31292.778247820366, + 31087.19208221038, + 30853.81380597638, + 30590.553568126037, + 30295.295081405755, + 29965.895622300603, + 29600.18603103448, + 29195.970711569964, + 28751.027631608424, + 28263.108322589916, + 27729.937879693276, + 33462.420192319696, + 33287.1373749495, + 33132.92317190424, + 32998.083328229004, + 32880.89715270768, + 32779.617517862825, + 32692.47085995583, + 32617.65717898672, + 32553.35003869432, + 32497.696566556195, + 32448.817453788637, + 32404.806955346678, + 32363.73288992412, + 32323.636639953445, + 32282.533151605923, + 32238.410934791536, + 32189.23206315902, + 32132.93217409589, + 32067.420468728316, + 31990.579711921277, + 31900.266232278456, + 31794.309922142293, + 31670.51423759396, + 31526.656198453384, + 31360.486388279198, + 31169.728954368817, + 30952.08160775839, + 30705.215623222768, + 30426.77583927555, + 30114.38065816915, + 29765.622045894608, + 29378.065532181787, + 28949.250210499245, + 28476.688738054316, + 27957.867335793053, + 27390.245788400247, + 26771.257444299423, + 33478.833289573384, + 33343.89387511456, + 33226.57715890442, + 33125.46386346741, + 33039.10827506672, + 32966.038243704235, + 32904.75518312063, + 32853.734070795304, + 32811.42344794637, + 32776.24541953069, + 32746.595654243913, + 32720.843384520384, + 32697.33140653316, + 32674.376080194135, + 32650.267329153816, + 32623.268640801565, + 32591.617066265422, + 32553.52322041217, + 32507.171281847368, + 32450.718992915266, + 32382.29765969887, + 32300.01215201997, + 32201.940903439016, + 32086.135911255267, + 31950.622736506688, + 31793.40050397001, + 31612.44190216066, + 31405.693183332853, + 31171.074163479505, + 30906.478222332295, + 30609.77230336165, + 30278.796913776696, + 29911.366124525342, + 29505.267570294225, + 29058.26244950874, + 28568.08552433296, + 28032.44512066977, + 33873.62346243037, + 33692.80592380494, + 33533.49772591643, + 33393.98544013841, + 33272.52920158321, + 33167.36270910184, + 33076.693225284194, + 32998.70157645874, + 32931.542152692775, + 32873.34290779234, + 32822.20535930219, + 32776.204588505825, + 32733.38924042549, + 32691.78152382216, + 32649.377211195566, + 32604.145638784157, + 32554.029706565147, + 32496.945878254483, + 32430.78418130683, + 32353.408206915643, + 32262.655110013035, + 32156.335609269936, + 32032.233987096002, + 31888.10808963958, + 31721.68932678782, + 31530.68267216658, + 31312.766663140468, + 31065.593400812813, + 30786.788550025678, + 30473.951339359926, + 30124.654561135107, + 29736.444571409505, + 29306.841289980177, + 28833.33820038294, + 28313.40234989224, + 27744.474349521373, + 27123.968374022403, + 33858.92031676943, + 33718.84311125813, + 33596.747934351115, + 33491.19873929683, + 33400.73304308253, + 33323.861926434096, + 33259.070033816264, + 33204.81557343244, + 33159.530317224795, + 33121.61960087422, + 33089.46232380038, + 33061.410949161655, + 33035.79150385518, + 33010.90357851679, + 32985.02032752113, + 32956.38846898153, + 32923.22828475006, + 32883.73362041756, + 32836.071885313635, + 32778.384052506524, + 32708.78465880331, + 32625.361804749788, + 32526.177154630444, + 32409.265936468586, + 32272.636942026198, + 32114.272526804027, + 31932.12861004159, + 31724.13467471707, + 31488.193767547436, + 31222.18249898845, + 30923.951043234483, + 30591.323138218748, + 30222.096085613222, + 29814.040750828506, + 29364.901563014035, + 28872.396515057928, + 28334.21716358715, + 34288.59831007274, + 34102.09065752125, + 33937.53490021578, + 33793.19843585834, + 33667.322225889795, + 33558.12079548959, + 33463.782233576036, + 33382.468192806155, + 33312.31388957566, + 33251.42810401906, + 33197.89318000958, + 33149.76502515919, + 33105.0731108186, + 33061.82047207726, + 33017.98370776335, + 32971.5129804438, + 32920.33201642429, + 32862.33810574922, + 32795.40210220175, + 32717.368423303767, + 32626.055050315877, + 32519.25352823748, + 32394.728965806662, + 32250.220035500286, + 32083.438973533946, + 31892.07157986195, + 31673.77721817737, + 31426.188815912064, + 31146.912864236492, + 30833.529418060003, + 30483.592096030647, + 30094.62808053511, + 29664.138117698993, + 29189.59651738647, + 28668.45115320059, + 28098.12346248305, + 27476.008446314336, + 34241.87234104932, + 34096.532885356144, + 33969.536308204806, + 33859.42979356779, + 33764.73408915637, + 33683.94350642052, + 33615.52592054892, + 33557.922770469086, + 33509.54905884719, + 33468.793352088134, + 33434.017780335664, + 33403.55803747216, + 33375.72338111876, + 33348.79663263543, + 33321.034177120746, + 33290.6659634121, + 33255.89550408565, + 33214.89987545622, + 33165.82971757742, + 33106.80923424159, + 33035.93619297978, + 32951.28192506186, + 32850.89132549635, + 32732.782853030545, + 32594.948530150537, + 32435.35394308105, + 32251.93824178563, + 32042.614139966525, + 31805.267915064727, + 31537.75940826002, + 31237.922024470816, + 30903.562732354363, + 30532.46206430666, + 30122.37411646234, + 29671.0265486949, + 29176.120584616485, + 28635.331011578026, + 34707.5300265142, + 34515.17426327173, + 34345.21477788152, + 34195.89979437404, + 34065.45110051858, + 33952.06404782313, + 33853.9075515344, + 33769.124090637895, + 33695.82970785784, + 33632.11400965714, + 33576.04016623755, + 33525.64491153945, + 33478.938543242046, + 33433.904922763264, + 33388.50147525975, + 33340.65918962688, + 33288.28261849881, + 33229.24987824841, + 33161.41264898731, + 33082.59617456585, + 32990.59926257312, + 32883.19428433697, + 32758.12717492399, + 32613.117433139432, + 32445.85812152743, + 32254.01586637073, + 32035.230857690887, + 31787.11684924821, + 31507.261158541616, + 31193.22466680896, + 30842.54181902669, + 30452.720623910045, + 30021.242653913025, + 29545.563045228326, + 29023.110497787417, + 28451.28727526046, + 27827.469205056448, + 34627.84840871346, + 34477.119956989976, + 34345.09675332789, + 34230.30921242372, + 34131.26131271275, + 34046.43059636897, + 33974.26816930515, + 33913.198701172776, + 33861.62042536208, + 33817.90513900203, + 33780.39820296034, + 33747.418541843464, + 33717.258643996596, + 33688.18456150365, + 33658.435910187356, + 33626.22586960904, + 33589.741183068894, + 33547.14215760585, + 33496.56266399747, + 33436.11013676019, + 33363.86557414908, + 33277.88353815799, + 33176.19215451954, + 33056.793112705025, + 32917.66166592455, + 32756.74663112692, + 32571.970388999704, + 32361.228883969172, + 32122.391624200318, + 31853.30168159697, + 31551.775691801657, + 31215.603854195546, + 30842.5499318987, + 30430.35125176986, + 29976.718704406438, + 29479.33674414468, + 28935.86338905959, + 35130.603624306474, + 34932.23914951406, + 34756.71716327726, + 34602.26671595501, + 34467.09042164507, + 34349.364458183874, + 34247.23856714663, + 34158.836053847284, + 34082.253787338544, + 34015.562200411776, + 33956.8052895972, + 33904.00061516367, + 33855.13930111886, + 33808.186035209146, + 33761.079068919644, + 33711.73021747422, + 33658.02485983549, + 33597.82193870475, + 33528.953960522136, + 33449.22699546648, + 33356.420677455266, + 33248.288204144854, + 33122.55633693031, + 32976.925400945336, + 32809.06928506255, + 32616.635441893133, + 32397.24488778714, + 32148.492202833313, + 31867.945530859073, + 31553.146579430704, + 31201.610619853174, + 30810.826487170143, + 30378.256580164063, + 29901.336861356143, + 29377.476857006295, + 28804.05965711316, + 28178.441915414183, + 35017.00728734663, + 34860.76080702545, + 34723.583463867224, + 34603.98890329248, + 34500.4643344605, + 34411.47053026934, + 34335.44182735581, + 34270.78612609542, + 34215.88489060243, + 34169.09314872983, + 34128.7394920694, + 34093.126075951586, + 34060.528619445664, + 34029.196405359544, + 33997.352280239975, + 33963.19265437235, + 33924.887501780926, + 33880.580360228545, + 33828.388331216935, + 33766.4020799865, + 33692.68583551634, + 33605.27739052436, + 33502.18810146723, + 33381.40288854022, + 33240.88023567753, + 33078.55219055195, + 32892.32436457508, + 32680.075932897264, + 32439.65963440752, + 32168.901771733686, + 31865.602211242312, + 31527.53438303866, + 31152.445280966782, + 30738.05546260943, + 30282.0590492881, + 29782.123726063033, + 29235.890741733263, + 35558.00383728576, + 35353.467445990405, + 35172.22158205108, + 35012.47612215529, + 34872.41450672921, + 34750.19373993772, + 34643.944389684555, + 34551.770587612096, + 34471.75002910149, + 34401.93397327262, + 34340.34724298413, + 34284.98822483337, + 34233.82886915649, + 34184.81469002827, + 34135.86476526238, + 34084.87173641109, + 34029.70180876547, + 33968.19475135539, + 33898.163896949336, + 33817.396142054626, + 33723.65194691728, + 33614.66533552207, + 33488.14389559248, + 33341.7687785908, + 33173.194699718006, + 32980.04993791383, + 32759.936335856717, + 32510.42929996391, + 32229.07780039134, + 31913.404371033703, + 31560.9051095244, + 31169.049677235656, + 30735.28129927833, + 30257.016764502107, + 29731.646425495357, + 29156.5341985852, + 28529.017563837522, + 35409.50746581801, + 35247.611637612805, + 35105.15035525405, + 34980.62049488629, + 34872.49249639291, + 34779.210363395934, + 34699.19166325624, + 34630.82752707337, + 34572.48264968559, + 34522.49528966993, + 34479.177269342246, + 34440.813974756966, + 34405.66435570741, + 34371.96092572554, + 34337.9097620821, + 34301.69050578658, + 34261.45636158719, + 34215.334097970874, + 34161.424047163375, + 34097.80010512908, + 34022.50973157118, + 33933.573949931626, + 33828.98734739103, + 33706.71807486882, + 33564.707847023135, + 33400.8719422508, + 33213.099202687496, + 32999.25203420758, + 32757.166406424072, + 32484.651852688927, + 32179.49147009265, + 31839.44191946455, + 31462.23342537272, + 31045.56977612392, + 30587.128323763744, + 30084.559984076423, + 29535.48923658501, + 35605.76787822833, + 35400.53553037728, + 35218.64360485668, + 35058.29984794429, + 34917.68556965668, + 34794.9556437491, + 34688.23850771557, + 34595.63616278885, + 34515.22417394045, + 34445.051669880566, + 34383.14134305823, + 34327.48944966113, + 34276.06580961572, + 34226.81380658721, + 34177.65038797953, + 34126.466064935325, + 34071.12491233609, + 34009.464568801886, + 33939.296236691676, + 33858.4046821031, + 33764.54823487249, + 33655.458788574986, + 33528.84180052447, + 33382.37629177347, + 33213.71484711341, + 33020.4836150743, + 32800.28230792497, + 32550.684201673044, + 32269.23613606469, + 31953.458514585043, + 31600.845304457882, + 31208.864036645642, + 30774.95580584967, + 30296.535270509925, + 29770.990652805118, + 29195.683738652773, + 28567.94987770912, + 35453.33176001468, + 35290.80002051921, + 35147.743521668934, + 35022.65727635404, + 34914.00986120352, + 34820.24341658504, + 34739.7736466051, + 34670.989819108836, + 34612.254765680176, + 34561.90488164178, + 34518.25012605507, + 34479.57402172017, + 34444.13365517596, + 34410.15967670007, + 34375.85630030886, + 34339.40130375744, + 34298.946028539634, + 34252.61537988805, + 34198.50782677397, + 34134.69540190749, + 34059.22370173741, + 33970.111886451254, + 33865.35267997531, + 33742.912369974605, + 33600.7308078529, + 33436.72140875271, + 33248.77115155526, + 33034.74057888052, + 32792.463797087235, + 32519.748476272867, + 32214.375850273587, + 31874.10071666439, + 31496.651436758904, + 31079.72993560959, + 30621.011702007603, + 30118.14578848283, + 29568.754811303952, + 53584.11068304391, + 53061.432586793984, + 52578.08238804535, + 52131.628710693134, + 51719.613742371155, + 51339.55323445184, + 50988.93650204666, + 50665.22642400541, + 50365.859442916946, + 50088.24556510884, + 49829.768360647235, + 49587.78496333714, + 49359.6260707223, + 49142.59594408513, + 48933.97240844685, + 48731.006852567414, + 48530.92422894547, + 48330.923053818486, + 48128.17540716257, + 47919.82693269262, + 47702.99683786236, + 47474.77789386402, + 47232.23643562885, + 46972.4123618267, + 46692.31913486606, + 46388.9437808944, + 46059.24688979774, + 45700.1626152009, + 45308.59867446743, + 44881.436348699615, + 44415.53048273856, + 43907.70948516402, + 43354.77532829447, + 42753.503548187175, + 42100.643244638246, + 41392.917081182255, + 40627.02128509279, + 51522.270649461476, + 51080.23568072354, + 50670.73140870886, + 50291.69387044364, + 49941.03266669271, + 49616.63096195969, + 49316.34548448698, + 49038.00652625564, + 48779.41794298548, + 48538.357154135236, + 48312.57514290203, + 48099.79645622208, + 47897.71920477009, + 47704.01506295969, + 47516.329268943024, + 47332.28062461128, + 47149.46149559408, + 46965.43781126007, + 46777.74906471631, + 46583.9083128089, + 46381.40217612262, + 46167.69083898077, + 45940.20804944566, + 45696.36111931823, + 45433.53092413807, + 45149.071903183736, + 44840.31205947231, + 44504.55295975972, + 44139.06973454058, + 43741.111078048256, + 43307.89924825494, + 42836.630066871454, + 42324.4729193474, + 41768.570754871085, + 41166.040086369714, + 40513.97099050895, + 39809.42710769344 + ], + "input_power": [ + 11762.649602699996, + 11890.74546853703, + 12030.899351559256, + 12183.111251766664, + 12347.381169159255, + 12523.70910373704, + 12712.095055499996, + 12912.539024448144, + 13125.04101058148, + 13349.601013899997, + 13586.219034403706, + 13834.895072092593, + 14095.629126966664, + 14368.42119902592, + 14653.27128827037, + 14950.179394699997, + 15259.145518314815, + 15580.169659114816, + 15913.251817099994, + 16258.391992270372, + 16615.590184625926, + 16984.84639416666, + 17366.16062089259, + 17759.532864803703, + 18164.963125899998, + 18582.451404181484, + 19011.99769964815, + 19453.6020123, + 19907.26434213704, + 20372.984689159257, + 20850.76305336666, + 21340.599434759268, + 21842.493833337034, + 22356.446249100005, + 22882.45668204815, + 23420.525132181476, + 23970.651599499994, + 13293.50835478, + 13434.554564581478, + 13587.65879156815, + 13752.82103574, + 13930.041297097036, + 14119.319575639263, + 14320.655871366665, + 14534.050184279256, + 14759.50251437704, + 14997.012861659998, + 15246.581226128154, + 15508.207607781485, + 15781.892006619997, + 16067.634422643696, + 16365.43485585259, + 16675.293306246665, + 16997.209773825925, + 17331.18425859037, + 17677.21676054, + 18035.307279674817, + 18405.455815994817, + 18787.662369499994, + 19181.926940190377, + 19588.249528065928, + 20006.63013312666, + 20437.068755372595, + 20879.565394803703, + 21334.12005142, + 21800.732725221485, + 22279.403416208148, + 22770.13212437999, + 23272.91884973704, + 23787.763592279254, + 24314.666352006672, + 24853.627128919263, + 25404.645923017033, + 25967.722734299994, + 11758.510633457998, + 11886.471178687034, + 12026.489741101259, + 12178.566320700662, + 12342.700917485256, + 12518.893531455036, + 12707.144162609997, + 12907.452810950144, + 13119.81947647548, + 13344.244159185995, + 13580.726859081706, + 13829.267576162592, + 14089.866310428666, + 14362.52306187992, + 14647.237830516371, + 14944.010616337997, + 15252.841419344815, + 15573.730239536815, + 15906.677076913995, + 16251.681931476372, + 16608.744803223923, + 16977.86569215666, + 17359.0445982746, + 17752.281521577705, + 18157.576462065994, + 18574.92941973949, + 19004.340394598148, + 19445.809386642, + 19899.33639587104, + 20364.92142228526, + 20842.564465884665, + 21332.265526669267, + 21834.024604639042, + 22347.841699794015, + 22873.71681213415, + 23411.649941659485, + 23961.64108836999, + 13288.642382797203, + 13429.552482286148, + 13582.520598960285, + 13747.546732819601, + 13924.630883864102, + 14113.773052093793, + 14314.973237508666, + 14528.231440108726, + 14753.547659893973, + 14990.921896864398, + 15240.35415102002, + 15501.844422360817, + 15775.3927108868, + 16060.999016597965, + 16358.663339494331, + 16668.385679575862, + 16990.1660368426, + 17324.004411294503, + 17669.900802931596, + 18027.855211753886, + 18397.867637761352, + 18779.938080953998, + 19174.066541331842, + 19580.253018894866, + 19998.497513643066, + 20428.800025576464, + 20871.16055469503, + 21325.579100998806, + 21792.055664487754, + 22270.590245161882, + 22761.182843021197, + 23263.833458065707, + 23778.542090295392, + 24305.308739710275, + 24844.133406310328, + 25395.016090095574, + 25957.956791065993, + 11722.14528798, + 11848.887947737034, + 11987.68862467926, + 12138.547318806666, + 12301.464030119258, + 12476.438758617036, + 12663.471504299998, + 12862.562267168145, + 13073.711047221483, + 13296.917844459998, + 13532.182658883703, + 13779.505490492596, + 14038.886339286666, + 14310.32520526592, + 14593.822088430372, + 14889.376988779999, + 15196.989906314817, + 15516.660841034814, + 15848.389792939997, + 16192.176762030374, + 16548.021748305928, + 16915.924751766663, + 17295.885772412596, + 17687.904810243705, + 18091.981865259997, + 18508.116937461487, + 18936.31002684815, + 19376.561133419993, + 19828.870257177037, + 20293.237398119265, + 20769.66255624666, + 21258.145731559267, + 21758.686924057034, + 22271.286133740006, + 22795.943360608155, + 23332.658604661483, + 23881.431865899995, + 13245.734012652001, + 13385.419119328144, + 13537.162243189485, + 13700.963384236, + 13876.822542467702, + 14064.739717884595, + 14264.714910486668, + 14476.748120273927, + 14700.839347246374, + 14936.988591404002, + 15185.195852746818, + 15445.461131274818, + 15717.784426988, + 16002.165739886368, + 16298.60506996993, + 16607.102417238668, + 16927.657781692596, + 17260.27116333171, + 17604.942562155997, + 17961.671978165487, + 18330.459411360152, + 18711.30486174, + 19104.208329305045, + 19509.169814055265, + 19926.18931599067, + 20355.266835111266, + 20796.40237141704, + 21249.595924908008, + 21714.847495584156, + 22192.157083445487, + 22681.524688492, + 23182.95031072371, + 23696.433950140596, + 24221.975606742682, + 24759.575280529934, + 25309.232971502373, + 25870.948679659996, + 11687.373622362, + 11812.898396647035, + 11950.481188117259, + 12100.121996772667, + 12261.820822613256, + 12435.577665639035, + 12621.392525849997, + 12819.265403246143, + 13029.19629782748, + 13251.185209593998, + 13485.232138545709, + 13731.337084682595, + 13989.500048004666, + 14259.721028511922, + 14542.000026204372, + 14836.337041081997, + 15142.732073144816, + 15461.185122392817, + 15791.696188825994, + 16134.265272444374, + 16488.892373247923, + 16855.57749123666, + 17234.320626410597, + 17625.121778769702, + 18027.980948313994, + 18442.898135043484, + 18869.873338958143, + 19308.906560058, + 19759.997798343044, + 20223.147053813263, + 20698.354326468663, + 21185.619616309268, + 21684.942923335035, + 22196.32424754601, + 22719.763588942154, + 23255.26094752348, + 23802.816323289993, + 13204.419322366803, + 13342.879436230149, + 13493.397567278684, + 13655.973715512402, + 13830.607880931304, + 14017.300063535391, + 14216.050263324665, + 14426.858480299126, + 14649.724714458773, + 14884.648965803597, + 15131.63123433362, + 15390.671520048818, + 15661.7698229492, + 15944.926143034767, + 16240.140480305527, + 16547.412834761468, + 16866.743206402596, + 17198.131595228904, + 17541.578001240396, + 17897.08242443709, + 18264.64486481895, + 18644.265322385996, + 19035.943797138243, + 19439.680289075663, + 19855.474798198265, + 20283.327324506066, + 20723.237867999036, + 21175.206428677197, + 21639.233006540555, + 22115.31760158908, + 22603.460213822793, + 23103.660843241712, + 23615.919489845786, + 24140.236153635076, + 24676.61083460953, + 25225.043532769174, + 25785.534248114, + 11654.195636604001, + 11778.502525417036, + 11914.867431415258, + 12063.290354598665, + 12223.771294967257, + 12396.31025252104, + 12580.907227259997, + 12777.562219184147, + 12986.275228293482, + 13207.046254587996, + 13439.875298067705, + 13684.762358732592, + 13941.707436582665, + 14210.710531617924, + 14491.771643838372, + 14784.890773243997, + 15090.067919834817, + 15407.303083610814, + 15736.596264571996, + 16077.947462718377, + 16431.356678049928, + 16796.82391056666, + 17174.349160268597, + 17563.932427155705, + 17965.573711227997, + 18379.273012485482, + 18805.030330928148, + 19242.845666555993, + 19692.719019369048, + 20154.65038936726, + 20628.639776550655, + 21114.687180919267, + 21612.792602473044, + 22122.956041212004, + 22645.17749713615, + 23179.456970245483, + 23725.79446053999, + 13164.698311941605, + 13301.933432992151, + 13451.226571227882, + 13612.5777266488, + 13785.986899254905, + 13971.454089046196, + 14168.979296022666, + 14378.562520184327, + 14600.203761531173, + 14833.903020063199, + 15079.660295780419, + 15337.475588682817, + 15607.348898770397, + 15889.28022604317, + 16183.269570501132, + 16489.316932144266, + 16807.422310972597, + 17137.585706986105, + 17479.807120184796, + 17834.086550568685, + 18200.42399813775, + 18578.819462891995, + 18969.27294483145, + 19371.784443956058, + 19786.35396026586, + 20212.981493760868, + 20651.667044441037, + 21102.4106123064, + 21565.212197356963, + 22040.07179959269, + 22526.9894190136, + 23025.965055619716, + 23536.99870941099, + 24060.090380387483, + 24595.240068549134, + 25142.447773895972, + 25701.71349642799, + 11622.611330705999, + 11745.700334047033, + 11880.847354573261, + 12028.052392284666, + 12187.315447181258, + 12358.636519263038, + 12542.015608529995, + 12737.452714982148, + 12944.947838619484, + 13164.500979441997, + 13396.112137449707, + 13639.781312642592, + 13895.508505020665, + 14163.29371458392, + 14443.136941332374, + 14735.038185265994, + 15038.99744638482, + 15355.014724688812, + 15683.090020177997, + 16023.223332852374, + 16375.414662711926, + 16739.664009756663, + 17115.971373986595, + 17504.336755401702, + 17904.760154001993, + 18317.241569787482, + 18741.781002758144, + 19178.378452913996, + 19627.033920255046, + 20087.747404781258, + 20560.518906492664, + 21045.34842538926, + 21542.235961471037, + 22051.181514738008, + 22572.185085190154, + 23105.24667282748, + 23650.36627764999, + 13126.570981376404, + 13262.581109614148, + 13410.649255037084, + 13570.775417645204, + 13742.959597438505, + 13927.201794416993, + 14123.502008580665, + 14331.860239929527, + 14552.276488463574, + 14784.750754182796, + 15029.28303708722, + 15285.87333717682, + 15554.5216544516, + 15835.227988911569, + 16127.992340556726, + 16432.814709387065, + 16749.695095402596, + 17078.633498603307, + 17419.629918989198, + 17772.684356560287, + 18137.79681131655, + 18514.967283258, + 18904.195772384643, + 19305.48227869646, + 19718.826802193464, + 20144.229342875664, + 20581.68990074304, + 21031.208475795593, + 21492.78506803335, + 21966.419677456284, + 22452.112304064394, + 22949.862947857717, + 23459.67160883619, + 23981.53828699988, + 24515.462982348734, + 25061.445694882772, + 25619.486424601997, + 11592.620704668001, + 11714.491822537038, + 11848.420957591261, + 11994.408109830665, + 12152.453279255256, + 12322.556465865038, + 12504.717669659998, + 12698.936890640145, + 12905.214128805483, + 13123.549384155998, + 13353.94265669171, + 13596.393946412594, + 13850.903253318664, + 14117.470577409922, + 14396.095918686373, + 14686.779277147998, + 14989.52065279482, + 15304.320045626817, + 15631.177455643996, + 15970.092882846375, + 16321.06632723393, + 16684.09778880666, + 17059.187267564597, + 17446.334763507708, + 17845.540276635995, + 18256.803806949483, + 18680.12535444815, + 19115.504919131996, + 19562.942501001038, + 20022.438100055264, + 20493.991716294662, + 20977.60334971927, + 21473.273000329038, + 21981.00066812401, + 22500.78635310415, + 23032.63005526948, + 23576.531774619994, + 13090.037330671204, + 13224.822466096148, + 13371.665618706284, + 13530.5667885016, + 13701.525975482102, + 13884.543179647797, + 14079.618400998666, + 14286.751639534723, + 14505.942895255976, + 14737.192168162399, + 14980.49945825402, + 15235.86476553082, + 15503.288089992799, + 15782.769431639968, + 16074.308790472329, + 16377.906166489865, + 16693.5615596926, + 17021.274970080503, + 17361.046397653598, + 17712.875842411886, + 18076.76330435535, + 18452.708783484, + 18840.71227979784, + 19240.773793296863, + 19652.893323981065, + 20077.07087185047, + 20513.30643690504, + 20961.600019144797, + 21421.951618569754, + 21894.361235179887, + 22378.828868975197, + 22875.354519955712, + 23383.938188121396, + 23904.57987347228, + 24437.279576008328, + 24982.03729572957, + 25538.853032635994, + 11579.798658044, + 11701.128304032183, + 11834.515967205556, + 11979.961647564116, + 12137.465345107854, + 12307.02705983678, + 12488.64679175089, + 12682.324540850188, + 12888.060307134674, + 13105.854090604338, + 13335.705891259193, + 13577.615709099231, + 13831.583544124449, + 14097.609396334858, + 14375.693265730455, + 14665.83515231123, + 14968.035056077199, + 15282.292977028344, + 15608.608915164674, + 15946.982870486203, + 16297.414842992901, + 16659.904832684784, + 17034.45283956187, + 17421.058863624126, + 17819.722904871567, + 18230.444963304206, + 18653.225038922017, + 19088.06313172501, + 19534.959241713208, + 19993.913368886573, + 20464.92551324513, + 20947.995674788883, + 21443.123853517798, + 21950.31004943192, + 22469.55426253121, + 23000.856492815685, + 23544.216740285345, + 13074.306255280168, + 13208.54675890054, + 13354.845279706105, + 13513.201817696852, + 13683.616372872782, + 13866.088945233903, + 14060.619534780204, + 14267.208141511694, + 14485.854765428368, + 14716.559406530225, + 14959.322064817274, + 15214.1427402895, + 15481.02143294691, + 15759.95814278951, + 16050.952869817302, + 16354.005614030264, + 16669.116375428424, + 16996.285154011766, + 17335.511949780284, + 17686.796762734, + 18050.139592872896, + 18425.540440196968, + 18812.999304706245, + 19212.516186400695, + 19624.091085280324, + 20047.724001345156, + 20483.414934595156, + 20931.163885030342, + 21390.97085265073, + 21862.835837456296, + 22346.75883944703, + 22842.739858622972, + 23350.778894984083, + 23870.875948530396, + 24403.03101926188, + 24947.244107178554, + 25503.515212280403, + 11564.22375849, + 11684.876990887034, + 11817.58824046926, + 11962.357507236666, + 12119.184791189256, + 12288.070092327036, + 12469.013410649997, + 12662.014746158145, + 12867.074098851483, + 13084.191468729998, + 13313.366855793707, + 13554.600260042593, + 13807.891681476665, + 14073.241120095921, + 14350.648575900372, + 14640.11404889, + 14941.637539064815, + 15255.219046424812, + 15580.858570969998, + 15918.556112700375, + 16268.311671615926, + 16630.125247716664, + 17003.996841002598, + 17389.926451473704, + 17787.914079129994, + 18197.959723971486, + 18620.06338599815, + 19054.225065209994, + 19500.44476160704, + 19958.722475189254, + 20429.05820595666, + 20911.45195390927, + 21405.903719047034, + 21912.41350137001, + 22430.981300878153, + 22961.607117571482, + 23504.29095144999, + 13055.097359826004, + 13188.657502438144, + 13334.275662235485, + 13491.951839217998, + 13661.686033385702, + 13843.478244738595, + 14037.328473276664, + 14243.236718999922, + 14461.202981908373, + 14691.227262001998, + 14933.309559280822, + 15187.449873744816, + 15453.648205393998, + 15731.904554228366, + 16022.21892024793, + 16324.591303452667, + 16639.021703842598, + 16965.510121417705, + 17304.056556178, + 17654.661008123487, + 18017.32347725415, + 18392.043963569995, + 18778.82246707104, + 19177.658987757266, + 19588.553525628664, + 20011.506080685267, + 20446.516652927035, + 20893.585242354002, + 21352.71184896616, + 21823.896472763485, + 22307.139113745998, + 22802.43977191371, + 23309.798447266596, + 23829.21513980468, + 24360.689849527935, + 24904.222576436372, + 25459.813320529996, + 11537.420492171997, + 11656.855839097034, + 11788.349203207259, + 11931.900584502666, + 12087.50998298326, + 12255.177398649039, + 12434.9028315, + 12626.686281536146, + 12830.527748757482, + 13046.427233163997, + 13274.384734755708, + 13514.400253532594, + 13766.473789494665, + 14030.605342641922, + 14306.79491297437, + 14595.042500491998, + 14895.348105194817, + 15207.711727082815, + 15532.133366155995, + 15868.613022414374, + 16217.150695857928, + 16577.746386486666, + 16950.4000943006, + 17335.111819299706, + 17731.881561483995, + 18140.709320853486, + 18561.595097408142, + 18994.538891147993, + 19439.540702073034, + 19896.60053018326, + 20365.718375478657, + 20846.894237959266, + 21340.12811762503, + 21845.420014476003, + 22362.76992851215, + 22892.17785973348, + 23433.64380813999, + 13021.751068840804, + 13154.08621864015, + 13298.479385624685, + 13454.9305697944, + 13623.439771149304, + 13804.006989689398, + 13996.632225414669, + 14201.315478325128, + 14418.056748420775, + 14646.8560357016, + 14887.713340167622, + 15140.628661818819, + 15405.602000655199, + 15682.63335667677, + 15971.722729883531, + 16272.870120275467, + 16586.075527852598, + 16911.338952614904, + 17248.6603945624, + 17598.03985369509, + 17959.477330012953, + 18332.972823516, + 18718.526334204245, + 19116.137862077663, + 19525.807407136268, + 19947.534969380064, + 20381.32054880904, + 20827.1641454232, + 21285.065759222558, + 21755.025390207087, + 22237.043038376796, + 22731.11870373171, + 23237.252386271794, + 23755.444085997082, + 24285.69380290753, + 24828.001537003176, + 25382.367288283996, + 11512.210905714, + 11630.428367167035, + 11760.703845805258, + 11903.037341628664, + 12057.428854637259, + 12223.87838483104, + 12402.385932209998, + 12592.951496774143, + 12795.575078523483, + 13010.256677458, + 13236.996293577706, + 13475.793926882596, + 13726.649577372664, + 13989.563245047922, + 14264.534929908372, + 14551.564631954, + 14850.65235118482, + 15161.798087600819, + 15485.001841201998, + 15820.263611988375, + 16167.583399959927, + 16526.961205116662, + 16898.397027458595, + 17281.890866985705, + 17677.442723697997, + 18085.052597595488, + 18504.72048867815, + 18936.446396945998, + 19380.23032239904, + 19836.072265037255, + 20303.972224860663, + 20783.93020186927, + 21275.946196063036, + 21780.020207442012, + 22296.152236006154, + 22824.342281755486, + 23364.590344689994, + 12989.998457715603, + 13121.108614702149, + 13264.276788873885, + 13419.502980230802, + 13586.787188772902, + 13766.129414500198, + 13957.529657412664, + 14160.987917510323, + 14376.504194793175, + 14604.0784892612, + 14843.710800914421, + 15095.401129752818, + 15359.1494757764, + 15634.955838985168, + 15922.820219379133, + 16222.742616958269, + 16534.723031722595, + 16858.761463672105, + 17194.8579128068, + 17543.01237912669, + 17903.22486263175, + 18275.495363322, + 18659.823881197444, + 19056.21041625806, + 19464.654968503866, + 19885.15753793486, + 20317.71812455104, + 20762.336728352402, + 21219.01334933896, + 21687.747987510687, + 22168.540642867596, + 22661.391315409714, + 23166.300005136996, + 23683.26671204948, + 24212.29143614713, + 24753.37417742997, + 25306.51493589799, + 11488.594999116, + 11605.594575097033, + 11734.65216826326, + 11875.767778614663, + 12028.941406151258, + 12194.173050873036, + 12371.462712779998, + 12560.810391872144, + 12762.21608814948, + 12975.679801611996, + 13201.201532259707, + 13438.781280092593, + 13688.419045110664, + 13950.11482731392, + 14223.868626702371, + 14509.680443275995, + 14807.550277034821, + 15117.478127978819, + 15439.463996107996, + 15773.507881422373, + 16119.609783921931, + 16477.769703606664, + 16847.987640476596, + 17230.263594531705, + 17624.597565771997, + 18030.989554197487, + 18449.439559808146, + 18879.947582603996, + 19322.51362258504, + 19777.137679751264, + 20243.819754102657, + 20722.559845639265, + 21213.35795436103, + 21716.214080268008, + 22231.128223360152, + 22758.10038363748, + 23297.130561099995, + 12959.839526450403, + 13089.72469062415, + 13231.667871983089, + 13385.669070527201, + 13551.728286256504, + 13729.845519170998, + 13920.020769270672, + 14122.254036555525, + 14336.545321025576, + 14562.8946226808, + 14801.301941521222, + 15051.76727754682, + 15314.290630757601, + 15588.872001153566, + 15875.511388734732, + 16174.208793501062, + 16484.9642154526, + 16807.777654589307, + 17142.6491109112, + 17489.57858441829, + 17848.566075110553, + 18219.611582988, + 18602.71510805064, + 18997.87665029846, + 19405.096209731462, + 19824.373786349664, + 20255.709380153035, + 20699.102991141604, + 21154.55461931536, + 21622.06426467429, + 22101.631927218397, + 22593.257606947715, + 23096.941303862193, + 23612.683017961877, + 24140.48274924673, + 24680.34049771677, + 25232.256263371994, + 11466.572772378, + 11582.354462887037, + 11710.194170581257, + 11850.091895460668, + 12002.04763752526, + 12166.061396775038, + 12342.133173209997, + 12530.262966830143, + 12730.450777635482, + 12942.696605625999, + 13167.000450801706, + 13403.362313162594, + 13651.782192708666, + 13912.260089439924, + 14184.796003356374, + 14469.389934457999, + 14766.041882744821, + 15074.751848216813, + 15395.519830873996, + 15728.345830716375, + 16073.229847743927, + 16430.171881956663, + 16799.171933354595, + 17180.230001937703, + 17573.346087705995, + 17978.520190659485, + 18395.752310798143, + 18825.042448122, + 19266.39060263104, + 19719.796774325263, + 20185.260963204662, + 20662.78316926926, + 21152.36339251904, + 21654.001632954005, + 22167.69789057415, + 22693.452165379487, + 23231.264457369994, + 12931.2742750452, + 13059.934446406147, + 13200.652634952286, + 13353.428840683599, + 13518.263063600101, + 13695.155303701793, + 13884.105560988664, + 14085.113835460723, + 14298.180127117974, + 14523.3044359604, + 14760.486761988019, + 15009.727105200816, + 15271.0254655988, + 15544.38184318197, + 15829.796237950328, + 16127.268649903865, + 16436.799079042597, + 16758.38752536651, + 17092.0339888756, + 17437.738469569886, + 17795.500967449352, + 18165.321482513995, + 18547.200014763843, + 18941.13656419886, + 19347.131130819063, + 19765.18371462446, + 20195.29431561504, + 20637.462933790794, + 21091.689569151753, + 21557.97422169788, + 22036.316891429193, + 22526.71757834571, + 23029.17628244739, + 23543.693003734275, + 24070.26774220633, + 24608.90049786357, + 25159.59127070599, + 11446.144225500004, + 11560.708030537035, + 11687.329852759261, + 11826.009692166663, + 11976.747548759258, + 12139.543422537039, + 12314.3973135, + 12501.309221648145, + 12700.279146981484, + 12911.3070895, + 13134.393049203709, + 13369.537026092596, + 13616.739020166666, + 13875.999031425923, + 14147.317059870371, + 14430.6931055, + 14726.12716831482, + 15033.619248314817, + 15353.169345499999, + 15684.777459870375, + 16028.44359142593, + 16384.167740166664, + 16751.9499060926, + 17131.790089203707, + 17523.688289499998, + 17927.644506981487, + 18343.65874164815, + 18771.730993499998, + 19211.86126253704, + 19664.049548759263, + 20128.295852166662, + 20604.600172759267, + 21092.962510537036, + 21593.382865500003, + 22105.861237648154, + 22630.39762698148, + 23166.992033499995, + 12904.302703500001, + 13031.737882048148, + 13171.23107778149, + 13322.782290700003, + 13486.391520803701, + 13662.058768092596, + 13849.78403256667, + 14049.567314225926, + 14261.408613070376, + 14485.307929100001, + 14721.26526231482, + 14969.280612714821, + 15229.3539803, + 15501.485365070372, + 15785.674767025934, + 16081.922186166668, + 16390.2276224926, + 16710.591076003708, + 17043.0125467, + 17387.492034581486, + 17744.029539648152, + 18112.625061900002, + 18493.278601337046, + 18885.990157959262, + 19290.759731766662, + 19707.587322759267, + 20136.472930937038, + 20577.416556300002, + 21030.418198848158, + 21495.47785858149, + 21972.595535499997, + 22461.771229603717, + 22963.004940892595, + 23476.296669366682, + 24001.64641502593, + 24539.054177870374, + 25088.519957899993, + 11427.309358482, + 11540.655278047034, + 11666.05921479726, + 11803.521168732665, + 11953.041139853258, + 12114.619128159036, + 12288.255133649995, + 12473.949156326147, + 12671.701196187483, + 12881.511253233997, + 13103.379327465707, + 13337.305418882594, + 13583.289527484667, + 13841.331653271922, + 14111.431796244375, + 14393.589956401998, + 14687.806133744818, + 14994.080328272816, + 15312.412539985995, + 15642.802768884374, + 15985.251014967926, + 16339.75727823666, + 16706.321558690597, + 17084.943856329704, + 17475.624171153995, + 17878.362503163487, + 18293.158852358145, + 18720.013218737997, + 19158.925602303043, + 19609.89600305326, + 20072.924420988664, + 20548.01085610926, + 21035.155308415036, + 21534.35777790601, + 22045.618264582154, + 22568.936768443487, + 23104.31328948999, + 12878.9248118148, + 13005.134997550147, + 13143.403200470684, + 13293.7294205764, + 13456.113657867301, + 13630.555912343392, + 13817.056184004667, + 14015.614472851126, + 14226.230778882777, + 14448.905102099601, + 14683.63744250162, + 14930.42780008882, + 15189.276174861201, + 15460.182566818765, + 15743.14697596153, + 16038.16940228947, + 16345.249845802602, + 16664.388306500907, + 16995.5847843844, + 17338.83927945309, + 17694.15179170695, + 18061.522321145996, + 18440.950867770243, + 18832.437431579663, + 19235.98201257427, + 19651.584610754067, + 20079.24522611904, + 20518.963858669198, + 20970.74050840455, + 21434.575175325084, + 21910.46785943079, + 22398.41856072171, + 22898.42727919779, + 23410.49401485908, + 23934.618767705535, + 24470.801537737174, + 25019.042324953993, + 11410.068171324, + 11522.196205417034, + 11646.382256695259, + 11782.62632515866, + 11930.928410807259, + 12091.288513641037, + 12263.706633659996, + 12448.182770864143, + 12644.716925253482, + 12853.309096827996, + 13073.959285587709, + 13306.667491532593, + 13551.433714662664, + 13808.25795497792, + 14077.140212478374, + 14358.080487164, + 14651.078779034817, + 14956.135088090812, + 15273.249414331995, + 15602.421757758373, + 15943.652118369926, + 16296.940496166662, + 16662.286891148593, + 17039.691303315707, + 17429.153732667994, + 17830.674179205485, + 18244.25264292815, + 18669.889123835997, + 19107.583621929043, + 19557.336137207258, + 20019.146669670667, + 20493.015219319266, + 20978.94178615304, + 21476.926370172005, + 21986.96897137615, + 22509.06958976548, + 23043.228225339994, + 12855.140599989601, + 12980.125792912153, + 13117.169003019886, + 13266.270230312799, + 13427.429474790904, + 13600.646736454191, + 13785.922015302669, + 13983.255311336325, + 14192.646624555173, + 14414.095954959199, + 14647.603302548421, + 14893.168667322814, + 15150.7920492824, + 15420.473448427165, + 15702.21286475713, + 15996.010298272266, + 16301.865748972596, + 16619.779216858107, + 16949.7507019288, + 17291.780204184684, + 17645.867723625754, + 18012.013260252003, + 18390.216814063442, + 18780.478385060065, + 19182.797973241868, + 19597.17557860886, + 20023.61120116104, + 20462.1048408984, + 20912.656497820954, + 21375.266171928688, + 21849.933863221595, + 22336.65957169971, + 22835.443297362992, + 23346.28504021148, + 23869.18480024513, + 24404.142577463972, + 24951.158371867998, + 11394.420664025998, + 11505.330812647035, + 11628.298978453258, + 11763.325161444665, + 11910.40936162126, + 12069.551578983039, + 12240.751813529994, + 12424.010065262146, + 12619.326334179483, + 12826.700620281998, + 13046.132923569707, + 13277.623244042594, + 13521.171581700664, + 13776.77793654392, + 14044.442308572372, + 14324.164697785996, + 14615.945104184817, + 14919.783527768817, + 15235.679968537997, + 15563.634426492372, + 15903.64690163193, + 16255.717393956666, + 16619.845903466598, + 16996.032430161707, + 17384.276974041997, + 17784.57953510749, + 18196.940113358145, + 18621.358708793996, + 19057.83532141504, + 19506.36995122126, + 19966.96259821266, + 20439.613262389266, + 20924.32194375103, + 21421.088642298007, + 21929.913358030153, + 22450.796090947486, + 22983.736841049995, + 12832.9500680244, + 12956.710268134151, + 13092.528485429084, + 13240.404719909202, + 13400.338971574502, + 13572.331240425, + 13756.381526460664, + 13952.489829681524, + 14160.656150087574, + 14380.880487678802, + 14613.16284245522, + 14857.503214416822, + 15113.901603563598, + 15382.358009895566, + 15662.872433412726, + 15955.444874115066, + 16260.075332002596, + 16576.763807075306, + 16905.5102993332, + 17246.314808776286, + 17599.177335404554, + 17964.097879218003, + 18341.07644021664, + 18730.11301840046, + 19131.20761376946, + 19544.360226323664, + 19969.570856063037, + 20406.839502987597, + 20856.16616709735, + 21317.550848392286, + 21790.993546872396, + 22276.494262537715, + 22774.052995388196, + 23283.669745423882, + 23805.34451264473, + 24339.077297050775, + 24884.868098641997, + 11380.366836587998, + 11490.059099737035, + 11611.809380071258, + 11745.617677590666, + 11891.483992295256, + 12049.408324185039, + 12219.390673259997, + 12401.431039520146, + 12595.529422965485, + 12801.685823595999, + 13019.900241411706, + 13250.172676412594, + 13492.503128598666, + 13746.89159796992, + 14013.338084526373, + 14291.842588267997, + 14582.405109194824, + 14885.025647306817, + 15199.704202603998, + 15526.440775086372, + 15865.235364753931, + 16216.087971606665, + 16578.9985956446, + 16953.96723686771, + 17340.993895275995, + 17740.07857086949, + 18151.22126364815, + 18574.421973611992, + 19009.68070076104, + 19456.997445095258, + 19916.372206614662, + 20387.804985319264, + 20871.295781209035, + 21366.844594284008, + 21874.451424544153, + 22394.116271989486, + 22925.83913661999, + 12812.353215919198, + 12934.888423216149, + 13069.481647698285, + 13216.1328893656, + 13374.842148218102, + 13545.609424255797, + 13728.434717478667, + 13923.318027886724, + 14130.259355479975, + 14349.2587002584, + 14580.316062222018, + 14823.431441370816, + 15078.6048377048, + 15345.836251223966, + 15625.125681928332, + 15916.473129817867, + 16219.878594892598, + 16535.3420771525, + 16862.8635765976, + 17202.443093227885, + 17554.080627043353, + 17917.776178043998, + 18293.529746229844, + 18681.34133160086, + 19081.21093415706, + 19493.13855389846, + 19917.124190825034, + 20353.167844936794, + 20801.26951623375, + 21261.42920471588, + 21733.646910383195, + 22217.922633235714, + 22714.256373273394, + 23222.648130496276, + 23743.097904904324, + 24275.605696497572, + 24820.17150527599, + 11367.90668901, + 11476.381066687038, + 11596.913461549262, + 11729.503873596666, + 11874.152302829261, + 12030.858749247038, + 12199.623212849998, + 12380.445693638148, + 12573.326191611482, + 12778.264706769998, + 12995.261239113706, + 13224.315788642596, + 13465.428355356662, + 13718.598939255922, + 13983.827540340375, + 14261.114158609998, + 14550.45879406482, + 14851.861446704817, + 15165.322116529998, + 15490.840803540372, + 15828.417507735927, + 16178.052229116664, + 16539.7449676826, + 16913.495723433705, + 17299.304496369998, + 17697.171286491488, + 18107.096093798147, + 18529.078918289997, + 18963.11975996704, + 19409.21861882926, + 19867.375494876665, + 20337.590388109267, + 20819.863298527034, + 21314.19422613001, + 21820.583170918155, + 22339.030132891487, + 22869.53511204999, + 12793.350043674003, + 12914.660258158152, + 13048.028489827488, + 13193.454738682005, + 13350.939004721702, + 13520.481287946594, + 13702.081588356667, + 13895.739905951927, + 14101.456240732376, + 14319.230592698, + 14549.06296184882, + 14790.953348184818, + 15044.901751705998, + 15310.90817241237, + 15588.972610303928, + 15879.095065380667, + 16181.275537642598, + 16495.51402708971, + 16821.810533722, + 17160.16505753949, + 17510.577598542153, + 17873.048156729998, + 18247.576732103047, + 18634.163324661262, + 19032.807934404664, + 19443.510561333267, + 19866.27120544704, + 20301.089866746, + 20747.966545230156, + 21206.901240899482, + 21677.893953753995, + 22160.94468379371, + 22656.05343101859, + 23163.220195428683, + 23682.44497702393, + 24213.72777580437, + 24757.068591769992, + 11357.040221292, + 11464.296713497035, + 11583.61122288726, + 11714.983749462664, + 11858.414293223257, + 12013.902854169037, + 12181.449432300002, + 12361.054027616146, + 12552.716640117484, + 12756.437269803997, + 12972.215916675708, + 13200.052580732594, + 13439.947261974663, + 13691.899960401923, + 13955.910676014375, + 14231.979408811998, + 14520.106158794819, + 14820.290925962816, + 15132.533710315996, + 15456.834511854375, + 15793.193330577928, + 16141.610166486664, + 16502.085019580598, + 16874.617889859706, + 17259.208777323995, + 17655.857681973484, + 18064.564603808147, + 18485.329542827996, + 18918.15249903304, + 19363.03347242326, + 19819.972462998663, + 20288.969470759264, + 20770.024495705038, + 21263.13753783601, + 21768.308597152147, + 22285.53767365348, + 22814.824767339993, + 12775.9405512888, + 12896.025772960149, + 13028.169011816686, + 13172.370267858401, + 13328.6295410853, + 13496.946831497395, + 13677.322139094667, + 13869.755463877127, + 14074.246805844776, + 14290.7961649976, + 14519.40354133562, + 14760.068934858822, + 15012.792345567199, + 15277.57377346077, + 15554.413218539528, + 15843.310680803468, + 16144.266160252599, + 16457.27965688691, + 16782.3511707064, + 17119.48070171109, + 17468.668249900955, + 17829.913815276, + 18203.217397836244, + 18588.578997581662, + 18985.998614512264, + 19395.476248628063, + 19817.01189992904, + 20250.605568415194, + 20696.25725408656, + 21153.966956943088, + 21623.734676984797, + 22105.560414211715, + 22599.444168623795, + 23105.385940221076, + 23623.38572900353, + 24153.443534971175, + 24695.559358124, + 11347.767433434, + 11453.806040167035, + 11571.902664085257, + 11702.057305188666, + 11844.269963477262, + 11998.540638951037, + 12164.86933161, + 12343.256041454148, + 12533.70076848348, + 12736.203512697997, + 12950.764274097704, + 13177.383052682593, + 13416.059848452664, + 13666.794661407921, + 13929.58749154837, + 14204.438338873999, + 14491.347203384817, + 14790.314085080814, + 15101.338983961994, + 15424.421900028372, + 15759.562833279928, + 16106.761783716664, + 16466.018751338597, + 16837.333736145705, + 17220.706738137997, + 17616.137757315486, + 18023.62679367815, + 18443.173847225997, + 18874.77891795904, + 19318.44200587726, + 19774.16311098066, + 20241.942233269267, + 20721.779372743036, + 21213.674529402015, + 21717.627703246155, + 22233.63889427548, + 22761.70810248999, + 12760.124738763601, + 12878.984967622147, + 13009.903213665886, + 13152.879476894797, + 13307.913757308901, + 13475.006054908199, + 13654.156369692666, + 13845.364701662322, + 14048.631050817174, + 14263.955417157198, + 14491.33780068242, + 14730.778201392817, + 14982.2766192884, + 15245.833054369165, + 15521.44750663513, + 15809.119976086267, + 16108.850462722596, + 16420.638966544102, + 16744.485487550795, + 17080.390025742683, + 17428.35258111975, + 17788.373153681998, + 18160.45174342944, + 18544.588350362057, + 18940.782974479862, + 19349.03561578286, + 19769.346274271036, + 20201.7149499444, + 20646.141642802955, + 21102.626352846688, + 21571.1690800756, + 22051.769824489715, + 22544.428586088998, + 23049.145364873482, + 23565.920160843136, + 24094.75297399797, + 24635.643804337997, + 11340.088325436001, + 11444.909046697036, + 11561.78778514326, + 11690.724540774663, + 11831.719313591257, + 11984.772103593037, + 12149.88291078, + 12327.051735152147, + 12516.278576709481, + 12717.563435451999, + 12930.906311379706, + 13156.307204492596, + 13393.766114790664, + 13643.283042273923, + 13904.857986942374, + 14178.490948795998, + 14464.18192783482, + 14761.930924058815, + 15071.737937467995, + 15393.602968062374, + 15727.526015841928, + 16073.507080806663, + 16431.546162956598, + 16801.643262291702, + 17183.798378811993, + 17578.011512517485, + 17984.282663408147, + 18402.611831484002, + 18832.99901674504, + 19275.44421919126, + 19729.947438822666, + 20196.508675639267, + 20675.127929641036, + 21165.80520082801, + 21668.54048920015, + 22183.33379475748, + 22710.18511749999, + 12745.902606098405, + 12863.537842144155, + 12993.231095375086, + 13134.9823657912, + 13288.791653392504, + 13454.658958178994, + 13632.584280150664, + 13822.567619307527, + 14024.608975649573, + 14238.708349176803, + 14464.86573988922, + 14703.08114778682, + 14953.354572869597, + 15215.68601513757, + 15490.075474590727, + 15776.522951229064, + 16075.028445052596, + 16385.591956061307, + 16708.213484255197, + 17042.893029634288, + 17389.630592198555, + 17748.426171948, + 18119.279768882647, + 18502.19138300246, + 18897.161014307465, + 19304.188662797667, + 19723.27432847304, + 20154.418011333597, + 20597.619711379353, + 21052.87942861029, + 21520.197163026394, + 21999.57291462771, + 22491.006683414194, + 22994.49846938587, + 23510.04827254273, + 24037.656092884772, + 24577.321930411996, + 11334.002897298002, + 11437.605733087035, + 11553.266586061261, + 11680.985456220664, + 11820.762343565255, + 11972.59724809504, + 12136.490169809997, + 12312.441108710143, + 12500.450064795483, + 12700.517038065998, + 12912.642028521708, + 13136.825036162594, + 13373.066060988662, + 13621.365102999918, + 13881.72216219637, + 14154.137238577998, + 14438.610332144814, + 14735.141442896815, + 15043.730570833995, + 15364.377715956369, + 15697.082878263927, + 16041.846057756662, + 16398.6672544346, + 16767.546468297704, + 17148.483699345994, + 17541.478947579486, + 17946.532212998147, + 18363.643495601995, + 18792.81279539104, + 19234.040112365255, + 19687.325446524657, + 20152.668797869264, + 20630.070166399033, + 21119.529552114007, + 21621.04695501415, + 22134.62237509948, + 22660.255812369993, + 12733.274153293201, + 12849.684396526149, + 12978.152656944281, + 13118.678934547599, + 13271.2632293361, + 13435.905541309796, + 13612.605870468666, + 13801.364216812723, + 14002.180580341972, + 14215.054961056401, + 14439.987358956021, + 14676.977774040819, + 14926.026206310802, + 15187.132655765967, + 15460.297122406331, + 15745.519606231866, + 16042.800107242594, + 16352.138625438507, + 16673.535160819596, + 17006.98971338588, + 17352.502283137354, + 17710.072870073996, + 18079.70147419584, + 18461.38809550286, + 18855.132733995062, + 19260.935389672457, + 19678.796062535042, + 20108.714752582804, + 20550.69145981575, + 21004.72618423388, + 21470.818925837197, + 21948.96968462571, + 22439.17846059939, + 22941.445253758277, + 23455.77006410233, + 23982.15289163157, + 24520.593736345993, + 11329.511149020002, + 11431.896099337037, + 11546.339066839259, + 11672.840051526664, + 11811.399053399258, + 11962.016072457038, + 12124.691108699999, + 12299.424162128142, + 12486.215232741482, + 12685.064320540001, + 12895.971425523709, + 13118.936547692594, + 13353.959687046665, + 13601.040843585923, + 13860.18001731037, + 14131.377208220001, + 14414.63241631482, + 14709.945641594815, + 15017.316884059997, + 15336.746143710376, + 15668.23342054593, + 16011.778714566663, + 16367.3820257726, + 16735.043354163703, + 17114.762699739997, + 17506.540062501484, + 17910.37544244815, + 18326.268839579996, + 18754.22025389704, + 19194.22968539926, + 19646.297134086657, + 20110.422599959267, + 20586.606083017035, + 21074.847583260005, + 21575.147100688147, + 22087.504635301484, + 22611.920187099997, + 12722.23938034801, + 12837.42463076815, + 12964.667898373484, + 13103.969183164007, + 13255.328485139706, + 13418.745804300597, + 13594.221140646667, + 13781.754494177929, + 13981.345864894376, + 14192.995252796001, + 14416.70265788282, + 14652.468080154817, + 14900.291519612001, + 15160.17297625437, + 15432.112450081931, + 15716.109941094666, + 16012.165449292599, + 16320.278974675706, + 16640.450517243997, + 16972.680076997487, + 17316.967653936154, + 17673.313248059996, + 18041.716859369048, + 18422.178487863264, + 18814.698133542664, + 19219.275796407266, + 19635.91147645704, + 20064.605173692, + 20505.356888112157, + 20958.16661971749, + 21423.034368507997, + 21899.960134483714, + 22388.943917644592, + 22889.98571799068, + 23403.085535521936, + 23928.243370238375, + 24465.459222139994, + 11326.613080602, + 11427.780145447037, + 11541.005227477259, + 11666.288326692666, + 11803.62944309326, + 11953.028576679037, + 12114.485727449997, + 12288.000895406145, + 12473.574080547483, + 12671.205282873998, + 12880.894502385709, + 13102.641739082594, + 13336.446992964668, + 13582.31026403192, + 13840.231552284373, + 14110.210857721997, + 14392.248180344817, + 14686.343520152814, + 14992.496877145997, + 15310.708251324373, + 15640.977642687929, + 15983.30505123667, + 16337.690476970596, + 16704.133919889704, + 17082.635379993993, + 17473.194857283484, + 17875.812351758144, + 18290.487863418, + 18717.22139226304, + 19156.012938293257, + 19606.862501508655, + 20069.77008190926, + 20544.735679495036, + 21031.75929426601, + 21530.84092622215, + 22041.98057536348, + 22565.17824168999, + 12712.798287262805, + 12826.758544870147, + 12952.776819662688, + 13090.853111640401, + 13240.987420803305, + 13403.179747151395, + 13577.430090684667, + 13763.738451403127, + 13962.104829306776, + 14172.529224395597, + 14395.01163666962, + 14629.552066128817, + 14876.150512773202, + 15134.806976602767, + 15405.52145761753, + 15688.293955817466, + 15983.124471202596, + 16290.013003772905, + 16608.9595535284, + 16939.964120469085, + 17283.02670459495, + 17638.147305905997, + 18005.32592440224, + 18384.56256008366, + 18775.857212950265, + 19179.20988300207, + 19594.620570239033, + 20022.089274661197, + 20461.61599626855, + 20913.20073506108, + 21376.843491038795, + 21852.54426420171, + 22340.303054549793, + 22840.119862083076, + 23351.994686801532, + 23875.927528705175, + 24411.918387794, + 11326.389448128964, + 11427.421192257741, + 11540.51095357171, + 11665.658732070859, + 11802.864527755197, + 11952.12834062472, + 12113.450170679424, + 12286.830017919312, + 12472.267882344395, + 12669.763763954654, + 12879.317662750103, + 13100.929578730736, + 13334.59951189655, + 13580.327462247553, + 13838.113429783747, + 14107.957414505114, + 14389.85941641168, + 14683.81943550342, + 14989.837471780342, + 15307.913525242466, + 15638.047595889762, + 15980.23968372224, + 16334.489788739918, + 16700.79791094277, + 17079.164050330804, + 17469.588206904038, + 17872.070380662444, + 18286.61057160604, + 18713.20877973483, + 19151.86500504879, + 19602.579247547932, + 20065.35150723228, + 20540.181784101795, + 21027.070078156514, + 21526.016389396395, + 22037.020717821466, + 22560.083063431724, + 12711.847651467364, + 12825.67179865329, + 12951.553963024406, + 13089.494144580698, + 13239.49234332218, + 13401.548559248848, + 13575.6627923607, + 13761.835042657736, + 13960.065310139962, + 14170.353594807368, + 14392.699896659966, + 14627.104215697746, + 14873.566551920701, + 15132.08690532885, + 15402.665275922187, + 15685.301663700704, + 15979.996068664415, + 16286.748490813303, + 16605.55893014737, + 16936.427386666637, + 17279.353860371084, + 17634.338351260707, + 18001.38085933553, + 18380.481384595525, + 18771.63992704071, + 19174.856486671084, + 19590.131063486646, + 20017.463657487377, + 20456.85426867331, + 20908.302897044425, + 21371.809542600706, + 21847.374205342207, + 22334.99688526886, + 22834.677582380726, + 23346.416296677762, + 23870.21302815998, + 24406.06777682738, + 12147.6287167, + 12208.064278537036, + 12280.55785755926, + 12365.109453766661, + 12461.719067159258, + 12570.386697737036, + 12691.112345500005, + 12823.896010448148, + 12968.737692581484, + 13125.6373919, + 13294.595108403711, + 13475.610842092594, + 13668.684592966669, + 13873.816361025923, + 14091.006146270376, + 14320.253948699996, + 14561.559768314823, + 14814.923605114816, + 15080.345459100005, + 15357.825330270374, + 15647.363218625933, + 15948.959124166664, + 16262.613046892597, + 16588.324986803706, + 16926.094943899996, + 17275.922918181484, + 17637.80890964815, + 18011.752918299997, + 18397.75494413704, + 18795.814987159258, + 19205.933047366663, + 19628.109124759263, + 20062.343219337035, + 20508.635331100006, + 20966.985460048152, + 21437.393606181482, + 21919.85976949999, + 13314.98609838, + 13387.977151914814, + 13473.026222634819, + 13570.133310540004, + 13679.29841563037, + 13800.521537905932, + 13933.80267736667, + 14079.141834012597, + 14236.539007843705, + 14405.994198860006, + 14587.507407061488, + 14781.078632448156, + 14986.70787502, + 15204.39513477704, + 15434.140411719263, + 15675.943705846666, + 15929.805017159266, + 16195.724345657045, + 16473.70169134, + 16763.737054208148, + 17065.83043426149, + 17379.981831500005, + 17706.191245923717, + 18044.4586775326, + 18394.78412632666, + 18757.167592305927, + 19131.609075470373, + 19518.108575820002, + 19916.66609335482, + 20327.28162807482, + 20749.955179979996, + 21184.686749070377, + 21631.476335345928, + 22090.323938806676, + 22561.2295594526, + 23044.193197283705, + 23539.214852299992 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.426538638300477, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC185A_C_MP.json b/examples/NyleC185A_C_MP.json new file mode 100644 index 0000000..3745b14 --- /dev/null +++ b/examples/NyleC185A_C_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0025236066666666666, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 41869.99999901, + 41470.00000484, + 40999.9999973, + 40529.99999339999, + 39819.99999864, + 39350.00000952, + 55989.99999894, + 54999.9999997, + 53960.0000058, + 53049.99999857, + 51539.999992959994, + 50550.0000096, + 76010.0000016, + 74650.00000052, + 71979.99999928, + 69700.00000490999, + 66570.00001042, + 64380.00000959999, + 83699.9999975, + 79129.99999506, + 76490.0000001, + 72799.99999329999, + 67520.00000905, + 64049.99999076 + ], + "input_power": [ + 7570.0, + 11660.0, + 14050.0, + 18300.0, + 25040.0, + 30480.0, + 6990.0, + 10460.0, + 14280.0, + 18190.0, + 26240.0, + 32320.0, + 7870.0, + 12040.0, + 15020.0, + 18810.0, + 25990.0, + 31260.0, + 8150.0, + 12460.0, + 15170.0, + 18950.0, + 26230.0, + 31620.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 9.927607736059246, + "volume": 3.6339936 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC185A_C_SP.json b/examples/NyleC185A_C_SP.json new file mode 100644 index 0000000..a38c189 --- /dev/null +++ b/examples/NyleC185A_C_SP.json @@ -0,0 +1,7285 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 333.15, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 36989.94537883613, + 36985.27011832153, + 36960.0605648415, + 36917.33535010715, + 36860.12325341434, + 36791.46320164336, + 36714.4042692593, + 36632.00567831165, + 36547.33679843471, + 36463.47714684716, + 36383.516388352415, + 36310.5543353385, + 36247.70094777796, + 36198.076333228, + 36164.81074683037, + 36151.04459131152, + 36159.92841698233, + 36194.6229217385, + 36258.29895106012, + 36354.13749801203, + 36485.32970324355, + 36655.07685498872, + 36866.59038906611, + 37123.09188887887, + 37427.813085414804, + 37783.99585724631, + 38194.89223053033, + 38663.764379008404, + 39193.88462400684, + 39788.535434436315, + 40451.009426792276, + 41184.60936515467, + 41992.648161187986, + 42878.44887414151, + 43845.344710849, + 44896.67902572881, + 46035.80532078389, + 37284.16252172288, + 37269.83955097201, + 37233.69151618868, + 37178.82117756501, + 37108.34144287774, + 37025.37536748818, + 36933.05615434223, + 36834.5271539704, + 36732.941864487846, + 36631.4639315942, + 36533.26714857387, + 36441.535456295656, + 36359.462943213155, + 36290.25384536447, + 36237.12254637229, + 36203.29357744393, + 36192.001617371316, + 36206.49149253091, + 36250.018176883874, + 36325.84679197591, + 36437.252606937334, + 36587.52103848299, + 36779.94765091247, + 37017.838156109814, + 37304.50841354375, + 37643.28443026761, + 38037.50236091927, + 38490.508507721206, + 39005.65932048064, + 39586.32139658919, + 40235.871481023176, + 40957.69646634352, + 41755.193392695655, + 42631.76944780977, + 43590.84196700052, + 44635.838433167235, + 45770.19647679379, + 38043.05025561213, + 38012.06974761206, + 37956.98472554559, + 37881.0493808705, + 37787.5280526292, + 37679.695227448654, + 37560.835539540465, + 37434.24377070077, + 37303.22485031042, + 37171.093855334715, + 37041.176010323674, + 36916.80668741191, + 36801.331406318575, + 36698.10583434745, + 36610.495786386884, + 36541.877224909964, + 36495.63625997408, + 36475.16914922159, + 36483.88229787918, + 36525.19225875826, + 36602.52573225476, + 36719.319566349295, + 36879.02075660708, + 37085.08644617784, + 37340.983925795925, + 37650.190633780396, + 38016.19415603475, + 38442.49222604715, + 38932.59272489048, + 39490.01368122202, + 40118.28327128381, + 40820.939818902385, + 41601.53179548887, + 42463.61782003909, + 43410.76665913343, + 44446.55722693682, + 45574.57858519879, + 37415.2739719908, + 37414.138692427885, + 37392.06893895027, + 37352.07800173673, + 37297.189318550736, + 37230.436474740156, + 37154.86320323777, + 37073.523384560605, + 36989.48104681058, + 36905.81036567404, + 36825.59566442199, + 36751.93141391007, + 36687.92223257843, + 36636.68288645192, + 36601.33828913988, + 36585.02350183636, + 36590.88373331993, + 36622.0743399538, + 36681.760825685764, + 36773.11884204823, + 36899.33418815816, + 37063.6028107172, + 37269.13080401154, + 37519.13440991192, + 37816.840017873794, + 38165.48416493715, + 38568.31353572655, + 39028.584962451154, + 39549.56542490489, + 40134.53205046607, + 40786.77211409773, + 41509.58303834739, + 42306.27239334731, + 43180.15789681415, + 44134.56741404951, + 45172.83895793919, + 46298.32068895391, + 37696.060173204445, + 37685.08251985468, + 37651.93442698073, + 37599.713016480244, + 37531.52555783558, + 37450.489468113476, + 37359.73231196555, + 37262.391801627695, + 37161.615796920705, + 37060.56230524977, + 36962.399481604814, + 36870.3056285602, + 36787.46919627509, + 36717.08878249312, + 36662.37313254253, + 36626.5411393362, + 36612.82184337159, + 36624.45443273073, + 36664.688243080316, + 36736.782757671615, + 36844.007607340405, + 36989.642570507254, + 37176.977573177195, + 37409.312688939826, + 37689.95813896944, + 38022.23429202495, + 38409.471664449695, + 38855.01092017181, + 39362.20287070398, + 39934.40847514338, + 40574.99884017191, + 41287.355220056066, + 42074.869016646815, + 42940.94177937987, + 43888.98520527544, + 44922.42113893839, + 46044.68157255828, + 38428.23936016806, + 38400.19787968654, + 38347.812212775534, + 38274.33037842666, + 38183.010543216216, + 38077.12102130488, + 37959.94027443825, + 37834.75691194618, + 37704.86969074339, + 37573.58751532903, + 37444.229437786904, + 37320.12465778549, + 37204.612522577765, + 37101.042527001366, + 37012.774313478476, + 36943.17767201593, + 36895.63254020512, + 36873.52900322206, + 36880.26729382739, + 36919.2577923663, + 36993.92102676855, + 37107.68767254865, + 37263.998552805584, + 37466.30463822292, + 37718.06704706889, + 38022.75704519632, + 38383.85604604257, + 38804.855610629646, + 39289.25744756425, + 39840.57341303751, + 40462.325510825336, + 41158.04589228797, + 41931.27685637057, + 42785.570849602576, + 43724.49046609837, + 44751.6084475566, + 45870.5076832608, + 38052.23927367959, + 38056.29697098163, + 38038.82335591208, + 38002.823706351155, + 37951.31344776368, + 37887.31815319911, + 37813.87354329146, + 37734.02548625932, + 37650.829997905974, + 37567.3532416192, + 37486.671528371415, + 37411.871316719706, + 37346.04921280562, + 37292.31197035544, + 37253.77649067995, + 37233.56982267458, + 37234.82916281938, + 37260.701855178915, + 37314.34539140244, + 37398.92741072382, + 37517.62569996143, + 37673.62819351827, + 37870.13297338201, + 38110.34826912478, + 38397.49245790349, + 38734.794064459566, + 39125.49176111891, + 39572.83436779221, + 40080.080851974766, + 40650.5003287463, + 41287.37206077124, + 41993.985458298666, + 42773.64007916211, + 43629.645628779785, + 44565.32196015457, + 45583.99907387382, + 46689.01711810959, + 38313.287347767124, + 38307.19932352965, + 38278.426192008745, + 38230.05661766037, + 38165.189412525135, + 38086.93353622826, + 37998.408095979525, + 37902.742346573265, + 37803.07569038857, + 37702.55767738893, + 37604.3480051226, + 37511.616518722294, + 37427.543210905475, + 37355.318221974114, + 37298.14183981478, + 37259.22449989871, + 37241.78678528157, + 37249.05942660389, + 37284.283302090575, + 37350.70943755123, + 37451.59900637998, + 37590.22332955571, + 37769.86387564179, + 37993.81226078613, + 38265.37024872138, + 38587.84975076472, + 38964.572825817864, + 39398.8716803672, + 39894.08866848386, + 40453.576291823316, + 41080.697199625705, + 41778.824188715924, + 42551.340203503234, + 43401.638335981705, + 44333.12182572982, + 45349.20405991095, + 46453.308573272574, + 39005.996729457795, + 38982.221261887666, + 38933.74530105761, + 38863.80760725999, + 38775.657088371794, + 38672.5527998546, + 38557.76394475458, + 38434.56987370245, + 38306.26008491364, + 38176.134224188056, + 38047.50208491028, + 37923.68360804953, + 37808.0088821595, + 37703.81814337858, + 37614.46177542974, + 37543.30030962054, + 37493.704424843156, + 37469.05494757431, + 37472.74285187539, + 37508.169259392394, + 37578.74543935584, + 37687.89280858087, + 37839.042931467324, + 38035.637519999436, + 38281.12843374628, + 38578.97767986139, + 38932.657413082874, + 39345.64993573349, + 39821.4476977207, + 40363.553296536404, + 40975.47947725713, + 41660.74913254412, + 42422.89530264303, + 43265.46117538428, + 44192.000086182714, + 45206.07551803804, + 46311.261101534314, + 38688.03984021722, + 38697.149148836776, + 38684.13442618823, + 38651.99293785322, + 38603.73209699804, + 38542.36946437346, + 38470.932748315085, + 38392.459804742764, + 38309.99863716131, + 38226.60739665984, + 38145.354381912315, + 38069.31803917709, + 38001.58696229725, + 37945.25989270048, + 37903.445719398944, + 37879.26347898954, + 37875.842355653745, + 37896.32168115754, + 37943.85093485157, + 38021.58974367114, + 38132.70788213603, + 38280.38527235074, + 38467.811984004264, + 38698.18823437025, + 38974.724388307, + 39300.64095825729, + 39679.168604248574, + 40113.54813389289, + 40607.03050238694, + 41162.87681251186, + 41784.35831463357, + 42474.75640670254, + 43237.36263425368, + 44075.47869040674, + 44992.41641586591, + 45991.49779891993, + 47076.05497544245, + 38929.83367018457, + 38928.48043842691, + 38903.93150620052, + 38859.2670805197, + 38797.577515983445, + 38721.96331477516, + 38635.535126663126, + 38541.41374899987, + 38442.73012672286, + 38342.62535235391, + 38244.25066599957, + 38150.76745535098, + 38065.3472556838, + 37991.171749858404, + 37931.43276831967, + 37889.33228909709, + 37868.082437804835, + 37870.90548764156, + 37901.0338593906, + 37961.71012141991, + 38056.1869896819, + 38187.727327713765, + 38359.60414663722, + 38575.10060515849, + 38837.510009568585, + 39150.13581374296, + 39516.29161914174, + 39939.30117480954, + 40422.49837737587, + 40969.227271054464, + 41582.84204764394, + 42266.7070465273, + 43024.196754672375, + 43858.69580663131, + 44773.59898454113, + 45772.31121812336, + 46858.24758468401, + 39583.77395772338, + 39564.09292206837, + 39519.358928379945, + 39452.801478251255, + 39367.66022086004, + 39267.18495296854, + 39154.63561892382, + 39033.28231065723, + 38906.405267685, + 38777.294877107764, + 38649.25167361091, + 38525.5863394643, + 38409.61970452248, + 38304.682746224564, + 38214.11658959424, + 38141.272507239846, + 38089.51191935431, + 38062.20639371508, + 38062.73764568434, + 38094.497538208794, + 38160.8880818197, + 38265.32143463303, + 38411.21990234926, + 38602.01593825351, + 38841.15214321551, + 39132.08126568955, + 39478.266201714534, + 39883.17999491398, + 40350.30583649604, + 40883.13706525334, + 41485.177167563204, + 42159.93977738769, + 42910.94867627305, + 43741.73779335062, + 44655.8512053359, + 45656.84313652928, + 46748.27795881574, + 39322.75227092851, + 39336.77073173677, + 39328.07656194076, + 39299.65901482361, + 39254.517491252955, + 39195.66153968112, + 39126.11085614497, + 39048.8952842659, + 38967.054815250114, + 38883.63958788815, + 38801.709888555386, + 38724.33615121158, + 38654.59895740128, + 38595.589036253565, + 38550.40726448205, + 38522.16466638509, + 38513.982413845435, + 38528.99182633065, + 38570.334370892764, + 38641.16166216845, + 38744.63546237895, + 38883.92768133018, + 39062.220376412566, + 39282.70575260117, + 39548.58616245571, + 39863.07410612042, + 40229.39223132413, + 40650.77333338029, + 41130.46035518709, + 41671.706387227096, + 42277.77466756761, + 42951.93858186049, + 43697.48166334215, + 44517.69759283368, + 45415.890198740766, + 46395.37345705368, + 47459.47149134723, + 39545.76892289566, + 39548.994724209326, + 39528.51830644296, + 39487.411419169206, + 39428.75595954536, + 39355.64397231324, + 39271.17764979929, + 39178.46933191452, + 39080.64150615463, + 38980.826807599806, + 38882.1680189149, + 38787.81807034939, + 38700.94003973728, + 38624.70715249721, + 38562.30278163243, + 38516.92044773079, + 38491.76381896472, + 38490.04671109123, + 38514.993087451985, + 38569.837058973244, + 38657.822884165806, + 38782.204969125116, + 38946.24786753123, + 39153.22628064872, + 39406.42505732691, + 39709.1391939996, + 40064.67383468518, + 40476.34427098668, + 40947.475942091856, + 41481.404434772856, + 42081.47548338649, + 42751.04496987433, + 43493.478923762195, + 44312.15352216087, + 45210.45508976549, + 46191.780098855976, + 47259.5351692967, + 40161.62855700883, + 40145.86975694647, + 40104.709376134204, + 40041.36765746593, + 39959.07499142011, + 39861.07191605984, + 39750.60911703278, + 39630.94742757114, + 39505.35782849188, + 39377.1214481964, + 39249.52956267079, + 39125.883595485684, + 39009.495117796396, + 38903.68584834278, + 38811.78765344926, + 38737.14254702499, + 38683.10269056351, + 38653.03039314319, + 38650.29811142684, + 38678.28844966196, + 38740.39415968052, + 38840.0181408993, + 38980.57344031951, + 39165.48325252699, + 39398.180919692255, + 39682.10993157033, + 40020.72392550085, + 40417.48668640807, + 40875.87214680095, + 41399.36438677289, + 41991.45763400194, + 42655.6562637508, + 43395.474798866664, + 44214.4379097814, + 45116.08041451147, + 46103.94727865802, + 47181.59361540657, + 39956.4528187872, + 39975.236879073906, + 39970.72382898063, + 39945.89490949185, + 39903.741509176696, + 39847.26516418883, + 39779.47755826661, + 39703.40052273284, + 39622.06603649511, + 39538.51622604542, + 39455.803365460524, + 39376.98987640172, + 39305.14832811487, + 39243.361437430496, + 39194.72206876367, + 39162.33323411408, + 39149.308093066036, + 39158.7699527884, + 39193.85226803471, + 39257.698641143026, + 39353.46282203607, + 39484.308708221084, + 39653.41034479, + 39863.951924419234, + 40119.12778736996, + 40422.14242148784, + 40776.210462203126, + 41184.5566925307, + 41650.416043070174, + 42177.033592005515, + 42767.66456510543, + 43425.57433572328, + 44154.03842479684, + 44956.34250084864, + 45835.782379985794, + 46795.664025899896, + 47839.30354986734, + 40161.16254198814, + 40168.810694188694, + 40152.254183271914, + 40114.5563013688, + 40058.790488194914, + 39988.04033105043, + 39905.39956482013, + 39813.97207197332, + 39716.87188256407, + 39617.22317423084, + 39518.160272196874, + 39422.82764926988, + 39334.37992584225, + 39255.981869890966, + 39190.80839697757, + 39142.04457024828, + 39112.88560043375, + 39106.53684584948, + 39126.21381239531, + 39175.14215355587, + 39256.55767040029, + 39373.70631158236, + 39529.844173340476, + 39728.23749949749, + 39972.162681461064, + 40264.90625822335, + 40609.764916361026, + 41010.04549003549, + 41469.0649609928, + 41990.15045856343, + 42576.63925966254, + 43231.878788789916, + 43959.226618029854, + 44762.05046705136, + 45643.72820310801, + 46607.64784103798, + 47657.20754326394, + 40739.61769300717, + 40727.608316888785, + 40689.852579361, + 40629.56146461846, + 40549.95610444037, + 40454.26777819056, + 40345.73791281744, + 40227.618082853995, + 40103.17001041794, + 39975.66556521137, + 39848.38676452117, + 39724.62577321881, + 39607.68490376018, + 39500.87661618597, + 39407.5235181214, + 39330.95836477625, + 39274.52405894497, + 39241.57365100655, + 39235.470338924606, + 39259.58746824737, + 39317.308532107665, + 39412.02717122285, + 39547.147173895, + 39726.08247601066, + 39952.257161041096, + 40229.10546004206, + 40560.07175165406, + 40948.61056210199, + 41398.18656519559, + 41912.274582328966, + 42494.359582480974, + 43147.936682215084, + 43876.511145679164, + 44683.598384605895, + 45572.72395831247, + 46547.42357370068, + 47611.243085256996, + 40589.21739041591, + 40612.62240388949, + 40612.14994676768, + 40590.77324773642, + 40551.475683066245, + 40497.25077661227, + 40431.102199814224, + 40356.04377169638, + 40275.09945886773, + 40191.303375521726, + 40107.69978343653, + 40027.34309197479, + 39953.2978580839, + 39888.638786295756, + 39836.45072872684, + 39799.82868507832, + 39781.87780263584, + 39785.71337626982, + 39814.460848435076, + 39871.255809171176, + 39959.243996102174, + 40081.58129443685, + 40241.433736968516, + 40441.97750407503, + 40686.39892371894, + 40977.89447144737, + 41319.67077039201, + 41714.94459126909, + 42166.94285237973, + 42678.90261960927, + 43254.071106427866, + 43895.70567389029, + 44607.07383063575, + 45391.453232888176, + 46252.131684456144, + 47192.4071367327, + 48215.58768869552, + 40776.083617198616, + 40787.99651532568, + 40775.20638087208, + 40740.76804852716, + 40687.74650056483, + 40619.21686684353, + 40538.264424806424, + 40447.98459948112, + 40351.48296348002, + 40251.87523699991, + 40152.28728782234, + 40055.85513131338, + 39965.72493042374, + 39885.052995688704, + 39817.00578522815, + 39764.75990474658, + 39731.502107533095, + 39720.42929446137, + 39734.7485139897, + 39777.676962160986, + 39852.44198260271, + 39962.28106652687, + 40110.44185273032, + 40300.182127594286, + 40534.76982508463, + 40817.48302675178, + 41151.60996173096, + 41540.44900674167, + 41987.30868608841, + 42495.50767165991, + 43068.37478292972, + 43709.24898695597, + 44421.47939838122, + 45208.42527943285, + 46073.45603992271, + 47019.951237247304, + 48051.300576387664, + 41317.79818506019, + 41309.364805910955, + 41274.844126749806, + 41217.43787307212, + 41140.35791795784, + 41046.82628207158, + 40940.075133662496, + 40823.3467885643, + 40699.89371019545, + 40572.97850955887, + 40445.87394524215, + 40321.86292341737, + 40204.23849784139, + 40096.303869855576, + 40001.37238838582, + 39922.7675499428, + 39863.82299862154, + 39827.88252610192, + 39818.300071648264, + 39838.43972210955, + 39891.67571191927, + 39981.39242309567, + 40110.98438524151, + 40283.85627554413, + 40503.42291877547, + 40773.10928729214, + 41096.350501035275, + 41476.591827530545, + 41917.28868188854, + 42421.90662680399, + 42993.9213725566, + 43636.818777010536, + 44354.09484561443, + 45149.255731401725, + 46025.81773499037, + 46987.307304582944, + 48037.26103596652, + 41221.121546086295, + 41249.00177287372, + 41252.42828841078, + 41234.3663090848, + 41197.79119886772, + 41145.688469316134, + 41081.05377957116, + 41006.89293635848, + 40926.22189398853, + 40842.066754356194, + 40757.463766941, + 40675.45932880714, + 40599.109984603325, + 40531.482426562885, + 40475.653494503764, + 40434.71017582856, + 40411.74960552428, + 40409.87906616281, + 40432.21598790038, + 40481.887948477975, + 40562.03267322107, + 40675.798035039916, + 40826.34205442919, + 41016.832899468194, + 41250.448885820915, + 41530.378476735896, + 41859.820283046196, + 42241.98306316956, + 42680.085723108445, + 43177.35731644968, + 43737.037044364835, + 44362.37425561004, + 45056.628446526, + 45823.06926103805, + 46664.97649065613, + 47585.6400744748, + 48588.36009917317, + 41390.60089191275, + 41406.62000822996, + 41397.441797077205, + 41366.112635702106, + 41315.68904893692, + 41249.23770919845, + 41169.835436488116, + 41080.56919839191, + 40984.536110080524, + 40884.843434309085, + 40784.608581417495, + 40686.959109330084, + 40595.03272355593, + 40511.97727718864, + 40440.95077090644, + 40385.12135297211, + 40347.66731923314, + 40331.77711312146, + 40340.64932565372, + 40377.492695431145, + 40445.52610863952, + 40547.9785990493, + 40688.0893480155, + 40869.10768447773, + 41094.29308496015, + 41366.915173571586, + 41690.253722005546, + 42067.598649539854, + 42502.25002303733, + 42997.51805694507, + 43556.72311329491, + 44183.1957017033, + 44880.27647937117, + 45651.31625108418, + 46499.6759692125, + 47428.726733710995, + 48441.849792119014, + 41896.22650615874, + 41891.19508167765, + 41859.73926063911, + 41805.0515098392, + 41730.33444365868, + 41638.800824062884, + 41533.67356060172, + 41418.18571040966, + 41295.5804782059, + 41169.1112162941, + 41042.04142456257, + 40917.64475048429, + 40799.204989116726, + 40690.01608310203, + 40593.38212266688, + 40512.61734562266, + 40451.04613736516, + 40412.00303087502, + 40398.832706717294, + 40414.88999304172, + 40463.53986558255, + 40548.15744765876, + 40672.12801017391, + 40838.84697161601, + 41051.71989805783, + 41314.1625031567, + 41629.60064815448, + 42001.470341877655, + 42433.21774073748, + 42928.29914872954, + 43490.181017434166, + 44122.33994601635, + 44828.26268122549, + 45611.446117395746, + 46475.39729644577, + 47423.633407879, + 48459.68178878323, + 41852.24049971876, + 41884.44910636566, + 41891.63188066756, + 41876.74602671321, + 41842.75889617599, + 41792.64798831386, + 41729.40094996944, + 41656.015575569785, + 41575.499807126784, + 41490.87173423669, + 41405.15959408054, + 41321.40177142384, + 41242.646798616806, + 41171.95335559421, + 41112.39026987536, + 41067.03651656424, + 41038.98121834944, + 41031.32364550408, + 41047.17321588594, + 41089.64949493739, + 41161.88219568535, + 41267.01117874145, + 41408.186452301794, + 41588.5681721472, + 41811.326641642954, + 42079.642311739, + 42396.70578097001, + 42765.71779545499, + 43189.88924889786, + 43672.441182586874, + 44216.604785395, + 44825.62139377988, + 45502.74249178352, + 46251.22971103278, + 47074.35483073899, + 47975.399777698054, + 48957.65662629062, + 42004.78276316498, + 42024.748647160035, + 42019.0269833698, + 41990.65569160019, + 41942.68283924181, + 41878.166641269774, + 41800.17546024387, + 41711.78780630837, + 41616.092337192305, + 41516.18785820916, + 41415.18332225705, + 41316.19782981881, + 41222.36062896171, + 41136.81111533773, + 41062.69883218344, + 41003.1834703199, + 40961.434868152915, + 40940.633011672784, + 40943.968034454476, + 40974.64021765755, + 41035.859990026074, + 41130.84792788888, + 41262.834755159274, + 41435.061343335154, + 41650.778711499115, + 41913.24802631829, + 42225.74060204436, + 42591.53790051367, + 43013.9315311473, + 43496.22325095063, + 44041.72496451382, + 44653.75872401169, + 45335.65672920351, + 46090.761327433196, + 46922.425013629334, + 47834.01043030506, + 48828.89036755805, + 42474.9587829425, + 42473.15465550236, + 42444.5928770162, + 42392.45665558085, + 42319.93934687783, + 42230.24445417322, + 42126.58562831767, + 42012.18666774643, + 41890.28151847944, + 41764.11427412107, + 41636.93917586047, + 41512.020612471206, + 41392.63312031167, + 41282.061383324675, + 41183.60023303767, + 41100.554648562764, + 41036.239756596595, + 40993.98083142039, + 40977.113294900104, + 40988.982716486134, + 41032.94481321354, + 41112.36544970208, + 41230.62063815588, + 41391.09653836391, + 41597.18945769964, + 41852.30585112107, + 42159.86232117084, + 42523.285617976224, + 42946.0126392492, + 43431.490430286096, + 43983.17618396804, + 44604.53724076073, + 45299.05108871435, + 46070.205363463756, + 46921.49784822841, + 47856.43647381237, + 48878.53931860437, + 42482.649118882815, + 42519.03817835342, + 42529.833403944736, + 42517.983987446976, + 42486.44926823497, + 42438.19873326801, + 42376.212017090234, + 42303.47890183009, + 42222.99931720083, + 42137.783340500246, + 42050.85119661066, + 41965.23325799913, + 41883.970044717265, + 41810.11222440117, + 41746.72061227168, + 41696.86617113416, + 41663.63001137862, + 41650.10339097961, + 41659.38771549635, + 41694.59453807261, + 41758.84555943673, + 41855.2726279018, + 41987.01773936532, + 42157.23303730948, + 42369.08081280107, + 42625.73350449149, + 42930.37369861671, + 43286.19412899722, + 43696.39767703839, + 44164.19737172985, + 44692.8163896461, + 45285.48805494603, + 45945.45583937321, + 46675.973362255856, + 47480.30439050674, + 48361.722838623245, + 49323.51276868735, + 42618.69728163881, + 42642.449560023444, + 42640.02814488142, + 42614.46249857703, + 42568.79223105916, + 42506.06709986125, + 42429.34701010146, + 42341.702014482325, + 42246.21231329123, + 42145.96825439997, + 42044.07033326508, + 41943.629192927554, + 41847.76562401312, + 41759.61056473204, + 41682.30510087916, + 41619.00046583396, + 41572.858040560524, + 41547.049353607494, + 41544.75608110817, + 41569.17004678037, + 41623.49322192656, + 41710.93772543391, + 41834.72582377397, + 41998.08993100304, + 42204.272608762025, + 42456.526566276334, + 42758.11466035605, + 43112.30989539576, + 43522.39542337491, + 43991.66454385723, + 44523.420703991214, + 45120.97749850993, + 45787.65866973104, + 46526.79810755679, + 47341.73984947402, + 48235.83808055426, + 49212.45713345353, + 43054.05079570017, + 43055.29869234759, + 43029.45952551738, + 42979.7072446072, + 42909.225946599276, + 42821.20987606036, + 42718.86342514201, + 42605.401133580075, + 42484.04768869532, + 42358.03792539287, + 42230.61682616257, + 42105.03952107887, + 41984.57128780076, + 41872.48755157187, + 41772.073885220394, + 41686.62600915917, + 41619.44979138564, + 41573.86124748174, + 41553.18654061417, + 41560.761981534146, + 41599.93402857737, + 41674.059287664386, + 41786.50451230018, + 41940.646603574314, + 42139.87261016104, + 42387.57972831919, + 42687.175301892144, + 43042.076822307856, + 43455.71192857909, + 43931.51840730296, + 44472.944192661285, + 45083.44736642055, + 45766.49615793165, + 46525.568944130246, + 47364.15424953654, + 48285.75074625542, + 49293.86725397616, + 43112.42192479681, + 43152.84241647391, + 43167.10519229788, + 43158.15143176028, + 43128.93246193737, + 43082.409757489964, + 43021.5549406635, + 42949.34978128789, + 42868.78619677786, + 42782.86625213255, + 42694.60215993578, + 42607.016280355994, + 42523.14112114615, + 42446.01933764393, + 42378.703732771464, + 42324.257257035606, + 42285.753008527776, + 42266.27423292393, + 42268.914323484714, + 42296.77682105536, + 42352.9754140656, + 42440.63393852991, + 42562.88637804728, + 42722.87686380132, + 42923.75967456021, + 43168.699236676744, + 43460.8701240884, + 43803.45705831702, + 44199.654908469434, + 44652.66869123669, + 45165.713570894666, + 45742.01485930376, + 46384.808015908864, + 47097.33864773973, + 47882.86250941047, + 48744.645503119864, + 49685.96367865143, + 43232.41215166657, + 43259.78952837655, + 43260.51114039251, + 43237.59799263706, + 43194.081237617414, + 43133.002175425376, + 43057.41225373737, + 42970.37306781428, + 42874.95636050188, + 42774.24402223019, + 42671.32809101413, + 42569.310752452984, + 42471.304339730894, + 42380.43133361633, + 42299.82436246252, + 42232.62620220728, + 42181.989776373, + 42151.07815606665, + 42143.06455997982, + 42161.13235438876, + 42208.47505315416, + 42288.29631772153, + 42403.80995712083, + 42558.23992796656, + 42754.820334458, + 42996.795428378966, + 43287.41960909776, + 43629.95742356735, + 44027.6835663255, + 44483.882879494246, + 45001.8503527804, + 45584.89112347544, + 46236.320476455236, + 46959.463844180435, + 47757.6568066962, + 48634.24509163237, + 49592.5845742033, + 43633.55797836928, + 43637.68201082471, + 43614.3934094279, + 43566.856864877256, + 43498.24721545575, + 43411.74944703096, + 43310.55869305508, + 43197.88023456479, + 43076.929500181584, + 42950.93206611134, + 42823.12365614464, + 42696.75014165669, + 42575.06754160725, + 42461.34202254067, + 42358.84989858592, + 42270.87763145659, + 42200.72183045084, + 42151.68925245138, + 42127.09680192567, + 42130.27153092564, + 42164.550639087785, + 42233.28147363341, + 42339.82152936816, + 42487.53844868245, + 42679.81002155128, + 42920.024185534145, + 43211.57902577521, + 43557.88277500325, + 43962.353813531685, + 44428.420669258405, + 44959.52201766605, + 45559.10668182178, + 46230.63363237724, + 46977.571987568896, + 47803.40101321764, + 48711.61012272903, + 49705.69887709327, + 43741.633092328, + 43785.934902013054, + 43803.51923343145, + 43797.3192537762, + 43770.27827782499, + 43725.349767940024, + 43665.49733406815, + 43593.69473374079, + 43512.92587207403, + 43426.18480176843, + 43336.475723109266, + 43246.812983966374, + 43160.22107979421, + 43079.73465363176, + 43008.39849610263, + 42949.2675454151, + 42905.406887362005, + 42879.89175532077, + 42875.8075302534, + 42896.2497407066, + 42944.32406281149, + 43023.14632028399, + 43135.84248442449, + 43285.54867411802, + 43475.411155834234, + 43708.586343627336, + 43988.240799136154, + 44317.55123158409, + 44699.704497779276, + 45137.89760211421, + 45635.33769656622, + 46195.2420806971, + 46820.838201653234, + 47515.3636541657, + 48282.0661805501, + 49124.20367070668, + 50045.04416212022, + 43845.99473122954, + 43876.83498742468, + 43880.54148233242, + 43860.12676343372, + 43818.61352579409, + 43759.034612063675, + 43684.43301247721, + 43597.86186485394, + 43502.384454597915, + 43401.074214697524, + 43297.01472572596, + 43193.29971584097, + 43093.033060784815, + 42999.32878388444, + 42915.31105605137, + 42844.11419578172, + 42788.882669156206, + 42752.77108984016, + 42738.94421908349, + 42750.57696572072, + 42790.85438617095, + 42862.97168443796, + 42970.13421210997, + 43115.55746835997, + 43302.46709994549, + 43534.09890120862, + 43813.698814076, + 44144.522928059, + 44529.83748025364, + 44972.918855340286, + 45477.053585584144, + 46045.53835083488, + 46681.67997852684, + 47388.79544367889, + 48170.21186889459, + 49029.26652436204, + 49969.306827853965, + 44213.53541853635, + 44220.359083194024, + 44199.44838568185, + 44153.95875799898, + 44087.05577972912, + 44001.915178040574, + 43901.722827686346, + 43789.67475100384, + 43668.97711791531, + 43542.84624592737, + 43414.50860013138, + 43287.200793203316, + 43164.169585403586, + 43048.671884577365, + 42943.97474615435, + 42853.355373148894, + 42780.101116159894, + 42727.509473370854, + 42698.88809054994, + 42697.55476104984, + 42726.83742580781, + 42790.07417334586, + 42890.6132397705, + 43031.81300877278, + 43217.04201162846, + 43449.67892719787, + 43733.11258192587, + 44070.74194984198, + 44465.9761525604, + 44922.234459279716, + 45442.94628678338, + 46031.55119943922, + 46691.49890919976, + 47426.249275602095, + 48239.27230576792, + 49134.048154403645, + 50114.06712380006, + 44021.21934807449, + 44067.198298715346, + 44086.21222365378, + 44081.19072781489, + 44055.073563708385, + 44010.810631428525, + 43951.36197865423, + 43879.69780064892, + 43798.79844026079, + 43711.65438792244, + 43621.2662816512, + 43530.644907048954, + 43442.81119730214, + 43360.7962331819, + 43287.64124304388, + 43226.397602828394, + 43180.12683606032, + 43151.90061384912, + 43144.8007548889, + 43161.91922545836, + 43206.35813942074, + 43281.22975822398, + 43389.656490900496, + 43534.7708940674, + 43719.71567192639, + 43947.64367626377, + 44221.717906450314, + 44545.11150944156, + 44921.00777977767, + 45352.60015958324, + 45843.09223856758, + 46395.69775402457, + 47013.64059083263, + 47700.15478145488, + 48458.48450593904, + 49291.88409191735, + 50203.61801460667, + 44118.76861137324, + 44151.096128234654, + 44156.078675009856, + 44136.725039001205, + 44096.054155095706, + 44037.09510576493, + 43962.88712106499, + 43876.479578636594, + 43780.93200370524, + 43679.314069080756, + 43574.70559515774, + 43470.196549915316, + 43368.88704891728, + 43273.88735531198, + 43188.31787983233, + 43115.30918079592, + 43058.001964104915, + 43019.54708324599, + 43003.10553929056, + 43011.84848089457, + 43048.957204298546, + 43117.62315332765, + 43221.04791939166, + 43362.44324148493, + 43545.031006186306, + 43772.04324765943, + 44046.72214765244, + 44372.320035498014, + 44752.09938811362, + 45189.33283000112, + 45687.30313324708, + 46249.30321752266, + 46878.63615008358, + 47578.6151457702, + 48352.56356700746, + 49203.81492380491, + 50135.7128737567, + 44471.558741751775, + 44479.52582045557, + 44459.61673039685, + 44414.982787157074, + 44348.78545390231, + 44264.19634138317, + 44164.39720793488, + 44052.579959477276, + 43931.94664951483, + 43805.70947913654, + 43677.09079701608, + 43549.32309941156, + 43425.649030166, + 43309.32138070671, + 43203.60309004571, + 43111.7672447797, + 43037.0970790899, + 42982.885974742065, + 42952.437461086745, + 42949.06521505889, + 42976.09306117812, + 43036.85497154872, + 43134.69506585953, + 43272.96761138391, + 43455.037022979915, + 43684.27786309022, + 43964.074841741996, + 44297.82281654702, + 44688.92679270188, + 45140.801922987484, + 45656.873507769495, + 46240.5769949982, + 46895.35798020826, + 47624.67220651925, + 48431.985564635106, + 49320.774092844564, + 50294.523977020704, + 44370.35644999257, + 44418.388369905624, + 44439.14716869886, + 44435.558001266756, + 44410.5561700884, + 44367.08712522743, + 44308.10646433212, + 44236.57993263528, + 44155.48342295446, + 44067.80297569163, + 43976.534778833506, + 43884.68516795127, + 43795.27062620087, + 43711.31778432272, + 43635.86342064184, + 43571.95446106794, + 43522.647979095265, + 43491.01119580264, + 43480.12147985352, + 43493.06634749604, + 43532.943462562755, + 43602.86063647095, + 43705.935828222515, + 43845.297144403834, + 44024.08283918603, + 44245.441314324715, + 44512.53111916013, + 44828.5209506171, + 45196.589653205185, + 45619.926219018394, + 46101.72978773531, + 46645.20964661928, + 47253.58523051806, + 47930.086121864115, + 48677.95205067456, + 49500.432894551, + 50400.788678679666, + 44459.51203195791, + 44493.65202602204, + 44500.18433677941, + 44482.1130542693, + 44442.4524161155, + 44384.22680752651, + 44310.47076129539, + 44224.22895779971, + 44128.55622500184, + 44026.51753844851, + 43921.188021271264, + 43815.65294418606, + 43713.007725493604, + 43616.35793107914, + 43528.8192744125, + 43453.51761654813, + 43393.58896612509, + 43352.179479367005, + 43332.44546008212, + 43337.55335966331, + 43370.67977708797, + 43435.01145891821, + 43533.7452993006, + 43670.08833996645, + 43847.25777023158, + 44068.48092699642, + 44336.995294746, + 44656.048505549916, + 45028.89833906254, + 45458.81272252264, + 45949.069730753654, + 46502.95758616368, + 47123.77465874527, + 47814.82946607565, + 48579.440673316756, + 49420.937093214954, + 50342.65768610134, + 44794.03785743674, + 44803.384035364754, + 44784.677964862254, + 44741.06581922916, + 44675.70391934997, + 44591.75873369373, + 44492.406878314156, + 44380.83511684941, + 44260.240360522504, + 44133.829668140796, + 44004.82024609643, + 43876.43944836605, + 43751.9247765109, + 43634.52387967688, + 43527.49455459444, + 43434.10474557868, + 43357.632544529246, + 43301.3661909304, + 43268.60407185101, + 43262.65472194459, + 43286.83682344912, + 43344.479206187316, + 43438.92084756651, + 43573.51087257846, + 43751.60855379968, + 43976.58331139124, + 44251.81471309879, + 44580.692474252544, + 44966.61645776749, + 45412.996674143025, + 45923.25328146318, + 46500.81658539672, + 47149.12703919682, + 47871.635243701305, + 48671.80194733273, + 49553.09804609813, + 50519.004583589136, + 44998.66547995563, + 45050.275208735315, + 45074.06029310243, + 45072.93787565287, + 45049.83524656713, + 45007.68984361029, + 44949.44925213207, + 44878.07120506663, + 44796.52358293302, + 44707.78441383458, + 44614.84187345944, + 44520.694285080324, + 44428.350119554474, + 44340.82799532376, + 44261.15667841467, + 44192.37508243825, + 44137.53226859027, + 44099.68744565088, + 44081.909969985056, + 44087.279345542265, + 44118.88522385653, + 44179.827404046584, + 44273.21583281571, + 44402.17060445172, + 44569.82196082714, + 44779.310291399066, + 45033.786133209076, + 45336.4101708835, + 45690.35323663327, + 46098.79631025376, + 46564.93051912514, + 47091.95713821208, + 47683.08759006372, + 48341.54344481405, + 49070.55642018152, + 49873.36838146926, + 50753.231341564824, + 45073.03071913081, + 45110.30638667185, + 45119.504523460695, + 45103.62076209499, + 45065.660882756885, + 45008.64081321318, + 44935.58662881523, + 44849.53455249895, + 44753.53095478506, + 44650.63235377859, + 44543.90541516935, + 44436.42695223178, + 44331.2839258248, + 44231.57344439197, + 44140.40276396151, + 44060.88928814613, + 43996.16056814329, + 43949.35430273486, + 43923.618338287444, + 43922.11066875229, + 43947.99943566502, + 44004.46292814617, + 44094.689582900595, + 44221.87798421786, + 44389.23686397225, + 44599.98510162246, + 44857.35172421177, + 45164.57590636823, + 45524.906970304466, + 45941.60438581755, + 46417.93777028929, + 46957.1868886861, + 47562.641653558814, + 48237.60212504312, + 48985.37851085911, + 49809.29116631158, + 50712.67059428991, + 45375.11968995481, + 45386.81064689502, + 45370.1353112011, + 45328.23059747367, + 45264.24356789795, + 45181.33143224383, + 45082.66154786567, + 44971.411419702476, + 44850.76870027793, + 44723.93118970021, + 44594.10683566215, + 44464.51373344121, + 44338.38012589934, + 44218.94440348318, + 44109.455104223984, + 44013.17091373752, + 43933.360665224296, + 43873.303339469196, + 43836.28806484195, + 43825.61411729675, + 43844.590920372364, + 43896.538045192254, + 43984.78521046449, + 44112.67228248159, + 44283.5492751208, + 44500.77634984402, + 44767.72381569751, + 45087.772129312354, + 45464.311894904225, + 45900.74386427327, + 46400.478936804364, + 46966.93815946692, + 47603.55272681484, + 48313.76398098683, + 49101.023411706105, + 49968.79265628046, + 50920.543499602274, + 45626.63331803128, + 45681.66746073487, + 45708.32955529344, + 45709.528732004466, + 45688.18426874972, + 45647.22559099578, + 45589.59227179374, + 45518.23403177925, + 45436.110739172684, + 45346.19240977892, + 45251.45920698748, + 45154.90144177241, + 45059.519572692436, + 44968.32420589093, + 44884.33609509571, + 44810.586141619286, + 44750.115394358836, + 44705.97504979597, + 44681.22645199704, + 44678.94109261294, + 44702.20061087914, + 44754.09679361585, + 44837.731575227604, + 44956.21703770377, + 45112.67541061834, + 45310.23907112968, + 45552.050543980964, + 45841.262501499805, + 46181.0377635986, + 46574.54929777419, + 47024.98021910815, + 47535.523790266496, + 48109.38342149991, + 48749.77267064373, + 49459.91524311791, + 50243.04499192676, + 51102.40591765954, + 45686.61711167626, + 45726.86346552616, + 45738.56651575244, + 45724.71343751107, + 45688.30155354254, + 45632.338334171975, + 45559.84139730908, + 45473.83850844808, + 45377.367580667975, + 45273.47667463221, + 45165.22399858887, + 45055.677908370715, + 44947.91690739499, + 44845.02964666362, + 44750.1149247631, + 44666.281687864495, + 44596.64902972357, + 44544.346191680546, + 44512.51256266038, + 44504.297679172545, + 44522.861225311084, + 44571.37303275482, + 44653.01308076696, + 44770.97149619543, + 44928.44855347269, + 45128.65467461581, + 45374.81042922659, + 45670.146534491185, + 46017.903855180615, + 46421.33340365029, + 46883.69633984037, + 47408.26397127552, + 47998.317753064985, + 48657.149287902714, + 49388.06032606716, + 50194.36276542148, + 51079.37865141325, + 45956.83496462382, + 45970.69235099196, + 45955.87324257926, + 45915.50529528717, + 45852.726312601626, + 45770.68424559319, + 45672.53719291711, + 45561.45340081303, + 45440.61126310546, + 45313.19932120328, + 45182.41626410008, + 45051.47092837405, + 44923.58229818795, + 44801.97950528916, + 44689.90182900964, + 44590.59869626596, + 44507.32968155931, + 44443.36450697541, + 44401.98304218469, + 44386.475304442094, + 44400.14145858715, + 44446.29181704414, + 44528.24683982167, + 44649.33713451322, + 44812.903456296764, + 45022.29670793482, + 45280.87793977454, + 45592.018349747705, + 45959.0992833707, + 46385.51223374447, + 46874.658841554636, + 47429.95089507134, + 48054.81033014929, + 48752.66923022789, + 49526.96982633105, + 50381.16449706746, + 51318.715768630114, + 46254.332753682356, + 46312.63682178573, + 46342.025557572095, + 46345.400079040235, + 46325.671651773504, + 46285.76168893978, + 46228.60175129169, + 46157.13354716624, + 46074.308932485255, + 45983.08991075498, + 45886.4486330664, + 45787.367398095026, + 45688.83865210097, + 45593.86498892902, + 45505.4591500084, + 45426.64402435312, + 45360.45264856167, + 45309.928206817174, + 45278.124030887375, + 45268.10360012459, + 45282.9405414657, + 45325.718629432304, + 45399.53178613049, + 45507.48408125099, + 45652.689732069084, + 45838.273103444706, + 46067.36870782246, + 46343.121205231306, + 46668.68540328512, + 47047.22625718216, + 47481.91886970533, + 47975.94849122227, + 48532.510519684896, + 49154.81050063008, + 49846.064127179015, + 50609.4972400377, + 51448.34582749668, + 46300.33718217128, + 46343.38831238595, + 46357.43444067958, + 46345.454284766514, + 46310.4367099455, + 46255.38072910001, + 46183.29550269807, + 46097.20033879223, + 46000.12469301987, + 45895.108168602645, + 45785.200516347046, + 45673.461634644176, + 45562.96156946956, + 45456.78051438346, + 45358.008810530686, + 45269.74694664068, + 45195.10555902748, + 45137.20543158966, + 45099.177495810465, + 45084.16283075775, + 45095.31266308385, + 45135.78836702592, + 45208.761464405456, + 45317.41362462874, + 45464.936664686626, + 45654.53254915447, + 45889.41339019231, + 46172.801447544705, + 46507.929128540985, + 46898.03898809493, + 47346.383728704925, + 47856.226200454046, + 48430.83940100988, + 49073.50647562459, + 49787.520717135114, + 50576.18556596275, + 51442.81461011358, + 46539.23738362588, + 46555.08223451148, + 46541.94423052658, + 46502.94176887328, + 46441.20339433835, + 46359.86779929311, + 46262.08382369348, + 46151.01045507996, + 46029.81682857775, + 45901.68222689649, + 45769.796080330496, + 45637.35796675876, + 45507.577611644774, + 45383.67488803664, + 45268.87981656708, + 45166.43256545347, + 45079.58345049767, + 45011.59293508618, + 44965.7316301902, + 44945.28029436541, + 44953.52983375207, + 44993.78130207521, + 45069.34590064428, + 45183.54497835343, + 45339.71003168131, + 45541.18270469128, + 45791.314789031334, + 46093.46822393382, + 46451.01509621601, + 46867.33764027955, + 47345.82823811072, + 47889.88941928058, + 48502.933860944504, + 49188.3843878426, + 49949.67397229965, + 50790.2457342249, + 51713.552941112364, + 46881.836230020876, + 46943.25464141844, + 46975.21855588738, + 46980.62107912794, + 46962.36546442478, + 46923.3651126473, + 46866.54357224946, + 46794.83453926975, + 46711.18185733143, + 46618.53951764216, + 46519.87165899432, + 46418.15256776483, + 46316.36667791527, + 46217.50857099183, + 46124.58297612517, + 46040.60477003071, + 45968.59897700837, + 45911.600768942706, + 45872.65546530285, + 45854.818533142585, + 45861.15558710019, + 45894.74238939874, + 45958.66484984562, + 46056.01902583305, + 46189.91112233786, + 46363.45749192128, + 46579.78463472924, + 46842.02919849234, + 47153.33797852575, + 47516.86791772915, + 47935.78610658695, + 48413.26978316806, + 48952.506333126024, + 49556.693289699004, + 50229.038333709614, + 50972.75929356534, + 51791.08414525813, + 46914.25655684167, + 46959.945630701164, + 46976.17207891621, + 46965.90616175938, + 46932.128287087864, + 46877.82901034342, + 46806.00903455238, + 46719.67921032567, + 46621.860535858905, + 46515.5841569322, + 46403.89136691028, + 46289.83360674253, + 46176.4724649629, + 46066.879677689954, + 45964.137128626804, + 45871.336849061234, + 45791.58101786557, + 45727.98196149678, + 45683.662153996396, + 45661.75421699058, + 45665.40091969004, + 45697.755178890155, + 45761.980058970934, + 45861.24877189687, + 45998.74467721705, + 46177.661282065266, + 46401.202241159925, + 46672.581356803836, + 46995.02257888468, + 47371.76000487452, + 47806.03787983016, + 48301.11059639291, + 48860.24269478873, + 49486.70886282812, + 50183.7939359062, + 50954.79289700283, + 51803.010876682274, + 47122.3803027922, + 47140.03303795858, + 47128.400400221704, + 47090.591528084566, + 47029.725707634534, + 46948.93237254374, + 46851.351104068875, + 46740.131631051125, + 46618.43382991649, + 46489.427724675326, + 46356.29348692275, + 46222.22143583846, + 46090.41203818671, + 45964.075908316365, + 45846.43380816089, + 45740.71664723838, + 45650.165482651515, + 45578.03151908748, + 45527.57610881827, + 45502.07075170028, + 45504.797095174545, + 45539.04693426689, + 45608.12221158738, + 45715.335017330974, + 45864.007589277244, + 46057.472312790116, + 46299.071720818254, + 46592.158493894975, + 46940.095460138175, + 47346.25559525022, + 47814.02202251832, + 48346.7880128141, + 48947.95698459371, + 49620.94250389812, + 50369.16828435274, + 51196.068187167664, + 52105.08622113755, + 47509.215843807564, + 47573.591922812455, + 47607.97845983744, + 47615.2605482842, + 47598.33342913883, + 47560.102490972145, + 47503.48326993954, + 47431.40144978093, + 47346.792861820955, + 47252.60348496873, + 47151.78944571808, + 47047.31701814732, + 46942.16262391945, + 46839.31283228209, + 46741.76436006737, + 46652.52407169202, + 46574.6089791575, + 46511.046242049735, + 46464.873167539285, + 46439.137210381334, + 46436.895972915656, + 46461.21720506667, + 46515.1788043432, + 46601.86881583895, + 46724.38543223213, + 46885.836993785335, + 47089.34198834602, + 47338.029051346166, + 47635.03696580235, + 47983.5146623157, + 48386.62121907203, + 48847.525861841714, + 49369.40796397965, + 49955.45704642545, + 50608.872777703255, + 51332.86497392183, + 52130.65359877455, + 47528.44051556231, + 47576.59977757067, + 47594.84286478514, + 47586.13158003661, + 47553.43787374061, + 47499.7438438972, + 47428.04173609107, + 47341.33394349145, + 47242.63300685229, + 47134.961614512016, + 47021.352602393694, + 46904.84895400507, + 46788.50380043835, + 46675.38042037043, + 46568.55224006283, + 46471.10283336156, + 46386.125921697334, + 46316.72537408543, + 46266.015207125696, + 46237.11958500261, + 46233.17281948523, + 46257.31936992729, + 46312.713843267054, + 46402.520994027385, + 46529.915724315724, + 46698.083083824095, + 46910.21826982929, + 47169.52662719248, + 47479.22364835961, + 47842.5349733611, + 48262.696389812074, + 48742.953832912186, + 49286.56338544563, + 49896.79127778139, + 50576.9138878728, + 51330.217741258064, + 52159.999511059774, + 47706.316731602725, + 47725.597155487056, + 47715.29353049243, + 47678.505736422514, + 47618.343800665505, + 47537.927898194255, + 47440.3883515662, + 47328.865630923276, + 47206.51035399222, + 47076.48328608421, + 46941.955340095024, + 46806.10757650517, + 46672.131203379606, + 46543.227576368, + 46422.60819870453, + 46313.494721208044, + 46219.11894228197, + 46142.7228079143, + 46087.55841167768, + 46056.887994729324, + 46053.98394581103, + 46082.12880124931, + 46144.61524495502, + 46244.7461084239, + 46385.83437073619, + 46571.20315855664, + 46804.18574613465, + 47088.12555530426, + 47426.376155484104, + 47822.301263677415, + 48279.27474447198, + 48800.6806100403, + 49389.91302013923, + 50050.376282110505, + 50785.48485088026, + 51598.66332895934, + 52493.34646644318, + 48136.54334545216, + 48203.71932279607, + 48240.37483266919, + 48249.38695617457, + 48233.64292199982, + 48196.0401064171, + 48139.4860332833, + 48066.89837403969, + 47981.2049477124, + 47885.34372091191, + 47782.262807833504, + 47674.92047025689, + 47566.28511754653, + 47459.33530665143, + 47357.05974210516, + 47262.457276025896, + 47178.536908116504, + 47108.31778566429, + 47054.82920354128, + 47021.11060420411, + 47010.2115776939, + 47025.19186163653, + 47069.12134124235, + 47145.08004930636, + 47256.15816620813, + 47405.456019911806, + 47596.08408596631, + 47831.16298750489, + 48113.82349524566, + 48447.20652749113, + 48834.46315012854, + 49278.7545766297, + 49783.25216805087, + 50351.13743303317, + 50985.60202780215, + 51689.84775616795, + 52467.086569525454, + 48142.95399185699, + 48193.41476374228, + 48213.509886258216, + 48206.192704794084, + 48174.42671232364, + 48121.18554940532, + 48049.453004182134, + 47962.22301238163, + 47862.499657316075, + 47753.29716988223, + 47637.639928561526, + 47518.56245941995, + 47399.1094361081, + 47282.3356798612, + 47171.30615949905, + 47069.09599142602, + 46978.79043963116, + 46903.484915688, + 46846.284978754826, + 46810.306335574394, + 46798.674840474065, + 46814.526495365935, + 46861.0074497465, + 46941.27400069701, + 47058.49259288332, + 47215.83981855573, + 47416.502417549265, + 47663.67727728349, + 47960.57143276269, + 48310.40206657561, + 48716.39650889563, + 49181.79223748083, + 49709.83687767368, + 50303.788202401454, + 50966.91413217592, + 51702.49273509349, + 52513.81222683517, + 48291.0993331864, + 48311.82663489969, + 48302.67505381526, + 48266.73521103752, + 48207.10787525544, + 48126.903962742625, + 48029.24453735726, + 47917.260810542044, + 47794.09414132444, + 47662.896036316386, + 47526.828149714405, + 47389.06228329978, + 47252.78038643819, + 47121.174556080055, + 46997.44703676032, + 46884.810220598585, + 46786.48664729903, + 46705.709004150354, + 46645.72012602602, + 46609.772995383966, + 46601.130742266716, + 46623.0666443015, + 46678.864126700086, + 46771.816762258844, + 46905.2282713587, + 47082.412521965205, + 47306.69352962865, + 47581.40545748363, + 47909.892616249635, + 48295.50946423061, + 48741.62060731512, + 49251.60079897638, + 49828.83494027202, + 50476.718079844526, + 51198.65541392078, + 51998.0622863124, + 52878.36418841559, + 48763.89013901327, + 48833.7071518465, + 48872.47689127841, + 48883.068426113474, + 48868.360972740746, + 48831.24389513383, + 48774.616704850974, + 48701.389061034926, + 48614.4807704132, + 48516.82178729777, + 48411.35221358525, + 48301.02229875685, + 48188.7924398784, + 48077.633181600366, + 47970.52521615772, + 47870.459383370064, + 47780.436670641684, + 47703.46821296133, + 47642.57529290245, + 47600.78934062307, + 47581.151933865774, + 47586.71479795783, + 47620.53980581102, + 47685.698977921784, + 47785.2744823711, + 47922.35863482455, + 48100.05389853248, + 48321.47288432956, + 48589.73835063529, + 48907.98320345367, + 49279.3504963733, + 49706.99343056746, + 50194.07535479386, + 50743.7697653949, + 51359.26030629773, + 52043.74076901379, + 52800.415092639494, + 48757.86157289818, + 48810.45425361255, + 48832.235884956106, + 48826.151354876434, + 48795.15569890567, + 48742.214100160534, + 48670.30188934236, + 48582.40454473701, + 48481.51769221513, + 48370.64710523177, + 48252.808704826646, + 48131.028559624174, + 48008.342885833204, + 47887.79804724731, + 47772.45055524458, + 47665.36706878775, + 47569.62439442421, + 47488.309486285776, + 47424.519446089056, + 47381.36152313519, + 47361.95311430979, + 47369.42176408336, + 47406.90516451065, + 47477.551155231246, + 47584.517723469355, + 47730.973004033614, + 47920.09527931734, + 48155.072979298435, + 48439.1046815395, + 48775.39911118763, + 49167.17514097454, + 49617.661791216575, + 50130.09822981462, + 50707.73377225419, + 51353.82788160544, + 52071.65016852307, + 52864.48039124642, + 48876.78042432108, + 48898.77317764809, + 48890.59605631563, + 48855.33042272883, + 48796.06778687744, + 48715.90980633579, + 48617.96828626283, + 48505.365179402004, + 48381.23258608153, + 48248.71275421406, + 48110.95807929694, + 47971.13110441213, + 47832.404520226126, + 47697.96116499004, + 47570.994024539614, + 47454.706232295175, + 47352.31106926163, + 47267.031964028465, + 47202.1024927699, + 47160.76637924462, + 47146.277494795824, + 47161.89985835161, + 47210.90763642444, + 47296.58514311142, + 47422.22684009425, + 47591.137336639185, + 47806.63138959734, + 48072.03390340404, + 48390.679930079496, + 48765.914669228434, + 49201.093468040126, + 49699.58182128858, + 50264.75537133222, + 50899.99990811418, + 51608.71136916215, + 52394.29583958841, + 53260.169552090105, + 49391.32728219861, + 49463.62537409, + 49504.35350620997, + 49516.37273506442, + 49502.55426474373, + 49465.779446923014, + 49408.939780861874, + 49334.93691340456, + 49246.68263897994, + 49147.098899601435, + 49039.11778486706, + 48925.68153195954, + 48809.74252564604, + 48694.26329827847, + 48582.21652979321, + 48476.5850477113, + 48380.36182713848, + 48296.54999076488, + 48228.16280886539, + 48178.22369929947, + 48149.76622751108, + 48145.83410652898, + 48169.48119696629, + 48223.771507020916, + 48311.77919247536, + 48436.58855669651, + 48601.294050636076, + 48809.00027283029, + 49062.82196940001, + 49365.88403405068, + 49721.32150807231, + 50132.2795803396, + 50601.91358731168, + 51133.389013032356, + 51729.88148913031, + 52394.57679481833, + 53130.67085689412, + 49373.22749950758, + 49427.78156522725, + 49451.0832561486, + 49446.069002777556, + 49415.68538320458, + 49362.88912310473, + 49290.64709573765, + 49201.93632194761, + 49099.74397016347, + 48987.067356398664, + 48866.91394425127, + 48742.3013449039, + 48616.25731712385, + 48491.81976726296, + 48372.036749257706, + 48259.9664646291, + 48158.67726248286, + 48071.24763950915, + 48000.76623998288, + 47950.33185576351, + 47923.05342629504, + 47922.050038606154, + 47950.45092731013, + 48011.39547460481, + 48108.033210272595, + 48243.523811680505, + 48421.037103780356, + 48643.75305910818, + 48914.861797785, + 49237.5635875162, + 49615.068843591805, + 50050.598128886515, + 50547.38215385951, + 51108.66177655472, + 51737.68800260048, + 52437.72198520994, + 53212.03502518069, + 49463.41197543361, + 49486.48813883295, + 49479.10727776803, + 49444.341495944784, + 49385.27304465364, + 49304.99432276969, + 49206.607876752656, + 49093.2264006467, + 48967.97273608085, + 48833.979872268465, + 48694.39094600767, + 48552.35924168108, + 48411.04819125606, + 48273.63137428443, + 48143.292517902664, + 48023.22549683187, + 47916.63433337771, + 47826.733197430396, + 47756.74640646488, + 47709.90842554061, + 47689.463867301594, + 47698.66749197667, + 47740.784207378885, + 47819.089068906265, + 47936.867279541286, + 48097.41418985093, + 48304.035297986884, + 48560.046249685445, + 48868.77283826748, + 49233.551004638466, + 49657.72683728844, + 50144.656572292166, + 50697.706593308794, + 51320.25343158221, + 52015.68376594086, + 52787.394422797894, + 53638.792376150894, + 50018.92548636452, + 50093.54360730163, + 50136.07320165755, + 50149.367313639596, + 50136.28913503963, + 50099.71200523409, + 50042.51941118409, + 49967.60498743522, + 49877.872516117866, + 49776.23592694679, + 49665.61929722149, + 49548.95685182608, + 49429.19296322916, + 49309.28215148405, + 49192.18908422855, + 49080.88857668517, + 48978.365591661, + 48887.61523954765, + 48811.64277832144, + 48753.46361354319, + 48716.103298358365, + 48702.59753349709, + 48715.99216727393, + 48759.343195588204, + 48835.71676192381, + 48948.18915734915, + 49099.84682051727, + 49293.78633766585, + 49533.11444261718, + 49820.94801677813, + 50160.414089140126, + 50554.64983627927, + 51006.80258235618, + 51520.02979911603, + 52097.49910588889, + 52742.38826958903, + 53457.885204715596, + 49989.11566615568, + 50045.4596702808, + 50070.114048754134, + 50066.00677463991, + 50036.0759685869, + 49983.2698988285, + 49910.54698118272, + 49820.875779052076, + 49717.23500342384, + 49602.6135128697, + 49480.0103135461, + 49352.434559193964, + 49222.90555113892, + 49094.452738291155, + 48970.115717145396, + 48852.94423178105, + 48745.99817386213, + 48652.34758263715, + 48575.07264493936, + 48517.26369518649, + 48482.02121538089, + 48472.4558351096, + 48491.68833154421, + 48542.84962944087, + 48629.08080114029, + 48753.533066567885, + 48919.36779323372, + 49129.75649623219, + 49387.88083824263, + 49696.93262952876, + 50060.11382793892, + 50480.636538906176, + 50961.72301544805, + 51506.60565816661, + 52118.52701524882, + 52800.73978246593, + 53556.50680317394, + 50051.04561059961, + 50075.02252720375, + 50068.25911159579, + 50033.81820878248, + 49974.77281135495, + 49894.20605948908, + 49795.21124094529, + 49680.89179106856, + 49554.36129278862, + 49418.74347661959, + 49277.17222066035, + 49132.79155059428, + 48988.75563968948, + 48848.22880879852, + 48714.385526358616, + 48590.41040839162, + 48479.49821850398, + 48384.85386788665, + 48309.69241531531, + 48257.23906715018, + 48230.72917733602, + 48233.40824740235, + 48268.53192646311, + 48339.366011216945, + 48449.18644594715, + 48601.27932252141, + 48798.94088039221, + 49045.47750659654, + 49344.20573575612, + 49698.45225007704, + 50111.55387935021, + 50586.85760095105, + 51127.72053983952, + 51737.50996856022, + 52419.60330724247, + 53177.388123599965, + 54014.26213293122, + 50646.75511651641, + 50723.53112290539, + 50767.70415546378, + 50782.1192461003, + 50769.63157430826, + 50733.10646716554, + 50675.419399334634, + 50599.45599306263, + 50508.112018181244, + 50404.29339210674, + 50290.916179840024, + 50170.90659396653, + 50047.20099465643, + 49922.74588966438, + 49800.49793432964, + 49683.42393157619, + 49574.50083191241, + 49476.71573343144, + 49393.065881810944, + 49326.558670313265, + 49280.211639785215, + 49257.052478658334, + 49260.119022948704, + 49292.45925625702, + 49357.13130976854, + 49457.203462253085, + 49595.75414006527, + 49775.871917144075, + 50000.65551501327, + 50273.21380278107, + 50596.665797140435, + 50974.140662368794, + 51408.777710328184, + 51903.72640046538, + 52462.146339811596, + 53087.20728298276, + 53782.08913217931, + 50605.5896209619, + 50663.55119411671, + 50689.389965340226, + 50686.025450255074, + 50656.38731206825, + 50603.415361571526, + 50530.05955714122, + 50439.28000473816, + 50334.04695790799, + 50217.34081778068, + 50092.15213307097, + 49961.481600078216, + 49828.340062686315, + 49695.74851236373, + 49566.738088163605, + 49444.350076723655, + 49331.63591226612, + 49231.65717659797, + 49147.48559911067, + 49082.20305678035, + 49038.90157416768, + 49020.68332341802, + 49030.66062426121, + 49071.955944011774, + 49147.7018975689, + 49261.04124741614, + 49415.12690362185, + 49613.12192383894, + 49858.19951330496, + 50153.543024841936, + 50502.34595885663, + 50907.811963340304, + 51373.15483386883, + 51901.59851360278, + 52496.37709328714, + 53160.73481125177, + 53897.92605341084, + 50639.73260754372, + 50664.42700515892, + 50658.101604871204, + 50623.80999298799, + 50564.61590340125, + 50483.59321758765, + 50383.825964608266, + 50268.4083211089, + 50140.44461131999, + 50003.04930705644, + 49859.34702771781, + 49712.47254028834, + 49565.5707593368, + 49421.79674701652, + 49284.3157130655, + 49156.30301480635, + 49040.94415714617, + 48941.434792576794, + 48860.98072117455, + 48802.79789060048, + 48770.11239610007, + 48766.16048050353, + 48794.18853422571, + 48857.45309526587, + 48959.22084920801, + 49102.76862922067, + 49291.383416057164, + 49528.362338055056, + 49817.01267113686, + 50160.6518388095, + 50562.60741216457, + 51026.217109878235, + 51554.82879821122, + 52151.800491008944, + 52820.5003497013, + 53564.30668330295, + 54386.607948412995, + 51274.88619130874, + 51353.65684597427, + 51399.314199120185, + 51414.6952703567, + 51402.647226878435, + 51366.02738346475, + 51307.703202479584, + 51230.55229387138, + 51137.46241517334, + 51031.3314715031, + 50915.06751556301, + 50791.58874764, + 50663.82351560554, + 50534.7103149158, + 50407.19778861145, + 50284.24472731779, + 50168.82006924479, + 50063.902900186884, + 49972.48245352326, + 49897.55811021758, + 49842.13939881815, + 49809.24599545796, + 49801.907723854376, + 49823.16455530963, + 49876.06660871043, + 49963.67415052801, + 50089.05759481828, + 50255.29750322179, + 50465.484584963655, + 50722.71969685354, + 51030.1138432858, + 51390.788176239344, + 51807.87399527759, + 52284.51274754879, + 52823.856027785485, + 53429.06557830505, + 54103.31328900944, + 51222.71256569453, + 51282.11841572738, + 51308.97236212344, + 51306.18546306354, + 51276.6789243132, + 51223.38409922237, + 51149.242488725766, + 51057.20574134253, + 50950.23565317661, + 50831.30416791633, + 50703.393376834785, + 50569.495518789554, + 50432.612980222926, + 50295.758295161715, + 50161.95414521734, + 50034.23335958585, + 49915.63891504787, + 49809.22393596859, + 49718.05169429791, + 49645.19560957022, + 49593.73924890453, + 49566.7763270045, + 49567.410706158385, + 49598.75639623902, + 49663.93755470374, + 49766.088486594585, + 49908.3536445383, + 50093.88762874597, + 50325.85518701352, + 50607.43121472133, + 50941.80075483445, + 51332.15899790252, + 51781.711282059674, + 52293.67309302484, + 52871.270064101394, + 53517.7379761774, + 54236.32275772539, + 51229.52389763957, + 51254.75188874584, + 51248.68445831535, + 51214.36593395633, + 51154.850790861456, + 51073.203651808064, + 50972.49928715808, + 50855.822614858036, + 50726.268700439075, + 50586.9427570169, + 50440.960145291865, + 50291.44637354884, + 50141.537097657405, + 49994.37812107168, + 49853.12539483038, + 49720.94501755682, + 49601.01323545895, + 49496.516442329244, + 49410.651179544926, + 49346.62413606763, + 49307.652148443645, + 49296.96220080403, + 49317.79142486418, + 49373.38709992434, + 49467.006652869146, + 49601.91765816791, + 49781.39783787457, + 50008.73506162764, + 50287.22734665028, + 50620.18285775015, + 51010.91990731964, + 51462.766955335705, + 51979.06260935966, + 52563.15562453784, + 53218.404903600844, + 53948.17949686401, + 54755.85860222728, + 51903.38838304463, + 51983.98935523009, + 52030.9708177673, + 52047.16177796783, + 52035.401390727806, + 51998.53895852801, + 51939.43393143376, + 51860.955907094954, + 51765.984630746214, + 51657.40999520659, + 51538.132040879886, + 51411.06095575438, + 51279.11707540305, + 51145.23088298342, + 51012.34300923763, + 50883.4042324924, + 50761.375478659094, + 50649.22782123361, + 50549.942481296515, + 50466.51082751294, + 50401.93437613258, + 50359.22479098982, + 50341.40388350358, + 50351.5036126774, + 50392.566085099366, + 50467.643554942224, + 50579.79842396337, + 50732.103241504614, + 50927.6407044926, + 51169.50365743839, + 51460.795092437824, + 51804.62814917114, + 52204.12611490322, + 52662.42242448357, + 53182.66066034655, + 53767.99455251065, + 54421.58797857928, + 51840.54735577089, + 51901.22326775405, + 51928.92224896889, + 51926.54690015466, + 51897.009969635044, + 51843.23435331843, + 51768.1530946978, + 51674.70938485064, + 51565.85656243923, + 51444.55811371022, + 51313.78767249498, + 51176.52902020955, + 51035.77608585441, + 50894.53294601475, + 50755.81382486031, + 50622.64309414546, + 50498.05527320915, + 50385.09502897496, + 50286.81717595101, + 50206.286676230055, + 50146.57863948946, + 50110.77832299127, + 50101.981131581866, + 50123.2926176925, + 50177.82848133897, + 50268.71457012159, + 50399.08687922524, + 50572.09155141949, + 50790.884877058605, + 51058.63329408125, + 51378.513388010804, + 51753.71189195523, + 52187.42568660703, + 52682.861800243336, + 53243.23740872598, + 53871.779835501286, + 54571.72655160017, + 51820.47006590953, + 51846.0471476608, + 51840.05702629846, + 51805.53477073145, + 51745.52559745323, + 51663.08487054188, + 51561.278101660115, + 51443.18095005513, + 51311.87922255891, + 51170.46887358787, + 51022.05600514306, + 50869.756866810225, + 50716.697855759594, + 50566.01551674609, + 50420.856542109126, + 50284.37777177282, + 50159.746193245854, + 50050.13894162145, + 49958.74329957754, + 49888.75669737659, + 49843.386712865635, + 49825.85107147638, + 49839.37764622513, + 49887.20445771272, + 49972.579674124594, + 50098.76161123084, + 50269.0187323862, + 50486.62964852981, + 50754.88311818566, + 51077.07804746217, + 51456.523490052445, + 51896.53864723418, + 52400.452867869535, + 52971.60564840539, + 53613.346632873305, + 54329.035612889296, + 55122.04252765404, + 52532.33101767634, + 52614.596883043676, + 52662.74115019447, + 52679.58481414174, + 52667.95901748302, + 52630.70505040055, + 52570.674350661044, + 52490.728503615836, + 52393.73924220096, + 52282.58844693688, + 52160.16814592883, + 52029.38051486655, + 51893.13787702439, + 51754.36270326133, + 51615.98761202091, + 51480.95536933131, + 51352.21888880527, + 51232.74123164013, + 51125.49560661788, + 51033.46537010509, + 50959.644026052854, + 50907.03522599702, + 50878.65276905787, + 50877.52060194041, + 50906.67281893414, + 50969.15366191321, + 51068.01752033648, + 51206.32893124717, + 51387.1625792733, + 51613.603296627465, + 51888.74606310677, + 52215.696006092956, + 52597.56840055245, + 53037.48866903604, + 53538.59238167949, + 54104.02525620272, + 54736.9431579107, + 52459.15650025711, + 52520.92733648701, + 52549.30028939101, + 52547.16950226675, + 52517.43926599621, + 52463.02401904611, + 52386.84834746776, + 52291.84698489703, + 52180.96481255439, + 52057.15685924493, + 51923.38830135835, + 51782.63446286888, + 51637.880815335484, + 51492.12297790158, + 51348.36671729531, + 51209.62794782929, + 51078.93273140091, + 50959.317277491944, + 50853.8279431689, + 50765.52123308288, + 50697.46379946952, + 50652.7324421492, + 50634.41410852669, + 50645.60589359151, + 50689.41503991781, + 50768.958937664174, + 50887.3651245739, + 51047.77128597485, + 51253.32525477955, + 51507.18501148509, + 51812.518684173105, + 52172.50454850984, + 52590.331027746295, + 53069.19669271782, + 53612.31026184453, + 54222.890601131076, + 54904.16672416682, + 52412.62135102506, + 52438.36240524904, + 52432.26831683951, + 52397.364896006184, + 52336.68810054326, + 52253.284035829594, + 52150.208954828646, + 52030.52925808835, + 51897.32149374142, + 51753.67235750506, + 51602.67869268109, + 51447.4474901559, + 51291.095888400596, + 51136.751173470766, + 50987.55077900661, + 50846.642286233015, + 50717.18342395938, + 50602.34206857966, + 50505.29624407261, + 50429.23412200138, + 50377.354021513755, + 50352.86440934224, + 50358.98389980383, + 50398.94125480018, + 50475.975383817444, + 50593.335343926396, + 50754.28033978269, + 50962.07972362608, + 51220.01299528136, + 51531.36980215769, + 51899.44993924891, + 52327.563349133416, + 52819.03012197431, + 53377.18049551899, + 54005.35485509996, + 54706.90373363381, + 55485.18781162208, + 53161.783074804945, + 53245.54731543467, + 53294.691988840015, + 53312.030077735326, + 53300.38471241963, + 53262.58917077651, + 53201.48687827416, + 53119.93140796534, + 53020.78648048751, + 52906.92596406255, + 52781.23387449707, + 52646.604375182316, + 52505.941777093976, + 52362.16053879256, + 52218.185266422945, + 52076.95071371474, + 51941.401781982124, + 51814.49352012388, + 51699.1911246234, + 51598.4699395487, + 51515.31545655224, + 51452.723314871335, + 51413.69930132768, + 51401.25935032777, + 51418.4295438624, + 51468.246111507266, + 51553.75543042256, + 51678.01402535296, + 51844.088568627965, + 52055.05588016144, + 52314.00292745213, + 52624.02682558307, + 52988.234837222, + 53409.74437262133, + 53891.68298961818, + 54437.18839363395, + 55049.4084376749, + 53078.60216186833, + 53141.29186186535, + 53170.16680055296, + 53168.11266378705, + 53138.02528500796, + 53082.810645240774, + 53005.38487309507, + 52908.67424476505, + 52795.61518402954, + 52669.15426225194, + 52532.248198380286, + 52387.86385894712, + 52238.97825806974, + 52088.578557449924, + 51939.66206637405, + 51795.23624171316, + 51658.318687922874, + 51531.937157043336, + 51419.12954869945, + 51322.94391010055, + 51246.43843604061, + 51192.68146889837, + 51164.75149863689, + 51165.73716280411, + 51198.73724653235, + 51266.86068253863, + 51373.226551124535, + 51520.964080176265, + 51713.21264516469, + 51953.121769145146, + 52243.85112275773, + 52588.570524226954, + 52990.459939362016, + 53452.70948155672, + 53978.5194117896, + 54571.100138623515, + 55233.67221820613, + 53006.02764530644, + 53031.746938504635, + 53025.36699160645, + 52989.90435612227, + 52928.38573114712, + 52843.847963360604, + 52739.33804702688, + 52617.913123994666, + 52482.64048369746, + 52336.59756315315, + 52182.87194696435, + 52024.561367318165, + 51864.77370398649, + 51706.62698432567, + 51553.24938327661, + 51407.77922336495, + 51273.36497470088, + 51153.16525497911, + 51050.348829479095, + 50968.09461106478, + 50909.59166018466, + 50878.039184872025, + 50876.646540744616, + 50908.633231004846, + 50977.228906439566, + 51085.67336542041, + 51237.216553903614, + 51435.11856542984, + 51682.64964112457, + 51983.09016969767, + 52339.73068744386, + 52755.8718782422, + 53234.8245735564, + 53779.90975243495, + 54394.4585415108, + 55081.812215001526, + 55845.32219470925, + 53791.81318768052, + 53876.9081920718, + 53926.88977979115, + 53944.56292125443, + 53932.742734462016, + 53894.25448499891, + 53831.9335860348, + 53748.62559832376, + 53647.18623020473, + 53530.48133760106, + 53401.38692402073, + 53262.78914055637, + 53117.5842858852, + 52968.678806269, + 52818.989295554195, + 52671.44249517178, + 52528.97529413741, + 52394.53472905121, + 52271.077984098025, + 52161.57239104725, + 52068.99542925289, + 51996.334725653636, + 51946.58805477249, + 51922.7633387174, + 51927.87864718082, + 51964.96219743963, + 52037.05235435543, + 52147.197630374445, + 52298.45668552754, + 52493.89832743004, + 52736.60151128204, + 53029.65533986805, + 53376.159063557345, + 53779.22208030358, + 54241.9639356453, + 54767.51432270539, + 55359.01308219161, + 53698.94615696854, + 53762.37773747716, + 53791.58175326681, + 53789.43543275166, + 53758.82615193046, + 53702.65143438656, + 53623.81895128791, + 53525.246521386965, + 53409.86211102099, + 53280.6038341116, + 53140.419952165175, + 52992.26887427272, + 52839.11915710967, + 52683.94950493621, + 52529.74876959704, + 52379.51595052154, + 52236.260194723654, + 52103.000796801876, + 51982.76719893931, + 51878.59899090376, + 51793.54591004751, + 51730.667841307535, + 51693.03481720534, + 51683.7270178471, + 51705.834770923466, + 51762.4585517098, + 51856.70898306608, + 51991.70683543673, + 52170.583026851, + 52396.478622922536, + 52672.544836849775, + 53001.943029415525, + 53387.844708987424, + 53833.431531517395, + 54341.895300542434, + 54916.437967183694, + 55560.27163014716, + 53600.738494722966, + 53626.24967807068, + 53619.40136591609, + 53583.20085107044, + 53520.665573929335, + 53434.8231224732, + 53328.711232266985, + 53205.377786460085, + 53067.88081578678, + 52919.28849856572, + 52762.67916070019, + 52601.141275678274, + 52437.773464572354, + 52275.684496039605, + 52117.993286321755, + 51967.82889924514, + 51828.33054622073, + 51702.647586243926, + 51593.93952589496, + 51505.37601933855, + 51440.13686832396, + 51401.41202218524, + 51392.40157784071, + 51416.315779793695, + 51476.37502013186, + 51575.809838527486, + 51717.86092223749, + 51905.77910610337, + 52142.82537255139, + 52432.270851592155, + 52777.396820821035, + 53181.494705418, + 53647.86607814747, + 54179.82265935848, + 54780.68631698502, + 55453.78906654514, + 56202.47307114195, + 54422.48964320192, + 54508.74670627256, + 54559.40062278413, + 54577.248350853864, + 54565.096996183616, + 54525.76381205983, + 54462.076199353556, + 54376.87170652034, + 54272.99802960051, + 54153.313012218845, + 54020.68464558475, + 53877.991068492345, + 53728.1205673202, + 53573.97157603154, + 53418.452676174194, + 53264.4825968806, + 53114.99021486783, + 52972.91455443742, + 52841.20478747564, + 52722.82023345338, + 52620.73035942596, + 52537.91478003349, + 52477.363257500576, + 52442.07570163645, + 52435.06216983488, + 52459.3428670743, + 52517.94814591784, + 52613.91850651299, + 52750.30459659206, + 52930.16721147184, + 53156.5772940538, + 53432.6159348239, + 53761.37437185282, + 54145.95399079574, + 54589.466324892455, + 55095.03305496739, + 55665.78600942963, + 54320.249955570805, + 54384.245510559456, + 54413.60477199358, + 54411.1965108457, + 54379.89964567285, + 54322.603242616686, + 54242.206515403515, + 54141.61882534409, + 54023.75968133403, + 53891.55873985328, + 53747.95580496653, + 53595.90082832304, + 53438.3539091567, + 53278.28529428596, + 53118.675378113876, + 52962.5147026281, + 52812.80395740092, + 52672.55397958913, + 52544.78575393427, + 52432.53041276237, + 52338.82923598403, + 52266.73365109466, + 52219.30523317392, + 52199.615704886426, + 52210.7469364812, + 52255.79094579184, + 52337.849898236644, + 52460.036106818414, + 52625.47203212469, + 52837.29028232749, + 53098.63361318353, + 53412.65492803394, + 53782.51727780469, + 54211.39386100612, + 54702.46802373346, + 55258.93325966614, + 55883.99321006859, + 54196.80309889271, + 54221.91920823916, + 54214.419408734386, + 54177.301734490284, + 54113.574367203364, + 54026.25563615472, + 53918.374018210045, + 53792.96813781951, + 53653.086767018125, + 53501.788825425334, + 53342.14338024519, + 53177.22964626636, + 53010.136985862155, + 52843.96490899048, + 52681.82307319375, + 52526.831283599095, + 52382.11949291815, + 52250.82780144719, + 52136.10645706715, + 52041.11585524346, + 51969.0265390262, + 51923.01919905007, + 51906.28467353431, + 51922.02394828288, + 51973.448156684106, + 52063.77857971115, + 52196.24664592175, + 52374.09393145799, + 52600.57216004698, + 52878.943202999995, + 53212.47907921326, + 53604.46195516736, + 54058.18414492759, + 54576.94811014377, + 55164.06646005049, + 55822.86195146664, + 56556.667488796025, + 54492.60771329752, + 54578.983432695764, + 54629.70184535356, + 54647.55901913211, + 54635.36116947708, + 54595.9246594188, + 54532.07599957224, + 54446.65184813682, + 54342.499010896805, + 54222.47444122078, + 54089.44524006213, + 53946.28865595877, + 53795.8920850332, + 53641.153070992616, + 53484.97930512861, + 53330.288626317604, + 53180.00902102046, + 53037.07862328275, + 52904.44571473453, + 52785.06872459059, + 52681.916229650145, + 52597.96695429729, + 52536.2097705003, + 52499.643697812455, + 52491.27790337149, + 52514.131701899634, + 52571.234555703784, + 52665.62607467552, + 52800.356016290934, + 52978.48428561078, + 53203.080935280326, + 53477.22616552952, + 53804.01032417277, + 54186.53390660936, + 54627.90755582289, + 55131.25206238175, + 55699.6983644387, + 54389.34567184587, + 54453.39286876829, + 54482.75860930195, + 54480.310724702795, + 54448.92719381141, + 54391.49614305299, + 54310.91584643732, + 54210.094725558694, + 54091.95134959619, + 53959.41443531327, + 53815.422847058166, + 53662.92559676364, + 53504.881843947034, + 53344.26089571038, + 53184.04220674015, + 53027.215379307585, + 52876.78016326841, + 52735.74645606304, + 52607.13430271638, + 52493.97389583804, + 52399.30557562216, + 52326.17982984755, + 52277.65729387751, + 52256.8087506601, + 52266.71513072778, + 52310.467512197705, + 52391.16712077176, + 52511.92532973617, + 52675.863659961986, + 52886.11377990478, + 53145.81750560469, + 53458.12680068645, + 53826.2037763594, + 54253.22069141759, + 54742.359952239494, + 55296.81411278837, + 55919.78587461184, + 54263.11824297926, + 54288.17888744332, + 54280.59536982547, + 54243.3646954925, + 54179.49401739566, + 54092.00063607081, + 53983.91199963854, + 53858.26570380385, + 53718.109491856514, + 53566.50125467077, + 53406.50903070552, + 53241.21100600431, + 53073.69551419519, + 52907.06103649089, + 52744.416201688626, + 52588.87978617041, + 52443.58071390263, + 52311.65805643641, + 52196.26103290746, + 52100.549010036106, + 52027.691502127134, + 51980.8681710702, + 51963.268826339176, + 51978.09342499295, + 52028.55207167477, + 52117.86501861247, + 52249.262665618524, + 52425.985560090034, + 52651.28439700876, + 52928.42001894094, + 53260.66341603752, + 53651.29572603391, + 54103.60823425014, + 54620.90237359101, + 55206.48972454589, + 55863.69201518847, + 56595.84112117729, + 76330.62911266595, + 76351.1365117061, + 76322.03483610057, + 76245.85307709203, + 76125.13037350762, + 75962.41601175917, + 75760.26942584314, + 75521.2601973405, + 75247.9680554168, + 74942.9828768224, + 74608.90468589205, + 74248.34365454514, + 73863.92010228559, + 73458.26449620217, + 73034.0174509681, + 72593.82972884097, + 72140.36223966327, + 71676.28604086224, + 71204.2823374492, + 70727.04248202055, + 70247.26797475704, + 69767.67046342396, + 69290.97174337138, + 68819.90375753408, + 68357.20859643101, + 67905.63849816612, + 67467.95584842777, + 67046.93318048907, + 66645.3531752074, + 66266.00866102515, + 65911.70261396907, + 65585.24815765071, + 65289.468563265786, + 65027.19724959496, + 64801.27778300365, + 64614.56387744153, + 64469.91939444299, + 76049.08551746579, + 76023.19154444292, + 75951.33847334533, + 75836.11222070719, + 75680.10885064736, + 75485.93457486924, + 75256.20575266103, + 74993.54889089533, + 74700.60064402933, + 74380.00781410497, + 74034.42735074856, + 73666.5263511714, + 73278.98206016884, + 72874.48187012134, + 72455.72332099365, + 72025.41410033523, + 71586.27204328017, + 71141.02513254722, + 70692.41149843935, + 70243.17941884456, + 69796.08731923545, + 69353.90377266878, + 68919.40749978641, + 68495.38736881461, + 68084.64239556399, + 67689.98174343011, + 67314.22472339305, + 66960.20079401757, + 66630.74956145277, + 66328.72077943245, + 66056.9743492751, + 65818.38031988383, + 65615.81888774627, + 65452.18039693461, + 65330.36533910573, + 65253.284353501025, + 65223.858226946664, + 75224.93654501859, + 75124.96317116644, + 74986.01126384843, + 74810.76920512378, + 74601.93552463625, + 74362.21889961428, + 74094.33815487087, + 73801.02226280364, + 73485.01034339466, + 73149.05166421097, + 72795.90564040383, + 72428.34183470928, + 72049.13995744787, + 71661.08986652485, + 71266.9915674301, + 70869.65521323783, + 70471.90110460705, + 70076.55968978166, + 69686.47156458956, + 69304.48747244372, + 68933.46830434148, + 68576.28509886476, + 68235.81904218014, + 67914.96146803914, + 67616.61385777716, + 67343.6878403148, + 67099.10519215705, + 66885.79783739356, + 66706.70784769827, + 66564.7874423303, + 66462.99898813288, + 66404.31499953414, + 66391.7181385465, + 66428.20121476709, + 66516.76718537798, + 66660.42915514542, + 66862.21037642045 + ], + "input_power": [ + 14682.1648882, + 15107.393979814811, + 15533.306997237041, + 15959.903940466666, + 16387.184809503702, + 16815.149604348153, + 17243.798325, + 17673.130971459253, + 18103.147543725932, + 18533.8480418, + 18965.23246568149, + 19397.300815370374, + 19830.053090866666, + 20263.489292170365, + 20697.609419281485, + 21132.413472199998, + 21567.90145092593, + 22004.07335545926, + 22440.929185799996, + 22878.468941948155, + 23316.692623903706, + 23755.600231666664, + 24195.19176523704, + 24635.467224614815, + 25076.426609799993, + 25518.069920792594, + 25960.397157592593, + 26403.408320199997, + 26847.103408614817, + 27291.482422837038, + 27736.545362866666, + 28182.292228703707, + 28628.72302034815, + 29075.837737800004, + 29523.63638105926, + 29972.118950125925, + 30421.28544499999, + 14956.3133172, + 15393.001140370365, + 15830.372889348148, + 16268.428564133334, + 16707.16816472592, + 17146.59169112593, + 17586.69914333333, + 18027.490521348143, + 18468.965825170377, + 18911.125054799995, + 19353.968210237046, + 19797.495291481486, + 20241.706298533332, + 20686.601231392586, + 21132.180090059264, + 21578.44287453333, + 22025.389584814824, + 22473.020220903705, + 22921.334782799997, + 23370.33327050371, + 23820.01568401482, + 24270.382023333324, + 24721.432288459266, + 25173.166479392592, + 25625.58459613333, + 26078.686638681484, + 26532.472607037034, + 26986.942501199996, + 27442.096321170375, + 27897.934066948153, + 28354.45573853333, + 28811.66133592593, + 29269.550859125924, + 29728.12430813334, + 30187.381682948155, + 30647.32298357037, + 31107.948209999988, + 15484.3317054, + 15941.645245370366, + 16399.642711148153, + 16858.324102733335, + 17317.689420125924, + 17777.738663325934, + 18238.471832333336, + 18699.88892714815, + 19161.989947770377, + 19624.7748942, + 20088.243766437045, + 20552.396564481485, + 21017.233288333333, + 21482.75393799259, + 21948.958513459267, + 22415.84701473334, + 22883.41944181482, + 23351.675794703708, + 23820.616073399997, + 24290.240277903715, + 24760.54840821482, + 25231.54046433333, + 25703.216446259266, + 26175.576353992597, + 26648.62018753333, + 27122.347946881488, + 27596.75963203704, + 28071.855242999998, + 28547.63477977038, + 29024.09824234815, + 29501.245630733334, + 29979.076944925935, + 30457.592184925936, + 30936.79135073334, + 31416.674442348158, + 31897.24145977038, + 32378.49240299999, + 14674.398129160003, + 15099.063025894813, + 15524.411848437045, + 15950.44459678667, + 16377.161270943703, + 16804.561870908157, + 17232.646396680004, + 17661.414848259257, + 18090.86722564593, + 18521.003528840003, + 18951.823757841492, + 19383.327912650377, + 19815.51599326667, + 20248.38799969037, + 20681.943931921483, + 21116.183789960003, + 21551.107573805937, + 21986.715283459263, + 22423.00691892, + 22859.98248018816, + 23297.64196726371, + 23735.98538014667, + 24175.01271883705, + 24614.72398333482, + 25055.11917364, + 25496.1982897526, + 25937.961331672595, + 26380.4082994, + 26823.53919293482, + 27267.354012277046, + 27711.852757426666, + 28157.035428383708, + 28602.902025148145, + 29049.45254772001, + 29496.686996099266, + 29944.605370285928, + 30393.207670279997, + 14952.202804800001, + 15388.270044717035, + 15825.02121044149, + 16262.456301973338, + 16700.575319312593, + 17139.378262459268, + 17578.86513141334, + 18019.035926174813, + 18459.89064674371, + 18901.42929312, + 19343.651865303713, + 19786.55836329482, + 20230.148787093334, + 20674.423136699254, + 21119.381412112594, + 21565.023613333335, + 22011.349740361493, + 22458.35979319704, + 22906.05377184, + 23354.431676290384, + 23803.49350654815, + 24253.239262613333, + 24703.668944485933, + 25154.782552165932, + 25606.58008565333, + 26059.06154494816, + 26512.226930050372, + 26966.07624096, + 27420.609477677048, + 27875.826640201485, + 28331.727728533326, + 28788.31274267259, + 29245.581682619264, + 29703.53454837335, + 30162.171339934826, + 30621.492057303705, + 31081.496700479995, + 15486.802436952004, + 15943.393894597037, + 16400.669278049492, + 16858.628587309337, + 17317.27182237659, + 17776.598983251264, + 18236.610069933333, + 18697.30508242281, + 19158.684020719713, + 19620.74688482401, + 20083.493674735713, + 20546.924390454824, + 21011.039031981334, + 21475.837599315255, + 21941.3200924566, + 22407.48651140534, + 22874.336856161495, + 23341.871126725047, + 23810.089323096006, + 24278.991445274383, + 24748.577493260153, + 25218.847467053336, + 25689.80136665393, + 26161.43919206193, + 26633.76094327733, + 27106.766620300157, + 27580.45622313038, + 28054.829751768004, + 28529.887206213043, + 29005.628586465482, + 29482.053892525335, + 29959.1631243926, + 30436.95628206726, + 30915.433365549346, + 31394.594374838824, + 31874.439309935715, + 32354.968170839995, + 14663.196869650003, + 15087.015474064812, + 15511.518004287043, + 15936.70446031667, + 16362.574842153701, + 16789.129149798155, + 17216.36738325, + 17644.289542509257, + 18072.895627575926, + 18502.185638450002, + 18932.159575131485, + 19362.817437620375, + 19794.159225916665, + 20226.184940020365, + 20658.894579931486, + 21092.28814565, + 21526.36563717593, + 21961.12705450926, + 22396.572397649994, + 22832.701666598154, + 23269.514861353706, + 23707.011981916665, + 24145.193028287045, + 24584.058000464818, + 25023.60689844999, + 25463.839722242603, + 25904.756471842593, + 26346.357147249993, + 26788.64174846482, + 27231.61027548704, + 27675.262728316662, + 28119.59910695371, + 28564.61941139815, + 29010.323641650004, + 29456.711797709264, + 29903.78387957593, + 30351.539887249997, + 14946.485915250001, + 15381.622280287032, + 15817.442571131487, + 16253.946787783334, + 16691.134930242588, + 17129.006998509263, + 17567.562992583335, + 18006.802912464813, + 18446.72675815371, + 18887.33452965, + 19328.62622695371, + 19770.601850064817, + 20213.261398983333, + 20656.604873709257, + 21100.6322742426, + 21545.34360058334, + 21990.73885273149, + 22436.818030687034, + 22883.58113445, + 23331.028164020383, + 23779.15911939815, + 24227.97400058333, + 24677.47280757593, + 25127.655540375934, + 25578.522198983334, + 26030.072783398155, + 26482.30729362037, + 26935.225729649992, + 27388.82809148704, + 27843.11437913149, + 28298.08459258333, + 28753.7387318426, + 29210.076796909256, + 29667.098787783347, + 30124.80470446482, + 30583.19454695371, + 31042.268315249996, + 15490.957413330003, + 15946.465747487036, + 16402.658007451486, + 16859.534193223335, + 17317.094304802587, + 17775.338342189265, + 18234.26630538333, + 18693.87819438481, + 19154.17400919371, + 19615.153749809997, + 20076.81741623371, + 20539.165008464824, + 21002.196526503332, + 21465.911970349254, + 21930.311340002598, + 22395.394635463334, + 22861.16185673149, + 23327.613003807044, + 23794.748076689997, + 24262.56707538038, + 24731.069999878153, + 25200.256850183334, + 25670.12762629594, + 26140.68232821593, + 26611.92095594333, + 27083.843509478153, + 27556.449988820375, + 28029.74039397, + 28503.71472492704, + 28978.372981691486, + 29453.71516426333, + 29929.7412726426, + 30406.45130682926, + 30883.845266823344, + 31361.923152624822, + 31840.68496423371, + 32320.130701649992, + 14652.534265000002, + 15075.50657709481, + 15499.162814997042, + 15923.502978706669, + 16348.527068223699, + 16774.23508354815, + 17200.62702468, + 17627.702891619258, + 18055.46268436593, + 18483.906402919998, + 18913.03404728149, + 19342.845617450377, + 19773.34111342667, + 20204.52053521037, + 20636.383882801485, + 21068.9311562, + 21502.162355405937, + 21936.07748041927, + 22370.67653124, + 22805.959507868156, + 23241.926410303706, + 23678.577238546666, + 24115.911992597044, + 24553.93067245482, + 24992.633278119996, + 25432.019809592595, + 25872.090266872594, + 26312.84464996, + 26754.28295885482, + 27196.40519355704, + 27639.211354066665, + 28082.70144038371, + 28526.875452508146, + 28971.733390440007, + 29417.275254179265, + 29863.501043725926, + 30310.410759079998, + 14941.307680559998, + 15375.513170717035, + 15810.402586681486, + 16245.975928453334, + 16682.233196032586, + 17119.174389419262, + 17556.799508613334, + 17995.10855361481, + 18434.101524423706, + 18873.77842104, + 19314.139243463713, + 19755.183991694823, + 20196.912665733333, + 20639.325265579253, + 21082.4217912326, + 21526.20224269333, + 21970.66661996149, + 22415.814923037036, + 22861.64715191999, + 23308.163306610375, + 23755.36338710815, + 24203.24739341333, + 24651.815325525935, + 25101.067183445928, + 25551.00296717333, + 26001.622676708153, + 26452.92631205037, + 26904.9138732, + 27357.585360157045, + 27810.940772921484, + 28264.98011149333, + 28719.7033758726, + 29175.110566059262, + 29631.201682053343, + 30087.976723854823, + 30545.435691463706, + 31003.57858487999, + 15495.651044568003, + 15950.076255237036, + 16405.185391713487, + 16860.978453997337, + 17317.455442088587, + 17774.616355987262, + 18232.461195693337, + 18690.989961206815, + 19150.202652527707, + 19610.099269656, + 20070.679812591712, + 20531.94428133482, + 20993.892675885338, + 21456.524996243257, + 21919.841242408602, + 22383.841414381335, + 22848.525512161494, + 23313.893535749037, + 23779.945485144, + 24246.681360346378, + 24714.101161356153, + 25182.204888173335, + 25650.99254079793, + 26120.46411922993, + 26590.61962346933, + 27061.45905351615, + 27532.98240937037, + 28005.189691032, + 28478.080898501044, + 28951.656031777486, + 29425.915090861326, + 29900.858075752603, + 30376.484986451258, + 30852.795822957352, + 31329.79058527082, + 31807.469273391704, + 32285.831887319993, + 14642.410315210001, + 15064.536334984814, + 15487.346280567044, + 15910.84015195667, + 16335.017949153698, + 16759.87967215815, + 17185.42532097, + 17611.65489558925, + 18038.568396015933, + 18466.165822249997, + 18894.447174291494, + 19323.412452140376, + 19753.061655796664, + 20183.394785260363, + 20614.41184053148, + 21046.112821609997, + 21478.49772849593, + 21911.56656118926, + 22345.31931969, + 22779.75600399815, + 23214.876614113706, + 23650.681150036668, + 24087.169611767044, + 24524.341999304816, + 24962.198312649994, + 25400.7385518026, + 25839.96271676259, + 26279.87080753, + 26720.46282410482, + 27161.73876648704, + 27603.698634676664, + 28046.34242867371, + 28489.670148478148, + 28933.68179409001, + 29378.37736550926, + 29823.756862735925, + 30269.820285769994, + 14936.668100730001, + 15369.942716007034, + 15803.901257091487, + 16238.543723983334, + 16673.87011668259, + 17109.880435189265, + 17546.574679503334, + 17983.952849624813, + 18422.014945553707, + 18860.76096729, + 19300.190914833714, + 19740.304788184818, + 20181.102587343335, + 20622.584312309253, + 21064.74996308259, + 21507.599539663333, + 21951.133042051493, + 22395.350470247038, + 22840.251824249997, + 23285.837104060378, + 23732.106309678147, + 24179.059441103334, + 24626.696498335936, + 25075.017481375926, + 25524.022390223334, + 25973.711224878156, + 26424.08398534037, + 26875.14067161, + 27326.881283687042, + 27779.305821571485, + 28232.414285263327, + 28686.206674762598, + 29140.682990069257, + 29595.843231183342, + 30051.687398104827, + 30508.21549083371, + 30965.427509369998, + 15500.883330666002, + 15954.225417847034, + 16408.251430835488, + 16862.961369631335, + 17318.35523423459, + 17774.433024645263, + 18231.194740863335, + 18688.640382888814, + 19146.769950721708, + 19605.583444362, + 20065.08086380971, + 20525.262209064826, + 20986.127480127336, + 21447.676676997256, + 21909.909799674602, + 22372.826848159333, + 22836.42782245149, + 23300.71272255104, + 23765.681548457997, + 24231.334300172377, + 24697.670977694153, + 25164.691581023337, + 25632.396110159934, + 26100.784565103928, + 26569.856945855336, + 27039.613252414158, + 27510.053484780376, + 27981.177642953993, + 28452.985726935043, + 28925.47773672348, + 29398.65367231933, + 29872.513533722602, + 30347.05732093326, + 30822.285033951342, + 31298.19667277682, + 31774.792237409707, + 32252.07172785, + 14632.825020280003, + 15054.104747734811, + 15476.068400997043, + 15898.715980066669, + 16322.047484943703, + 16746.06291562815, + 17170.762272120002, + 17596.145554419254, + 18022.21276252593, + 18448.96389644, + 18876.39895616149, + 19304.51794169037, + 19733.320853026664, + 20162.807690170364, + 20592.978453121486, + 21023.83314188, + 21455.371756445933, + 21887.594296819258, + 22320.500763, + 22754.09115498815, + 23188.36547278371, + 23623.323716386665, + 24058.965885797046, + 24495.29198101482, + 24932.302002039996, + 25369.995948872594, + 25808.373821512596, + 26247.435619959997, + 26687.18134421482, + 27127.610994277038, + 27568.724570146664, + 28010.522071823707, + 28453.003499308146, + 28896.168852600007, + 29340.018131699268, + 29784.551336605928, + 30229.76846731999, + 14932.56717576, + 15364.910916157036, + 15797.938582361485, + 16231.650174373335, + 16666.04569219259, + 17101.125135819264, + 17536.888505253333, + 17973.33580049481, + 18410.46702154371, + 18848.2821684, + 19286.781241063713, + 19725.96423953482, + 20165.83116381334, + 20606.382013899252, + 21047.61678979259, + 21489.53549149333, + 21932.13811900149, + 22375.42467231704, + 22819.395151439996, + 23264.049556370377, + 23709.387887108154, + 24155.41014365333, + 24602.116326005937, + 25049.506434165927, + 25497.580468133332, + 25946.33842790815, + 26395.78031349037, + 26845.906124879995, + 27296.71586207704, + 27748.209525081485, + 28200.387113893335, + 28653.2486285126, + 29106.794068939264, + 29561.02343517334, + 30015.936727214823, + 30471.533945063708, + 30927.815088719995, + 15506.654271624, + 15958.913235317035, + 16411.856124817485, + 16865.48294012534, + 17319.793681240593, + 17774.78834816327, + 18230.466940893337, + 18686.82945943081, + 19143.87590377571, + 19601.606273927995, + 20060.02056988771, + 20519.11879165483, + 20978.900939229337, + 21439.367012611256, + 21900.517011800603, + 22362.350936797335, + 22824.868787601492, + 23288.070564213045, + 23751.956266631998, + 24216.52589485838, + 24681.779448892157, + 25147.71692873333, + 25614.338334381937, + 26081.643665837935, + 26549.632923101337, + 27018.306106172153, + 27487.663215050376, + 27957.704249735998, + 28428.429210229046, + 28899.838096529482, + 29371.930908637336, + 29844.707646552597, + 30318.168310275258, + 30792.312899805347, + 31267.141415142825, + 31742.653856287714, + 32218.85022324, + 14623.778380210004, + 15044.211815344814, + 15465.329176287045, + 15887.130463036669, + 16309.6156755937, + 16732.784813958155, + 17156.637878129997, + 17581.174868109254, + 18006.39578389593, + 18432.30062549, + 18858.88939289149, + 19286.162086100376, + 19714.118705116667, + 20142.75924994037, + 20572.083720571492, + 21002.092117009997, + 21432.784439255935, + 21864.16068730926, + 22296.22086117, + 22728.964960838155, + 23162.392986313705, + 23596.504937596663, + 24031.300814687045, + 24466.78061758482, + 24902.944346289998, + 25339.792000802598, + 25777.323581122597, + 26215.539087249996, + 26654.43851918482, + 27094.021876927043, + 27534.289160476663, + 27975.240369833704, + 28416.87550499815, + 28859.194565970003, + 29302.19755274927, + 29745.88446533593, + 30190.255303729995, + 14929.00490565, + 15360.417771167036, + 15792.514562491486, + 16225.295279623331, + 16658.759922562593, + 17092.908491309263, + 17527.740985863333, + 17963.25740622481, + 18399.457752393708, + 18836.34202437, + 19273.910222153718, + 19712.16234574482, + 20151.098395143337, + 20590.718370349252, + 21031.0222713626, + 21472.010098183328, + 21913.681850811485, + 22356.037529247038, + 22799.07713349, + 23242.800663540376, + 23687.20811939815, + 24132.299501063328, + 24578.07480853593, + 25024.534041815925, + 25471.67720090333, + 25919.504285798153, + 26368.01529650037, + 26817.21023301, + 27267.089095327043, + 27717.651883451483, + 28168.898597383326, + 28620.8292371226, + 29073.44380266926, + 29526.74229402334, + 29980.72471118482, + 30435.391054153715, + 30890.741322929996, + 15512.963867442002, + 15964.139707647033, + 16415.99947365949, + 16868.54316547934, + 17321.77078310659, + 17775.682326541264, + 18230.277795783335, + 18685.55719083281, + 19141.520511689705, + 19598.167758353997, + 20055.498930825717, + 20513.514029104823, + 20972.21305319133, + 21431.59600308526, + 21891.6628787866, + 22352.413680295336, + 22813.84840761149, + 23275.967060735038, + 23738.769639666, + 24202.25614440438, + 24666.42657495015, + 25131.28093130333, + 25596.819213463936, + 26063.04142143193, + 26529.94755520733, + 26997.537614790155, + 27465.811600180376, + 27934.769511377996, + 28404.41134838305, + 28874.737111195478, + 29345.74679981533, + 29817.440414242596, + 30289.81795447726, + 30762.87942051934, + 31236.624812368824, + 31711.05413002571, + 32186.167373489985, + 14615.270395000003, + 15034.857537814813, + 15455.128606437045, + 15876.08360086667, + 16297.7225211037, + 16720.045367148152, + 17143.052139000003, + 17566.742836659258, + 17991.117460125926, + 18416.176009400002, + 18841.918484481488, + 19268.344885370374, + 19695.455212066674, + 20123.249464570363, + 20551.727642881484, + 20980.889747, + 21410.735776925932, + 21841.265732659263, + 22272.479614199998, + 22704.377421548157, + 23136.959154703705, + 23570.22481366667, + 24004.174398437044, + 24438.807909014817, + 24874.125345399996, + 25310.126707592597, + 25746.811995592594, + 26184.181209399994, + 26622.23434901482, + 27060.971414437037, + 27500.392405666666, + 27940.497322703708, + 28381.286165548154, + 28822.75893420001, + 29264.915628659266, + 29707.75624892593, + 30151.280795, + 14925.981290400001, + 15356.463281037035, + 15787.629197481485, + 16219.479039733333, + 16652.012807792587, + 17085.230501659265, + 17519.132121333332, + 17953.71766681481, + 18388.98713810371, + 18824.9405352, + 19261.577858103712, + 19698.89910681482, + 20136.904281333336, + 20575.59338165925, + 21014.966407792595, + 21455.023359733328, + 21895.76423748149, + 22337.189041037043, + 22779.2977704, + 23222.09042557038, + 23665.567006548146, + 24109.727513333328, + 24554.57194592593, + 25000.100304325926, + 25446.31258853333, + 25893.208798548152, + 26340.788934370372, + 26789.052995999995, + 27238.000983437043, + 27687.632896681484, + 28137.948735733327, + 28588.948500592593, + 29040.632191259258, + 29492.999807733344, + 29946.051350014815, + 30399.786818103705, + 30854.206211999997, + 15519.812118120002, + 15969.904834837032, + 16420.681477361486, + 16872.142045693337, + 17324.28653983259, + 17777.114959779265, + 18230.627305533337, + 18684.823577094816, + 19139.70377446371, + 19595.267897640002, + 20051.515946623713, + 20508.44792141482, + 20966.063822013333, + 21424.363648419258, + 21883.3474006326, + 22343.015078653338, + 22803.36668248149, + 23264.402212117042, + 23726.121667559997, + 24188.525048810377, + 24651.61235586816, + 25115.383588733333, + 25579.83874740594, + 26044.977831885928, + 26510.800842173332, + 26977.307778268154, + 27444.49864017037, + 27912.373427879997, + 28380.932141397047, + 28850.17478072149, + 29320.101345853334, + 29790.7118367926, + 30262.006253539268, + 30733.98459609335, + 31206.646864454822, + 31679.99305862371, + 32154.023178599993, + 14607.301064650002, + 15026.041915144811, + 15445.466691447044, + 15865.57539355667, + 16286.3680214737, + 16707.844575198153, + 17130.00505473, + 17552.849460069257, + 17976.37779121593, + 18400.59004817, + 18825.48623093149, + 19251.066339500372, + 19677.330373876663, + 20104.278334060364, + 20531.910220051486, + 20960.22603185, + 21389.225769455934, + 21818.909432869263, + 22249.27702209, + 22680.328537118156, + 23112.063977953705, + 23544.48334459667, + 23977.586637047043, + 24411.37385530482, + 24845.844999369998, + 25281.0000692426, + 25716.839064922595, + 26153.361986409996, + 26590.568833704823, + 27028.45960680704, + 27467.03430571667, + 27906.292930433712, + 28346.235480958152, + 28786.861957290013, + 29228.172359429274, + 29670.16668737593, + 30112.844941129995, + 14923.49633001, + 15353.047445767033, + 15783.282487331488, + 16214.201454703336, + 16645.804347882593, + 17078.091166869264, + 17511.06191166333, + 17944.71658226481, + 18379.055178673705, + 18814.077700890004, + 19249.78414891371, + 19686.174522744823, + 20123.248822383335, + 20561.00704782925, + 20999.4491990826, + 21438.575276143332, + 21878.38527901149, + 22318.879207687038, + 22760.057062169995, + 23201.91884246038, + 23644.464548558153, + 24087.69418046333, + 24531.607738175935, + 24976.20522169593, + 25421.48663102333, + 25867.451966158154, + 26314.101227100367, + 26761.434413849995, + 27209.451526407047, + 27658.15256477148, + 28107.537528943325, + 28557.606418922598, + 29008.359234709256, + 29459.795976303343, + 29911.916643704822, + 30364.721236913705, + 30818.20975593, + 15527.199023658002, + 15976.208616887034, + 16425.90213592349, + 16876.279580767336, + 17327.340951418588, + 17779.086247877265, + 18231.515470143335, + 18684.62861821681, + 19138.425692097713, + 19592.906691786004, + 20048.071617281716, + 20503.92046858482, + 20960.453245695335, + 21417.669948613253, + 21875.5705773386, + 22334.155131871335, + 22793.423612211496, + 23253.37601835904, + 23714.012350314002, + 24175.33260807638, + 24637.336791646154, + 25100.02490102333, + 25563.396936207937, + 26027.45289719993, + 26492.192783999333, + 26957.61659660616, + 27423.72433502038, + 27890.515999242005, + 28357.99158927105, + 28826.151105107485, + 29294.994546751328, + 29764.5219142026, + 30234.733207461268, + 30705.628426527346, + 31177.207571400824, + 31649.47064208171, + 32122.41763856999, + 14599.87038916, + 15017.764947334812, + 15436.343431317044, + 15855.605841106666, + 16275.552176703699, + 16696.18243810815, + 17117.496625319996, + 17539.494738339257, + 17962.176777165925, + 18385.542741800004, + 18809.59263224149, + 19234.326448490374, + 19659.74419054667, + 20085.84585841036, + 20512.631452081485, + 20940.10097156, + 21368.254416845935, + 21797.09178793926, + 22226.613084839995, + 22656.818307548154, + 23087.7074560637, + 23519.28053038667, + 23951.537530517046, + 24384.478456454817, + 24818.1033082, + 25252.412085752596, + 25687.4047891126, + 26123.081418279995, + 26559.44197325482, + 26996.486454037033, + 27434.21486062667, + 27872.627193023705, + 28311.723451228147, + 28751.50363524001, + 29191.96774505926, + 29633.115780685926, + 30074.947742119995, + 14921.55002448, + 15350.170265357036, + 15779.474432041487, + 16209.462524533335, + 16640.134542832588, + 17071.490486939263, + 17503.530356853335, + 17936.254152574813, + 18369.66187410371, + 18803.753521439998, + 19238.52909458371, + 19673.98859353482, + 20110.132018293334, + 20546.959368859254, + 20984.470645232595, + 21422.66584741333, + 21861.544975401488, + 22301.10802919704, + 22741.3550088, + 23182.285914210373, + 23623.900745428153, + 24066.199502453328, + 24509.18218528594, + 24952.848793925932, + 25397.199328373328, + 25842.233788628153, + 26287.952174690367, + 26734.354486559998, + 27181.44072423704, + 27629.210887721485, + 28077.664977013326, + 28526.8029921126, + 28976.624933019255, + 29427.130799733346, + 29878.320592254815, + 30330.194310583705, + 30782.751954719995, + 15535.124584056002, + 15983.051053797035, + 16431.661449345487, + 16880.955770701337, + 17330.93401786459, + 17781.596190835266, + 18232.942289613336, + 18684.972314198814, + 19137.68626459171, + 19591.084140791998, + 20045.165942799715, + 20499.93167061482, + 20955.381324237336, + 21411.514903667256, + 21868.332408904596, + 22325.83383994933, + 22784.01919680149, + 23242.88847946104, + 23702.441687927992, + 24162.67882220238, + 24623.599882284158, + 25085.204868173336, + 25547.49377986994, + 26010.466617373928, + 26474.12338068533, + 26938.464069804155, + 27403.488684730375, + 27869.197225464, + 28335.58969200504, + 28802.66608435348, + 29270.42640250933, + 29738.870646472595, + 30207.998816243256, + 30677.810911821343, + 31148.306933206823, + 31619.486880399712, + 32091.350753399995, + 14592.978368530004, + 15010.026634384812, + 15427.758826047046, + 15846.17494351667, + 16265.274986793702, + 16685.058955878154, + 17105.526850770006, + 17526.678671469257, + 17948.51441797593, + 18371.034090290002, + 18794.237688411493, + 19218.12521234038, + 19642.696662076665, + 20067.952037620365, + 20493.891338971487, + 20920.514566129998, + 21347.821719095933, + 21775.812797869265, + 22204.487802449996, + 22633.846732838156, + 23063.889589033708, + 23494.616371036667, + 23926.027078847044, + 24358.121712464817, + 24790.900271889997, + 25224.362757122602, + 25658.509168162596, + 26093.339505009997, + 26528.853767664823, + 26965.05195612704, + 27401.934070396666, + 27839.500110473713, + 28277.750076358145, + 28716.683968050012, + 29156.301785549265, + 29596.60352885593, + 30037.589197969995, + 14920.142373810002, + 15347.831739807034, + 15776.205031611487, + 16205.262249223331, + 16635.00339264259, + 17065.42846186926, + 17496.537456903334, + 17928.330377744805, + 18360.80722439371, + 18793.96799685, + 19227.812695113716, + 19662.34131918482, + 20097.553869063333, + 20533.450344749253, + 20970.03074624259, + 21407.29507354333, + 21845.24332665149, + 22283.87550556704, + 22723.191610289996, + 23163.191640820376, + 23603.875597158145, + 24045.24347930333, + 24487.295287255936, + 24930.03102101593, + 25373.45068058333, + 25817.55426595815, + 26262.34177714037, + 26707.813214129998, + 27153.968576927044, + 27600.807865531482, + 28048.331079943324, + 28496.538220162605, + 28945.42928618926, + 29395.00427802334, + 29845.263195664822, + 30296.206039113706, + 30747.83280837, + 15543.588799314004, + 15990.432145567042, + 16437.959417627488, + 16886.17061549534, + 17335.065739170594, + 17784.644788653266, + 18234.907763943338, + 18685.854665040813, + 19137.48549194571, + 19589.800244658003, + 20042.798923177717, + 20496.48152750482, + 20950.848057639334, + 21405.898513581255, + 21861.6328953306, + 22318.051202887335, + 22775.153436251494, + 23232.939595423042, + 23691.409680402, + 24150.56369118838, + 24610.401627782154, + 25070.923490183333, + 25532.129278391934, + 25994.01899240793, + 26456.592632231335, + 26919.850197862153, + 27383.79168930037, + 27848.417106546003, + 28313.726449599046, + 28779.71971845948, + 29246.396913127337, + 29713.7580336026, + 30181.803079885263, + 30650.53205197534, + 31119.944949872825, + 31590.04177357771, + 32060.822523089995, + 14586.625002760002, + 15002.826976294813, + 15419.712875637046, + 15837.282700786669, + 16255.536451743701, + 16674.47412850815, + 17094.09573108, + 17514.401259459257, + 17935.39071364593, + 18357.064093639998, + 18779.42139944149, + 19202.462631050374, + 19626.18778846667, + 20050.59687169037, + 20475.689880721486, + 20901.466815559997, + 21327.92767620593, + 21755.072462659267, + 22182.901174919993, + 22611.413812988158, + 23040.610376863708, + 23470.490866546665, + 23901.055282037043, + 24332.30362333482, + 24764.23589044, + 25196.852083352594, + 25630.152202072593, + 26064.1362466, + 26498.804216934823, + 26934.156113077042, + 27370.191935026665, + 27806.91168278371, + 28244.31535634815, + 28682.402955720016, + 29121.174480899266, + 29560.629931885927, + 30000.76930868, + 14919.273378000004, + 15346.031869117036, + 15773.474286041486, + 16201.600628773338, + 16630.41089731259, + 17059.905091659264, + 17490.083211813337, + 17920.945257774812, + 18352.49122954371, + 18784.72112712, + 19217.63495050371, + 19651.232699694825, + 20085.51437469334, + 20520.479975499253, + 20956.1295021126, + 21392.462954533337, + 21829.48033276149, + 22267.181636797042, + 22705.566866639998, + 23144.63602229038, + 23584.389103748155, + 24024.826111013328, + 24465.947044085937, + 24907.751902965934, + 25350.240687653328, + 25793.413398148154, + 26237.270034450372, + 26681.810596559993, + 27127.035084477044, + 27572.94349820149, + 28019.535837733332, + 28466.8121030726, + 28914.772294219263, + 29363.41641117334, + 29812.744453934818, + 30262.75642250371, + 30713.452316879997, + 15552.591669432002, + 15998.351892197034, + 16444.796040769488, + 16891.92411514934, + 17339.736115336593, + 17788.232041331266, + 18237.411893133336, + 18687.275670742813, + 19137.823374159707, + 19589.055003383997, + 20040.970558415713, + 20493.57003925482, + 20946.853445901335, + 21400.820778355253, + 21855.472036616597, + 22310.807220685332, + 22766.82633056149, + 23223.52936624504, + 23680.916327736002, + 24138.987215034384, + 24597.742028140154, + 25057.180767053334, + 25517.303431773937, + 25978.11002230193, + 26439.60053863733, + 26901.774980780152, + 27364.633348730375, + 27828.175642488, + 28292.401862053048, + 28757.31200742548, + 29222.906078605334, + 29689.1840755926, + 30156.14599838727, + 30623.79184698934, + 31092.121621398823, + 31561.135321615704, + 32030.832947639992, + 14583.973277040892, + 14999.798989010227, + 15416.308626786986, + 15833.50219037114, + 16251.379679762704, + 16669.941094961683, + 17089.18643596806, + 17509.11570278184, + 17929.72889540304, + 18351.02601383164, + 18773.00705806766, + 19195.672028111076, + 19619.020923961893, + 20043.053745620116, + 20467.770493085765, + 20893.17116635881, + 21319.25576543927, + 21746.02429032713, + 22173.476741022387, + 22601.613117525078, + 23030.43341983516, + 23459.937647952647, + 23890.12580187755, + 24320.99788160985, + 24752.553887149556, + 25184.79381849669, + 25617.71767565121, + 26051.32545861314, + 26485.617167382494, + 26920.592801959243, + 27356.2523623434, + 27792.59584853497, + 28229.623260533936, + 28667.33459834032, + 29105.729861954103, + 29544.809051375298, + 29984.57216660389, + 14919.060003165107, + 15345.40462731049, + 15772.433177263296, + 16200.145653023494, + 16628.5420545911, + 17057.62238196613, + 17487.386635148552, + 17917.834814138376, + 18348.966918935632, + 18780.782949540273, + 19213.282905952332, + 19646.466788171798, + 20080.33459619866, + 20514.886330032932, + 20950.121989674626, + 21386.041575123716, + 21822.645086380227, + 22259.932523444128, + 22697.903886315435, + 23136.559174994167, + 23575.8983894803, + 24015.921529773826, + 24456.628595874783, + 24898.019587783132, + 25340.094505498884, + 25782.853349022058, + 26226.296118352624, + 26670.422813490608, + 27115.233434436002, + 27560.727981188793, + 28006.90645374899, + 28453.76885211661, + 28901.31517629163, + 29349.545426274064, + 29798.459602063893, + 30248.057703661132, + 30698.33973106577, + 15556.767326188698, + 16002.045992250964, + 16448.00858412065, + 16894.655101797733, + 17341.985545282223, + 17789.999914574135, + 18238.698209673435, + 18688.08043058015, + 19138.146577294283, + 19588.896649815808, + 20040.33064814476, + 20492.4485722811, + 20945.25042222485, + 21398.736197976006, + 21852.90589953458, + 22307.759526900554, + 22763.29708007395, + 23219.518559054733, + 23676.423963842924, + 24134.013294438544, + 24592.286550841553, + 25051.24373305196, + 25510.88484106981, + 25971.209874895034, + 26432.21883452767, + 26893.911719967728, + 27356.288531215185, + 27819.34926827004, + 28283.093931132324, + 28747.522519801994, + 29212.63503427908, + 29678.43147456359, + 30144.91184065548, + 30612.076132554805, + 31079.92435026151, + 31548.45649377564, + 32017.672563097156, + 14580.810291850003, + 14996.165973064815, + 15412.205580087046, + 15828.92911291667, + 16246.336571553702, + 16664.42795599816, + 17083.20326625, + 17502.662502309257, + 17922.805664175932, + 18343.632751850004, + 18765.143765331493, + 19187.33870462038, + 19610.21756971667, + 20033.780360620367, + 20458.027077331488, + 20882.95771985, + 21308.572288175936, + 21734.870782309263, + 22161.853202249997, + 22589.519547998156, + 23017.86981955371, + 23446.90401691667, + 23876.622140087045, + 24307.024189064818, + 24738.11016385, + 25169.8800644426, + 25602.33389084259, + 26035.471643049998, + 26469.29332106482, + 26903.798924887044, + 27338.988454516664, + 27774.861909953714, + 28211.41929119815, + 28648.660598250004, + 29086.585831109263, + 29525.194989775926, + 29964.488074249995, + 14918.943037050001, + 15344.770653287034, + 15771.282195331487, + 16198.477663183336, + 16626.35705684259, + 17054.920376309266, + 17484.167621583336, + 17914.09879266481, + 18344.71388955371, + 18776.01291225, + 19207.995860753712, + 19640.662735064823, + 20074.013535183334, + 20508.048261109256, + 20942.7669128426, + 21378.169490383334, + 21814.255993731495, + 22251.02642288704, + 22688.48077785, + 23126.619058620377, + 23565.441265198155, + 24004.94739758333, + 24445.137455775934, + 24886.01143977594, + 25327.569349583337, + 25769.811185198156, + 26212.736946620375, + 26656.346633850004, + 27100.640246887047, + 27545.617785731487, + 27991.27925038333, + 28437.6246408426, + 28884.653957109265, + 29332.36719918334, + 29780.764367064818, + 30229.84546075371, + 30679.610480249994, + 15562.133194410004, + 16006.810293687038, + 16452.17131877149, + 16898.21626966333, + 17344.945146362592, + 17792.357948869263, + 18240.454677183337, + 18689.23533130481, + 19138.69991123371, + 19588.84841697, + 20039.680848513715, + 20491.19720586482, + 20943.397489023333, + 21396.281697989256, + 21849.849832762604, + 22304.101893343337, + 22759.03787973149, + 23214.657791927042, + 23670.96162993, + 24127.94939374038, + 24585.621083358154, + 25043.976698783335, + 25503.016240015935, + 25962.73970705593, + 26423.147099903334, + 26884.238418558154, + 27346.01366302037, + 27808.47283329, + 28271.61592936705, + 28735.442951251487, + 29199.95389894333, + 29665.1487724426, + 30131.02757174927, + 30597.590296863345, + 31064.836947784825, + 31532.767524513703, + 32001.38202705, + 14575.534235800002, + 14990.043624694812, + 15405.236939397042, + 15821.114179906666, + 16237.6753462237, + 16654.920438348152, + 17072.849456280004, + 17491.462400019256, + 17910.759269565933, + 18330.74006492, + 18751.40478608149, + 19172.753433050377, + 19594.786005826663, + 20017.502504410364, + 20440.90292880149, + 20864.987279, + 21289.755555005937, + 21715.20775681926, + 22141.343884439997, + 22568.16393786815, + 22995.667917103703, + 23423.855822146666, + 23852.72765299704, + 24282.283409654818, + 24712.523092119998, + 25143.4467003926, + 25575.054234472595, + 26007.34569436, + 26440.321080054822, + 26873.980391557037, + 27308.323628866667, + 27743.35079198371, + 28179.061880908142, + 28615.456895640007, + 29052.535836179268, + 29490.29870252593, + 29928.745494680003, + 14919.151350960003, + 15344.048092317034, + 15769.628759481486, + 16195.893352453331, + 16622.841871232587, + 17050.474315819265, + 17478.790686213335, + 17907.790982414812, + 18337.47520442371, + 18767.84335224, + 19198.89542586371, + 19630.631425294818, + 20063.051350533337, + 20496.155201579255, + 20929.9429784326, + 21364.41468109333, + 21799.57030956149, + 22235.40986383704, + 22671.933343919995, + 23109.14074981038, + 23547.03208150815, + 23985.60733901333, + 24424.866522325934, + 24864.809631445925, + 25305.43666637333, + 25746.747627108154, + 26188.742513650366, + 26631.421325999996, + 27074.784064157044, + 27518.830728121487, + 27963.56131789333, + 28408.975833472603, + 28855.074274859257, + 29301.856642053346, + 29749.322935054814, + 30197.47315386371, + 30646.307298479995, + 15572.213374248004, + 16015.807350037036, + 16460.085251633485, + 16905.047079037337, + 17350.69283224859, + 17797.022511267267, + 18244.036116093335, + 18691.733646726814, + 19140.115103167707, + 19589.180485415996, + 20038.929793471718, + 20489.36302733482, + 20940.480187005334, + 21392.281272483255, + 21844.7662837686, + 22297.935220861335, + 22751.788083761494, + 23206.324872469042, + 23661.545586984, + 24117.450227306374, + 24574.038793436157, + 25031.311285373333, + 25489.26770311793, + 25947.90804666993, + 26407.23231602933, + 26867.24051119616, + 27327.932632170377, + 27789.308678952002, + 28251.368651541045, + 28714.11254993749, + 29177.540374141336, + 29641.6521241526, + 30106.447799971265, + 30571.927401597346, + 31038.090929030826, + 31504.938382271714, + 31972.469761319997, + 14570.796834610002, + 14984.459931184816, + 15398.806953567042, + 15813.83790175667, + 16229.5527757537, + 16645.951575558156, + 17063.034301170002, + 17480.80095258926, + 17899.25152981593, + 18318.38603285, + 18738.204461691494, + 19158.706816340382, + 19579.893096796666, + 20001.76330306037, + 20424.31743513149, + 20847.55549301, + 21271.477476695938, + 21696.083386189264, + 22121.37322149, + 22547.346982598152, + 22974.004669513703, + 23401.346282236667, + 23829.37182076705, + 24258.081285104814, + 24687.474675250003, + 25117.551991202592, + 25548.3132329626, + 25979.758400529998, + 26411.887493904822, + 26844.700513087042, + 27278.197458076673, + 27712.37832887371, + 28147.24312547815, + 28582.79184789001, + 29019.024496109272, + 29455.941070135927, + 29893.54156997, + 14919.898319730002, + 15343.864186207036, + 15768.513978491486, + 16193.847696583336, + 16619.86534048259, + 17046.566910189267, + 17473.952405703338, + 17902.021827024815, + 18330.77517415371, + 18760.21244709, + 19190.33364583371, + 19621.13877038482, + 20052.627820743335, + 20484.800796909254, + 20917.6576988826, + 21351.19852666333, + 21785.423280251493, + 22220.331959647043, + 22655.92456485, + 23092.20109586038, + 23529.161552678146, + 23966.805935303335, + 24405.134243735938, + 24844.146477975934, + 25283.842638023336, + 25724.222723878156, + 26165.286735540376, + 26607.034673009995, + 27049.466536287047, + 27492.582325371488, + 27936.382040263325, + 28380.865680962597, + 28826.033247469262, + 29271.884739783345, + 29718.42015790482, + 30165.63950183371, + 30613.542771569995, + 15582.832208946005, + 16025.343061247035, + 16468.537839355493, + 16912.416543271338, + 17356.979172994594, + 17802.225728525264, + 18248.15620986334, + 18694.770617008813, + 19142.06894996171, + 19590.051208722, + 20038.71739328972, + 20488.067503664824, + 20938.101539847336, + 21388.81950183725, + 21840.2213896346, + 22292.307203239336, + 22745.076942651493, + 23198.530607871042, + 23652.668198898, + 24107.489715732376, + 24562.995158374153, + 25019.184526823337, + 25476.05782107994, + 25933.615041143934, + 26391.856187015328, + 26850.781258694155, + 27310.390256180377, + 27770.683179474003, + 28231.660028575046, + 28693.32080348348, + 29155.665504199333, + 29618.694130722597, + 30082.406683053265, + 30546.80316119135, + 31011.88356513682, + 31477.647894889713, + 31944.096150449997, + 14566.59808828, + 14979.414892534814, + 15392.91562259704, + 15807.100278466667, + 16221.968860143705, + 16637.52136762815, + 17053.75780092, + 17470.67816001926, + 17888.282444925935, + 18306.570655639996, + 18725.542792161486, + 19145.198854490376, + 19565.53884262666, + 19986.56275657037, + 20408.270596321483, + 20830.66236188, + 21253.738053245932, + 21677.49767041926, + 22101.941213399998, + 22527.068682188154, + 22952.880076783706, + 23379.375397186664, + 23806.554643397045, + 24234.417815414818, + 24662.964913239997, + 25092.1959368726, + 25522.110886312592, + 25952.709761559996, + 26383.99256261482, + 26815.95928947704, + 27248.60994214666, + 27681.94452062371, + 28115.96302490815, + 28550.66545500001, + 28986.051810899262, + 29422.122092605918, + 29858.876300119988, + 14921.18394336, + 15344.218934957036, + 15767.937852361487, + 16192.340695573335, + 16617.427464592587, + 17043.198159419266, + 17469.652780053333, + 17896.791326494807, + 18324.61379874371, + 18753.1201968, + 19182.31052066371, + 19612.18477033482, + 20042.742945813334, + 20473.985047099253, + 20905.911074192594, + 21338.521027093328, + 21771.814905801493, + 22205.79271031704, + 22640.45444063999, + 23075.80009677038, + 23511.829678708153, + 23948.543186453324, + 24385.94062000593, + 24824.02197936593, + 25262.78726453333, + 25702.23647550815, + 26142.36961229037, + 26583.186674880002, + 27024.687663277044, + 27466.87257748148, + 27909.74141749333, + 28353.2941833126, + 28797.53087493926, + 29242.451492373337, + 29688.056035614816, + 30134.34450466371, + 30581.316899519996, + 15593.989698504001, + 16035.417427317032, + 16477.52908193749, + 16920.32466236534, + 17363.804168600593, + 17807.967600643267, + 18252.81495849333, + 18698.34624215081, + 19144.56145161571, + 19591.460586888003, + 20039.043647967712, + 20487.31063485482, + 20936.261547549337, + 21385.896386051256, + 21836.215150360593, + 22287.217840477333, + 22738.90445640149, + 23191.274998133034, + 23644.329465672, + 24098.06785901838, + 24552.49017817215, + 25007.59642313333, + 25463.386593901938, + 25919.86069047793, + 26377.01871286133, + 26834.860661052153, + 27293.386535050373, + 27752.596334855993, + 28212.49006046904, + 28673.067711889486, + 29134.32928911733, + 29596.2747921526, + 30058.904220995268, + 30522.21757564534, + 30986.214856102823, + 31450.896062367705, + 31916.261194439998, + 14562.937996810002, + 14974.908508744811, + 15387.56294648704, + 15800.90131003667, + 16214.923599393704, + 16629.629814558153, + 17045.01995553, + 17461.094022309255, + 17877.852014895932, + 18295.293933290002, + 18713.41977749149, + 19132.229547500378, + 19551.723243316665, + 19971.900864940366, + 20392.762412371485, + 20814.30788561, + 21236.53728465593, + 21659.450609509266, + 22083.047860169998, + 22507.329036638155, + 22932.29413891371, + 23357.943166996665, + 23784.276120887043, + 24211.29300058482, + 24638.993806089995, + 25067.378537402597, + 25496.4471945226, + 25926.199777449998, + 26356.636286184825, + 26787.75672072704, + 27219.561081076667, + 27652.049367233707, + 28085.221579198147, + 28519.077716970012, + 28953.617780549266, + 29388.84176993593, + 29824.74968513, + 14923.008221850001, + 15345.112338567034, + 15767.900381091484, + 16191.372349423333, + 16615.52824356259, + 17040.368063509264, + 17465.891809263332, + 17892.09948082481, + 18318.991078193707, + 18746.56660137, + 19174.826050353713, + 19603.76942514482, + 20033.39672574333, + 20463.707952149252, + 20894.703104362598, + 21326.382182383335, + 21758.745186211483, + 22191.79211584704, + 22625.52297129, + 23059.93775254038, + 23495.036459598155, + 23930.819092463327, + 24367.28565113593, + 24804.43613561593, + 25242.27054590333, + 25680.788881998153, + 26119.99114390037, + 26559.877331609998, + 27000.447445127043, + 27441.701484451478, + 27883.639449583326, + 28326.261340522597, + 28769.567157269263, + 29213.55689982335, + 29658.23056818482, + 30103.588162353706, + 30549.629682329996, + 15605.685842922001, + 16046.030448247035, + 16487.058979379486, + 16928.771436319337, + 17371.16781906659, + 17814.248127621264, + 18258.012361983336, + 18702.46052215281, + 19147.59260812971, + 19593.408619914, + 20039.908557505714, + 20487.09242090482, + 20934.960210111338, + 21383.511925125254, + 21832.7475659466, + 22282.667132575334, + 22733.270625011493, + 23184.55804325504, + 23636.529387306, + 24089.184657164376, + 24542.523852830152, + 24996.54697430333, + 25451.254021583936, + 25906.64499467193, + 26362.71989356733, + 26819.478718270155, + 27276.92146878038, + 27735.048145098004, + 28193.858747223047, + 28653.35327515548, + 29113.531728895334, + 29574.394108442608, + 30035.940413797263, + 30498.170644959348, + 30961.08480192882, + 31424.682884705715, + 31888.964893289995, + 14559.8165602, + 14970.940779814811, + 15382.74892523704, + 15795.240996466668, + 16208.4169935037, + 16622.276916348153, + 17036.820764999997, + 17452.048539459258, + 17867.96023972593, + 18284.555865799997, + 18701.83541768149, + 19119.798895370375, + 19538.446298866664, + 19957.777628170363, + 20377.792883281487, + 20798.492064199996, + 21219.87517092593, + 21641.94220345926, + 22064.693161799994, + 22488.128045948153, + 22912.246855903704, + 23337.049591666662, + 23762.536253237038, + 24188.706840614817, + 24615.561353799996, + 25043.0997927926, + 25471.322157592593, + 25900.228448199996, + 26329.818664614817, + 26760.09280683704, + 27191.050874866665, + 27622.692868703703, + 28055.018788348145, + 28488.02863380001, + 28921.72240505926, + 29356.10010212593, + 29791.161724999994, + 14925.3711552, + 15346.544397037032, + 15768.401564681486, + 16190.94265813333, + 16614.16767739259, + 17038.076622459266, + 17462.669493333335, + 17887.94629001481, + 18313.907012503703, + 18740.5516608, + 19167.88023490371, + 19595.89273481482, + 20024.589160533335, + 20453.969512059248, + 20884.033789392597, + 21314.78199253333, + 21746.21412148149, + 22178.33017623704, + 22611.130156799998, + 23044.61406317038, + 23478.781895348147, + 23913.633653333323, + 24349.16933712593, + 24785.388946725932, + 25222.292482133333, + 25659.87994334815, + 26098.151330370372, + 26537.106643199993, + 26976.74588183704, + 27417.069046281485, + 27858.07613653333, + 28299.7671525926, + 28742.142094459254, + 29185.200962133345, + 29628.943755614815, + 30073.370474903702, + 30518.48111999999, + 15617.9206422, + 16057.18212403703, + 16497.12753168149, + 16937.756865133335, + 17379.07012439259, + 17821.067309459264, + 18263.748420333337, + 18707.113457014813, + 19151.162419503707, + 19595.8953078, + 20041.312121903713, + 20487.412861814824, + 20934.19752753333, + 21381.666119059257, + 21829.8186363926, + 22278.65507953333, + 22728.175448481492, + 23178.379743237037, + 23629.267963799997, + 24080.84011017038, + 24533.096182348152, + 24986.03618033333, + 25439.660104125935, + 25893.96795372593, + 26348.959729133327, + 26804.635430348157, + 27260.99505737037, + 27718.038610199997, + 28175.766088837045, + 28634.177493281484, + 29093.27282353333, + 29553.052079592602, + 30013.515261459266, + 30474.662369133344, + 30936.493402614826, + 31399.00836190371, + 31862.207246999995, + 14557.233778450005, + 14967.511705744815, + 15378.473558847045, + 15790.119337756669, + 16202.449042473703, + 16615.46267299815, + 17029.160229330002, + 17443.541711469254, + 17858.607119415934, + 18274.35645317, + 18690.789712731494, + 19107.906898100377, + 19525.70800927667, + 19944.193046260367, + 20363.36200905148, + 20783.21489765, + 21203.751712055935, + 21624.972452269267, + 22046.877118289998, + 22469.465710118155, + 22892.738227753707, + 23316.694671196663, + 23741.335040447048, + 24166.65933550482, + 24592.667556370005, + 25019.359703042603, + 25446.735775522597, + 25874.79577381, + 26303.539697904824, + 26732.96754780704, + 27163.079323516668, + 27593.87502503371, + 28025.354652358146, + 28457.51820549001, + 28890.365684429267, + 29323.89708917593, + 29758.112419729998, + 14928.272743410003, + 15348.515110367036, + 15769.441403131488, + 16191.051621703335, + 16613.34576608259, + 17036.323836269265, + 17459.985832263334, + 17884.331754064813, + 18309.361601673707, + 18735.075375089997, + 19161.473074313715, + 19588.55469934482, + 20016.320250183333, + 20444.769726829254, + 20873.903129282597, + 21303.72045754333, + 21734.221711611488, + 22165.406891487037, + 22597.27599717, + 23029.82902866038, + 23463.065985958154, + 23896.986869063327, + 24331.591677975935, + 24766.88041269593, + 25202.853073223327, + 25639.509659558153, + 26076.85017170037, + 26514.87460965, + 26953.582973407043, + 27392.975262971482, + 27833.051478343325, + 28273.8116195226, + 28715.255686509263, + 29157.383679303348, + 29600.195597904825, + 30043.69144231371, + 30487.871212529993, + 15630.694096338006, + 16068.872454687036, + 16507.73473884349, + 16947.28094880734, + 17387.511084578593, + 17828.425146157264, + 18270.02313354334, + 18712.305046736812, + 19155.27088573771, + 19598.920650546002, + 20043.25434116171, + 20488.271957584824, + 20933.973499815336, + 21380.35896785326, + 21827.428361698596, + 22275.181681351332, + 22723.61892681149, + 23172.74009807904, + 23622.545195154, + 24073.03421803638, + 24524.207166726155, + 24976.064041223333, + 25428.604841527937, + 25881.82956763993, + 26335.738219559335, + 26790.330797286155, + 27245.60730082038, + 27701.567730162005, + 28158.212085311046, + 28615.540366267487, + 29073.55257303133, + 29532.2487056026, + 29991.62876398126, + 30451.692748167345, + 30912.440658160827, + 31373.87249396171, + 31835.988255569995, + 14555.189651560002, + 14964.621286534817, + 15374.736847317045, + 15785.536333906672, + 16197.019746303702, + 16609.187084508154, + 17022.038348520004, + 17435.573538339257, + 17849.79265396593, + 18264.695695400005, + 18680.282662641494, + 19096.553555690378, + 19513.50837454667, + 19931.147119210364, + 20349.46978968149, + 20768.47638596, + 21188.166908045936, + 21608.541355939265, + 22029.599729640002, + 22451.342029148156, + 22873.768254463706, + 23296.878405586667, + 23720.672482517046, + 24145.150485254824, + 24570.312413800002, + 24996.158268152598, + 25422.688048312597, + 25849.901754280003, + 26277.799386054827, + 26706.380943637047, + 27135.64642702667, + 27565.595836223714, + 27996.229171228144, + 28427.546432040013, + 28859.547618659268, + 29292.23273108593, + 29725.60176932, + 14931.712986480003, + 15351.024478557034, + 15771.019896441489, + 16191.699240133332, + 16613.062509632593, + 17035.109704939267, + 17457.840826053336, + 17881.255872974813, + 18305.354845703707, + 18730.13774424, + 19155.604568583713, + 19581.75531873482, + 20008.589994693335, + 20436.108596459257, + 20864.311124032592, + 21293.19757741333, + 21722.767956601492, + 22153.022261597038, + 22583.960492399994, + 23015.582649010375, + 23447.88873142815, + 23880.87873965333, + 24314.55267368594, + 24748.91053352593, + 25183.952319173328, + 25619.678030628154, + 26056.087667890373, + 26493.18123096, + 26930.958719837043, + 27369.420134521482, + 27808.565475013333, + 28248.394741312593, + 28688.907933419254, + 29130.10505133335, + 29571.986095054817, + 30014.55106458371, + 30457.79995991999, + 15644.006205336005, + 16081.101440197035, + 16518.88060086549, + 16957.343687341337, + 17396.49069962459, + 17836.321637715264, + 18276.83650161334, + 18718.035291318818, + 19159.918006831715, + 19602.484648152, + 20045.735215279718, + 20489.669708214824, + 20934.288126957337, + 21379.590471507254, + 21825.5767418646, + 22272.24693802934, + 22719.601060001496, + 23167.63910778104, + 23616.361081368002, + 24065.766980762382, + 24515.856805964155, + 24966.630556973338, + 25418.08823378994, + 25870.229836413935, + 26323.055364845335, + 26776.56481908416, + 27230.758199130378, + 27685.635504984, + 28141.196736645048, + 28597.441894113486, + 29054.370977389328, + 29511.9839864726, + 29970.280921363268, + 30429.261782061345, + 30888.92656856683, + 31349.2752808797, + 31810.307918999995, + 14553.68417953, + 14962.269522184812, + 15371.538790647044, + 15781.491984916669, + 16192.1291049937, + 16603.450150878154, + 17015.455122569998, + 17428.144020069256, + 17841.516843375928, + 18255.57359249, + 18670.31426741149, + 19085.738868140375, + 19501.847394676664, + 19918.639847020364, + 20336.11622517149, + 20754.27652912999, + 21173.12075889593, + 21592.648914469257, + 22012.86099585, + 22433.757003038154, + 22855.336936033702, + 23277.60079483666, + 23700.548579447044, + 24124.180289864813, + 24548.49592609, + 24973.495488122597, + 25399.17897596259, + 25825.54638961, + 26252.59772906482, + 26680.33299432704, + 27108.752185396665, + 27537.855302273707, + 27967.642344958145, + 28398.113313450005, + 28829.268207749254, + 29261.107027855924, + 29693.62977377, + 14935.691884409998, + 15354.072501607034, + 15773.137044611485, + 16192.885513423334, + 16613.31790804259, + 17034.434228469265, + 17456.23447470333, + 17878.718646744812, + 18301.886744593707, + 18725.738768249998, + 19150.27471771371, + 19575.494592984818, + 20001.398394063333, + 20427.986120949245, + 20855.257773642596, + 21283.213352143328, + 21711.85285645149, + 22141.176286567035, + 22571.183642489996, + 23001.874924220374, + 23433.250131758155, + 23865.309265103326, + 24298.052324255936, + 24731.47930921593, + 25165.59021998333, + 25600.38505655815, + 26035.863818940372, + 26472.02650712999, + 26908.873121127042, + 27346.403660931483, + 27784.61812654333, + 28223.5165179626, + 28663.09883518926, + 29103.365078223345, + 29544.315247064817, + 29985.949341713706, + 30428.267362169998, + 15657.856969194003, + 16093.869080567036, + 16530.56511774749, + 16967.945080735335, + 17406.00896953059, + 17844.75678413326, + 18284.188524543337, + 18724.30419076081, + 19165.103782785707, + 19606.587300618, + 20048.754744257716, + 20491.60611370482, + 20935.141408959335, + 21379.360630021252, + 21824.263776890595, + 22269.850849567334, + 22716.12184805149, + 23163.076772343036, + 23610.715622441996, + 24059.038398348373, + 24508.045100062147, + 24957.73572758334, + 25408.110280911933, + 25859.168760047927, + 26310.911164991325, + 26763.337495742155, + 27216.44775230037, + 27670.241934665995, + 28124.72004283904, + 28579.882076819482, + 29035.728036607332, + 29492.25792220259, + 29949.471733605264, + 30407.369470815338, + 30865.951133832816, + 31325.216722657708, + 31785.166237289992, + 14552.717362360001, + 14960.456412694812, + 15368.879388837042, + 15777.986290786666, + 16187.777118543703, + 16598.251872108154, + 17009.410551480003, + 17421.253156659255, + 17833.77968764593, + 18246.99014444, + 18660.88452704149, + 19075.462835450377, + 19490.725069666667, + 19906.671229690368, + 20323.301315521487, + 20740.615327159998, + 21158.613264605934, + 21577.29512785926, + 21996.660916920002, + 22416.710631788155, + 22837.444272463705, + 23258.861838946665, + 23680.963331237046, + 24103.748749334816, + 24527.218093239993, + 24951.371362952596, + 25376.208558472594, + 25801.7296798, + 26227.934726934818, + 26654.823699877037, + 27082.39659862666, + 27510.653423183703, + 27939.594173548154, + 28369.218849720008, + 28799.52745169926, + 29230.51997948593, + 29662.196433079993, + 14940.209437200001, + 15357.659179517032, + 15775.792847641482, + 16194.610441573335, + 16614.11196131259, + 17034.29740685926, + 17455.16677821333, + 17876.720075374807, + 18298.957298343706, + 18721.878447119994, + 19145.48352170371, + 19569.77252209482, + 19994.74544829333, + 20420.402300299254, + 20846.743078112595, + 21273.767781733335, + 21701.47641116149, + 22129.868966397033, + 22558.945447439997, + 22988.705854290372, + 23419.150186948147, + 23850.278445413325, + 24282.090629685932, + 24714.586739765928, + 25147.76677565333, + 25581.63073734815, + 26016.17862485037, + 26451.410438159997, + 26887.326177277042, + 27323.92584220148, + 27761.209432933323, + 28199.176949472596, + 28637.828391819257, + 29077.163759973337, + 29517.183053934816, + 29957.886273703705, + 30399.273419279998, + 15672.246387912, + 16107.175375797035, + 16542.788289489486, + 16979.085128989336, + 17416.06589429659, + 17853.730585411267, + 18292.079202333334, + 18731.11174506281, + 19170.82821359971, + 19611.228607944, + 20052.31292809571, + 20494.08117405482, + 20936.533345821335, + 21379.669443395254, + 21823.489466776595, + 22267.99341596533, + 22713.18129096149, + 23159.05309176504, + 23605.608818375997, + 24052.84847079437, + 24500.77204902015, + 24949.379553053328, + 25398.67098289393, + 25848.64633854193, + 26299.30561999733, + 26750.64882726015, + 27202.675960330373, + 27655.387019207992, + 28108.782003893048, + 28562.86091438548, + 29017.623750685332, + 29473.070512792598, + 29929.201200707263, + 30386.01581442934, + 30843.514353958817, + 31301.696819295703, + 31760.563210439992, + 14552.289200050001, + 14959.18195806481, + 15366.758641887043, + 15775.01925151667, + 16183.963786953704, + 16593.592248198158, + 17003.904635249997, + 17414.900948109258, + 17826.58118677593, + 18238.94535125, + 18651.993441531493, + 19065.725457620378, + 19480.141399516666, + 19895.241267220368, + 20311.02506073148, + 20727.492780050005, + 21144.644425175935, + 21562.479996109265, + 21980.99949285, + 22400.202915398153, + 22820.090263753707, + 23240.661537916665, + 23661.91673788704, + 24083.85586366482, + 24506.47891525, + 24929.7858926426, + 25353.776795842594, + 25778.451624849997, + 26203.810379664825, + 26629.85306028704, + 27056.579666716665, + 27483.990198953717, + 27912.084656998148, + 28340.863040850014, + 28770.325350509265, + 29200.471585975934, + 29631.301747250003, + 14945.265644850004, + 15361.784512287035, + 15778.987305531486, + 16196.874024583338, + 16615.44466944259, + 17034.69924010926, + 17454.637736583336, + 17875.26015886481, + 18296.56650695371, + 18718.55678085, + 19141.23098055371, + 19564.589106064817, + 19988.631157383334, + 20413.357134509253, + 20838.767037442594, + 21264.86086618334, + 21691.63862073149, + 22119.100301087044, + 22547.245907250006, + 22976.07543922038, + 23405.58889699815, + 23835.786280583336, + 24266.667589975936, + 24698.23282517593, + 25130.481986183335, + 25563.415072998156, + 25997.03208562037, + 26431.333024049996, + 26866.317888287045, + 27301.986678331486, + 27738.339394183327, + 28175.3760358426, + 28613.09660330926, + 29051.501096583346, + 29490.58951566482, + 29930.361860553712, + 30370.81813124999, + 15687.174461490004, + 16121.020325887035, + 16555.55011609149, + 16990.763832103337, + 17426.661473922588, + 17863.243041549267, + 18300.50853498333, + 18738.457954224814, + 19177.09129927371, + 19616.408570130006, + 20056.409766793717, + 20497.094889264823, + 20938.46393754334, + 21380.516911629256, + 21823.253811522598, + 22266.674637223336, + 22710.77938873149, + 23155.568066047043, + 23601.040669169997, + 24047.197198100377, + 24494.037652838157, + 24941.562033383336, + 25389.77033973594, + 25838.66257189593, + 26288.238729863333, + 26738.49881363816, + 27189.44282322038, + 27641.070758610003, + 28093.382619807046, + 28546.378406811484, + 29000.058119623332, + 29454.4217582426, + 29909.46932266926, + 30365.200812903346, + 30821.61622894483, + 31278.715570793713, + 31736.498838449996, + 14552.399692600004, + 14958.446158294813, + 15365.176549797043, + 15772.590867106672, + 16180.689110223702, + 16589.471279148154, + 16998.937373880002, + 17409.08739441926, + 17819.921340765934, + 18231.43921292, + 18643.641010881493, + 19056.52673465038, + 19470.096384226665, + 19884.34995961037, + 20299.287460801486, + 20714.9088878, + 21131.214240605936, + 21548.20351921926, + 21965.87672364, + 22384.233853868154, + 22803.274909903706, + 23222.999891746666, + 23643.408799397042, + 24064.50163285482, + 24486.27839212, + 24908.739077192597, + 25331.883688072594, + 25755.71222476, + 26180.224687254824, + 26605.42107555704, + 27031.301389666667, + 27457.865629583706, + 27885.113795308145, + 28313.045886840016, + 28741.661904179266, + 29170.961847325925, + 29600.945716279995, + 14950.860507360003, + 15366.448499917034, + 15782.720418281488, + 16199.676262453333, + 16617.316032432595, + 17035.639728219263, + 17454.647349813335, + 17874.33889721481, + 18294.714370423713, + 18715.77376944, + 19137.517094263712, + 19559.944344894822, + 19983.05552133334, + 20406.85062357926, + 20831.329651632597, + 21256.49260549334, + 21682.339485161494, + 22108.870290637038, + 22536.085021919997, + 22963.983679010376, + 23392.566261908152, + 23821.832770613328, + 24251.783205125932, + 24682.41756544593, + 25113.735851573332, + 25545.738063508154, + 25978.42420125037, + 26411.7942648, + 26845.84825415704, + 27280.586169321483, + 27716.008010293328, + 28152.113777072598, + 28588.903469659257, + 29026.37708805335, + 29464.53463225482, + 29903.376102263715, + 30342.90149807999, + 15702.641189928003, + 16135.403930837036, + 16568.85059755349, + 17002.981190077335, + 17437.79570840859, + 17873.294152547267, + 18309.476522493333, + 18746.342818246812, + 19183.893039807706, + 19622.127187175996, + 20061.045260351715, + 20500.647259334823, + 20940.933184125337, + 21381.903034723255, + 21823.556811128597, + 22265.894513341333, + 22708.916141361493, + 23152.621695189042, + 23597.011174823998, + 24042.084580266375, + 24487.841911516152, + 24934.28316857333, + 25381.408351437934, + 25829.217460109932, + 26277.71049458933, + 26726.887454876152, + 27176.748340970375, + 27627.293152872004, + 28078.52189058105, + 28530.434554097483, + 28983.031143421333, + 29436.311658552604, + 29890.276099491257, + 30344.92446623735, + 30800.256758790823, + 31256.27297715171, + 31712.973121319996, + 14553.048840010002, + 14958.249013384811, + 15364.133112567042, + 15770.701137556669, + 16177.953088353699, + 16585.888964958154, + 16994.50876737, + 17403.812495589256, + 17813.80014961593, + 18224.471729449997, + 18635.82723509149, + 19047.866666540376, + 19460.59002379667, + 19873.997306860365, + 20288.088515731484, + 20702.86365041, + 21118.322710895936, + 21534.465697189262, + 21951.292609289998, + 22368.803447198155, + 22786.998210913705, + 23205.876900436662, + 23625.439515767044, + 24045.68605690482, + 24466.616523849996, + 24888.230916602595, + 25310.529235162594, + 25733.51147953, + 26157.17764970482, + 26581.52774568703, + 27006.561767476665, + 27432.27971507371, + 27858.68158847815, + 28285.76738769001, + 28713.53711270927, + 29141.990763535934, + 29571.12834016999, + 14956.994024730004, + 15371.651142407036, + 15786.992185891488, + 16203.017155183335, + 16619.726050282592, + 17037.118871189265, + 17455.195617903337, + 17873.956290424812, + 18293.40088875371, + 18713.529412890002, + 19134.34186283371, + 19555.83823858482, + 19978.018540143337, + 20400.882767509254, + 20824.430920682596, + 21248.66299966333, + 21673.57900445149, + 22099.178935047043, + 22525.46279145, + 22952.430573660375, + 23380.082281678147, + 23808.417915503334, + 24237.43747513594, + 24667.140960575933, + 25097.52837182333, + 25528.59970887816, + 25960.354971740373, + 26392.794160409998, + 26825.91727488704, + 27259.724315171483, + 27694.21528126333, + 28129.390173162596, + 28565.24899086926, + 29001.79173438334, + 29439.01840370482, + 29876.928998833704, + 30315.523519769988, + 15718.646573226004, + 16150.326190647036, + 16582.689733875486, + 17015.737202911336, + 17449.468597754592, + 17883.883918405267, + 18318.983164863337, + 18754.766337128814, + 19191.23343520171, + 19628.384459082004, + 20066.219408769717, + 20504.738284264822, + 20943.94108556733, + 21383.827812677257, + 21824.3984655946, + 22265.653044319333, + 22707.591548851495, + 23150.21397919104, + 23593.520335337995, + 24037.51061729238, + 24482.184825054155, + 24927.542958623333, + 25373.585017999936, + 25820.311003183935, + 26267.72091417533, + 26715.814750974158, + 27164.592513580374, + 27614.054201994, + 28064.199816215045, + 28515.029356243485, + 28966.542822079333, + 29418.7402137226, + 29871.621531173267, + 30325.186774431346, + 30779.435943496825, + 31234.369038369714, + 31689.986059049992, + 14554.236642280002, + 14958.590523334815, + 15363.628330197045, + 15769.350062866672, + 16175.755721343701, + 16582.845305628158, + 16990.61881572, + 17399.076251619255, + 17808.217613325935, + 18218.04290084, + 18628.552114161495, + 19039.745253290377, + 19451.62231822667, + 19864.18330897036, + 20277.428225521486, + 20691.357067880002, + 21105.969836045937, + 21521.266530019264, + 21937.247149799994, + 22353.911695388153, + 22771.260166783708, + 23189.292563986673, + 23608.00888699705, + 24027.40913581482, + 24447.493310439997, + 24868.261410872597, + 25289.713437112594, + 25711.84938916, + 26134.669267014822, + 26558.17307067704, + 26982.36080014666, + 27407.23245542371, + 27832.788036508155, + 28259.027543400018, + 28685.950976099262, + 29113.558334605925, + 29541.849618919998, + 14963.666196960003, + 15377.392439757039, + 15791.802608361488, + 16206.896702773338, + 16622.674722992593, + 17039.136669019263, + 17456.28254085333, + 17874.112338494815, + 18292.62606194371, + 18711.823711200002, + 19131.705286263714, + 19552.270787134825, + 19973.52021381334, + 20395.45356629925, + 20818.070844592596, + 21241.372048693323, + 21665.357178601495, + 22090.026234317043, + 22515.37921584, + 22941.41612317038, + 23368.13695630815, + 23795.541715253334, + 24223.63040000594, + 24652.403010565933, + 25081.85954693333, + 25512.000009108153, + 25942.82439709037, + 26374.332710880004, + 26806.524950477047, + 27239.401115881486, + 27672.96120709333, + 28107.205224112597, + 28542.133166939268, + 28977.74503557335, + 29414.040830014823, + 29851.020550263707, + 30288.68419632, + 15735.190611384005, + 16165.78710531704, + 16597.06752505749, + 17029.03187060534, + 17461.68014196059, + 17895.012339123266, + 18329.02846209334, + 18763.728510870817, + 19199.11248545571, + 19635.180385848005, + 20071.932212047715, + 20509.367964054825, + 20947.48764186934, + 21386.29124549126, + 21825.7787749206, + 22265.950230157338, + 22706.805611201497, + 23148.34491805304, + 23590.568150712, + 24033.47530917838, + 24477.066393452154, + 24921.34140353334, + 25366.300339421938, + 25811.943201117934, + 26258.269988621334, + 26705.280701932148, + 27152.975341050376, + 27601.353905976004, + 28050.41639670905, + 28500.162813249488, + 28950.59315559734, + 29401.707423752603, + 29853.505617715266, + 30305.987737485346, + 30759.153783062822, + 31213.00375444771, + 31667.53765164, + 14555.96309941, + 14959.47068814481, + 15363.662202687046, + 15768.537643036672, + 16174.097009193705, + 16580.340301158154, + 16987.26751893, + 17394.878662509258, + 17803.173731895935, + 18212.152727090004, + 18621.815648091488, + 19032.162494900374, + 19443.19326751666, + 19854.907965940365, + 20267.306590171487, + 20680.389140210005, + 21094.155616055934, + 21508.606017709262, + 21923.740345169997, + 22339.55859843816, + 22756.06077751371, + 23173.246882396666, + 23591.116913087044, + 24009.67086958482, + 24428.908751889994, + 24848.830560002603, + 25269.436293922594, + 25690.725953649995, + 26112.699539184818, + 26535.35705052704, + 26958.698487676662, + 27382.723850633713, + 27807.433139398152, + 28232.826353970013, + 28658.903494349262, + 29085.66456053593, + 29513.109552529993, + 14970.87702405, + 15383.672391967035, + 15797.15168569149, + 16211.314905223337, + 16626.16205056259, + 17041.693121709264, + 17457.908118663334, + 17874.807041424818, + 18292.38988999371, + 18710.65666437, + 19129.60736455371, + 19549.241990544815, + 19969.560542343334, + 20390.563019949255, + 20812.24942336259, + 21234.61975258333, + 21657.67400761149, + 22081.41218844704, + 22505.83429509, + 22930.94032754038, + 23356.730285798152, + 23783.204169863337, + 24210.361979735935, + 24638.203715415937, + 25066.729376903335, + 25495.938964198158, + 25925.832477300373, + 26356.409916210003, + 26787.671280927043, + 27219.616571451483, + 27652.24578778333, + 28085.558929922594, + 28519.555997869254, + 28954.23699162334, + 29389.601911184825, + 29825.650756553707, + 30262.383527729995, + 15752.273304402002, + 16181.786674847035, + 16611.98397109949, + 17042.865193159338, + 17474.43034102659, + 17906.679414701266, + 18339.61241418334, + 18773.229339472815, + 19207.530190569712, + 19642.514967474006, + 20078.183670185717, + 20514.536298704817, + 20951.572853031335, + 21389.29333316526, + 21827.6977391066, + 22266.786070855338, + 22706.55832841149, + 23147.014511775044, + 23588.154620945996, + 24029.978655924384, + 24472.486616710157, + 24915.678503303334, + 25359.55431570394, + 25804.11405391193, + 26249.357717927334, + 26695.285307750153, + 27141.89682338038, + 27589.192264818004, + 28037.171632063044, + 28485.834925115483, + 28935.182143975333, + 29385.213288642604, + 29835.928359117257, + 30287.327355399342, + 30739.410277488823, + 31192.17712538571, + 31645.627899090003, + 14558.228211400003, + 14960.889507814813, + 15364.234730037044, + 15768.263878066671, + 16172.976951903704, + 16578.37395154815, + 16984.454877, + 17391.219728259253, + 17798.668505325928, + 18206.801208200002, + 18615.61783688149, + 19025.118391370375, + 19435.30287166667, + 19846.171277770365, + 20257.72360968149, + 20669.9598674, + 21082.880050925934, + 21496.48416025926, + 21910.7721954, + 22325.744156348155, + 22741.400043103706, + 23157.73985566667, + 23574.76359403705, + 23992.471258214817, + 24410.8628482, + 24829.938363992598, + 25249.697805592597, + 25670.141172999996, + 26091.26846621482, + 26513.079685237037, + 26935.574830066664, + 27358.75390070371, + 27782.616897148153, + 28207.16381940001, + 28632.394667459263, + 29058.309441325924, + 29484.908140999993, + 14978.626506, + 15390.490999037032, + 15803.039417881486, + 16216.271762533335, + 16630.188032992588, + 17044.788229259262, + 17460.072351333332, + 17876.04039921481, + 18292.692372903708, + 18710.0282724, + 19128.04809770371, + 19546.75184881482, + 19966.139525733335, + 20386.211128459254, + 20806.966656992594, + 21228.40611133333, + 21650.529491481488, + 22073.33679743704, + 22496.828029199994, + 22921.003186770376, + 23345.86227014815, + 23771.40527933333, + 24197.63221432593, + 24624.543075125926, + 25052.137861733332, + 25480.416574148152, + 25909.37921237037, + 26339.025776399994, + 26769.356266237046, + 27200.37068188148, + 27632.069023333326, + 28064.451290592602, + 28497.517483659263, + 28931.267602533342, + 29365.701647214817, + 29800.819617703706, + 30236.62151399999, + 15769.894652280003, + 16198.324899237035, + 16627.43907200149, + 17057.237170573342, + 17487.719194952588, + 17918.885145139262, + 18350.735021133336, + 18783.268822934813, + 19216.48655054371, + 19650.388203960007, + 20084.97378318371, + 20520.243288214824, + 20956.196719053336, + 21392.83407569925, + 21830.1553581526, + 22268.160566413335, + 22706.849700481493, + 23146.22276035704, + 23586.279746039996, + 24027.02065753038, + 24468.445494828156, + 24910.554257933334, + 25353.346946845933, + 25796.82356156593, + 26240.98410209333, + 26685.828568428155, + 27131.356960570374, + 27577.569278519994, + 28024.46552227704, + 28472.045691841486, + 28920.309787213333, + 29369.257808392606, + 29818.889755379263, + 30269.205628173342, + 30720.205426774824, + 31171.889151183714, + 31624.2568014, + 14561.031978250005, + 14962.846982344814, + 15365.345912247043, + 15768.52876795667, + 16172.395549473702, + 16576.946256798154, + 16982.18088993, + 17388.09944886926, + 17794.701933615932, + 18201.98834417, + 18609.958680531487, + 19018.612942700376, + 19427.951130676673, + 19837.973244460365, + 20248.679284051486, + 20660.069249449996, + 21072.14314065594, + 21484.900957669266, + 21898.342700489997, + 22312.468369118156, + 22727.277963553708, + 23142.771483796663, + 23558.948929847047, + 23975.81030170482, + 24393.355599369996, + 24811.5848228426, + 25230.497972122594, + 25650.095047209998, + 26070.37604810482, + 26491.340974807033, + 26912.989827316662, + 27335.32260563371, + 27758.33930975815, + 28182.039939690017, + 28606.42449542927, + 29031.492976975933, + 29457.24538433, + 14986.914642810005, + 15397.848260967034, + 15809.465804931486, + 16221.767274703332, + 16634.75267028259, + 17048.421991669264, + 17462.775238863334, + 17877.81241186481, + 18293.533510673707, + 18709.93853529, + 19127.02748571371, + 19544.800361944817, + 19963.257163983333, + 20382.397891829252, + 20802.222545482593, + 21222.73112494333, + 21643.923630211488, + 22065.800061287042, + 22488.36041817, + 22911.604700860375, + 23335.532909358146, + 23760.145043663328, + 24185.441103775927, + 24611.42108969593, + 25038.085001423333, + 25465.432838958157, + 25893.464602300373, + 26322.180291449997, + 26751.57990640704, + 27181.663447171482, + 27612.430913743327, + 28043.8823061226, + 28476.017624309257, + 28908.836868303348, + 29342.34003810482, + 29776.527133713702, + 30211.398155129995, + 15788.054655018004, + 16215.401778487038, + 16643.43282776349, + 17072.147802847336, + 17501.54670373859, + 17931.629530437265, + 18362.39628294334, + 18793.846961256815, + 19225.981565377708, + 19658.800095306004, + 20092.302551041714, + 20526.488932584823, + 20961.359239935333, + 21396.913473093256, + 21833.1516320586, + 22270.07371683134, + 22707.67972741149, + 23145.969663799042, + 23584.943525994, + 24024.601313996376, + 24464.943027806155, + 24905.968667423338, + 25347.678232847935, + 25790.07172407993, + 26233.14914111933, + 26676.910483966152, + 27121.355752620373, + 27566.484947081994, + 28012.298067351046, + 28458.795113427484, + 28905.97608531133, + 29353.840983002603, + 29802.38980650126, + 30251.622555807353, + 30701.539230920822, + 31152.139831841705, + 31603.424358569995, + 14561.376758478485, + 14963.097730018071, + 15365.502627365071, + 15768.591450519472, + 16172.364199481282, + 16576.820874250505, + 16981.961474827127, + 17387.786001211156, + 17794.294453402606, + 18201.48683140145, + 18609.36313520771, + 19017.923364821374, + 19427.167520242438, + 19837.095601470915, + 20247.707608506807, + 20659.003541350095, + 21070.983400000798, + 21483.647184458903, + 21896.994894724412, + 22311.026530797346, + 22725.74209267767, + 23141.141580365405, + 23557.224993860556, + 23973.992333163103, + 24391.443598273054, + 24809.578789190433, + 25228.3979059152, + 25647.90094844738, + 26068.08791678697, + 26488.95881093397, + 26910.513630888367, + 27332.752376650187, + 27755.6750482194, + 28179.28164559603, + 28603.572168780072, + 29028.546617771502, + 29454.204992570347, + 14987.868797965984, + 15398.69898549805, + 15810.213098837534, + 16222.41113798442, + 16635.293102938704, + 17048.85899370041, + 17463.108810269514, + 17878.042552646024, + 18293.660220829956, + 18709.96181482128, + 19126.94733462003, + 19544.616780226166, + 19962.970151639714, + 20382.00744886067, + 20801.728671889046, + 21222.133820724815, + 21643.222895368006, + 22064.99589581859, + 22487.45282207658, + 22910.59367414199, + 23334.4184520148, + 23758.927155695015, + 24184.11978518265, + 24609.99634047768, + 25036.556821580118, + 25463.80122848997, + 25891.729561207223, + 26320.34181973188, + 26749.638004063956, + 27179.618114203433, + 27610.282150150313, + 28041.630111904615, + 28473.66199946631, + 28906.377812835428, + 29339.777552011936, + 29773.861216995858, + 30208.62880778718, + 15790.105685043485, + 16217.332461362019, + 16645.243163487972, + 17073.83779142132, + 17503.116345162078, + 17933.078824710246, + 18363.72523006582, + 18795.0555612288, + 19227.069818199194, + 19659.768000976987, + 20093.150109562197, + 20527.216143954804, + 20961.966104154817, + 21397.39999016224, + 21833.51780197708, + 22270.31953959932, + 22707.805203028976, + 23145.974792266024, + 23584.828307310476, + 24024.365748162363, + 24464.587114821636, + 24905.49240728832, + 25347.081625562416, + 25789.354769643913, + 26232.31183953282, + 26675.952835229138, + 27120.27775673286, + 27565.28660404399, + 28010.979377162534, + 28457.356076088465, + 28904.41670082182, + 29352.16125136259, + 29800.58972771074, + 30249.702129866328, + 30699.498457829315, + 31149.978711599695, + 31601.142891177482, + 14965.060952199998, + 15338.57217981481, + 15712.76733323704, + 16087.646412466669, + 16463.209417503702, + 16839.45634834815, + 17216.387205, + 17594.001987459254, + 17972.30069572593, + 18351.283329799997, + 18730.94988968149, + 19111.300375370378, + 19492.334786866664, + 19874.053124170365, + 20256.455387281487, + 20639.5415762, + 21023.31169092593, + 21407.76573145926, + 21792.903697799997, + 22178.72558994815, + 22565.231407903702, + 22952.421151666662, + 23340.294821237043, + 23728.852416614816, + 24118.093937799997, + 24508.0193847926, + 24898.62875759259, + 25289.922056199997, + 25681.89928061482, + 26074.56043083704, + 26467.905506866664, + 26861.93450870371, + 27256.647436348147, + 27652.04428980001, + 28048.12506905926, + 28444.889774125928, + 28842.338405, + 15574.365323199998, + 15954.166348148143, + 16334.651298903704, + 16715.820175466666, + 17097.672977837035, + 17480.20970601482, + 17863.43036, + 18247.33493979259, + 18631.923445392596, + 19017.1958768, + 19403.152234014822, + 19789.79251703704, + 20177.116725866665, + 20565.124860503696, + 20953.81692094815, + 21343.192907199995, + 21733.25281925926, + 22123.99665712593, + 22515.4244208, + 22907.53611028148, + 23300.331725570373, + 23693.81126666666, + 24087.974733570376, + 24482.82212628148, + 24878.3534448, + 25274.568689125936, + 25671.467859259254, + 26069.050955199997, + 26467.317976948154, + 26866.2689245037, + 27265.90379786666, + 27666.22259703704, + 28067.225322014805, + 28468.911972800008, + 28871.28254939259, + 29274.337051792594, + 29678.075479999996, + 16705.664407000004, + 17096.787067148147, + 17488.593653103708, + 17881.08416486667, + 18274.258602437032, + 18668.116965814817, + 19062.659255, + 19457.88546999259, + 19853.7956107926, + 20250.389677400002, + 20647.667669814822, + 21045.629588037038, + 21444.275432066668, + 21843.605201903698, + 22243.618897548153, + 22644.316519, + 23045.698066259265, + 23447.763539325926, + 23850.512938199998, + 24253.946262881487, + 24658.063513370376, + 25062.864689666665, + 25468.349791770383, + 25874.518819681485, + 26281.371773399995, + 26688.908652925933, + 27097.12945825926, + 27506.034189399998, + 27915.622846348146, + 28325.895429103708, + 28736.851937666666, + 29148.492372037046, + 29560.81673221482, + 29973.825018200005, + 30387.517229992598, + 30801.8933675926, + 31216.953430999998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC185A_MP.json b/examples/NyleC185A_MP.json new file mode 100644 index 0000000..3745b14 --- /dev/null +++ b/examples/NyleC185A_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0025236066666666666, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 41869.99999901, + 41470.00000484, + 40999.9999973, + 40529.99999339999, + 39819.99999864, + 39350.00000952, + 55989.99999894, + 54999.9999997, + 53960.0000058, + 53049.99999857, + 51539.999992959994, + 50550.0000096, + 76010.0000016, + 74650.00000052, + 71979.99999928, + 69700.00000490999, + 66570.00001042, + 64380.00000959999, + 83699.9999975, + 79129.99999506, + 76490.0000001, + 72799.99999329999, + 67520.00000905, + 64049.99999076 + ], + "input_power": [ + 7570.0, + 11660.0, + 14050.0, + 18300.0, + 25040.0, + 30480.0, + 6990.0, + 10460.0, + 14280.0, + 18190.0, + 26240.0, + 32320.0, + 7870.0, + 12040.0, + 15020.0, + 18810.0, + 25990.0, + 31260.0, + 8150.0, + 12460.0, + 15170.0, + 18950.0, + 26230.0, + 31620.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 9.927607736059246, + "volume": 3.6339936 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC185A_SP.json b/examples/NyleC185A_SP.json new file mode 100644 index 0000000..5463acf --- /dev/null +++ b/examples/NyleC185A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 40518.95408446546, + 40541.852835725345, + 40540.93839742314, + 40519.184888500145, + 40479.57657548237, + 40425.10787248023, + 40358.78334118897, + 40283.61769088814, + 40202.63577844219, + 40118.87260829996, + 40035.37333249502, + 39955.19325064544, + 39881.39780995391, + 39817.062605207844, + 39765.273378779064, + 39729.12602062411, + 39711.72656828412, + 39716.19120688477, + 39745.64626913638, + 39803.228235333896, + 39892.08373335677, + 40015.369538669154, + 40176.25257431975, + 40377.90991094185, + 40623.52876675341, + 40916.306507556896, + 41259.450646739424, + 41656.17884527267, + 42109.71891171305, + 42623.30880220138, + 43200.19662046319, + 43843.64061780864, + 44556.90919313232, + 45343.2808929136, + 46206.04441121646, + 47148.49858968929, + 48173.95241756524, + 41253.544699587685, + 41244.72257086917, + 41209.85083447448, + 41152.13224464332, + 41074.779703200074, + 40981.0162595536, + 40874.07511069757, + 40757.19960120994, + 40633.643223253566, + 40506.66961657569, + 40379.552568508305, + 40255.576013967875, + 40138.03403545558, + 40030.23086305716, + 39935.48087444287, + 39857.108594867714, + 39798.44869717119, + 39762.846001777405, + 39753.6554766951, + 39774.24223751762, + 39827.98154742282, + 39918.25881717331, + 40048.46960511617, + 40222.019617183134, + 40442.32470689052, + 40712.81087533927, + 41036.91427121487, + 41418.081190787416, + 41859.768077911765, + 42365.441524027105, + 42938.57826815739, + 43582.66519691126, + 44301.19934448163, + 45097.68789264635, + 45975.64817076771, + 46938.60765579264, + 47990.10397225262, + 40589.21739041591, + 40612.62240388949, + 40612.14994676768, + 40590.77324773642, + 40551.475683066245, + 40497.25077661227, + 40431.102199814224, + 40356.04377169638, + 40275.09945886773, + 40191.303375521726, + 40107.69978343653, + 40027.34309197479, + 39953.2978580839, + 39888.638786295756, + 39836.45072872684, + 39799.82868507832, + 39781.87780263584, + 39785.71337626982, + 39814.460848435076, + 39871.255809171176, + 39959.243996102174, + 40081.58129443685, + 40241.433736968516, + 40441.97750407503, + 40686.39892371894, + 40977.89447144737, + 41319.67077039201, + 41714.94459126909, + 42166.94285237973, + 42678.90261960927, + 43254.071106427866, + 43895.70567389029, + 44607.07383063575, + 45391.453232888176, + 46252.131684456144, + 47192.4071367327, + 48215.58768869552, + 41317.79818506019, + 41309.364805910955, + 41274.844126749806, + 41217.43787307212, + 41140.35791795784, + 41046.82628207158, + 40940.075133662496, + 40823.3467885643, + 40699.89371019545, + 40572.97850955887, + 40445.87394524215, + 40321.86292341737, + 40204.23849784139, + 40096.303869855576, + 40001.37238838582, + 39922.7675499428, + 39863.82299862154, + 39827.88252610192, + 39818.300071648264, + 39838.43972210955, + 39891.67571191927, + 39981.39242309567, + 40110.98438524151, + 40283.85627554413, + 40503.42291877547, + 40773.10928729214, + 41096.350501035275, + 41476.591827530545, + 41917.28868188854, + 42421.90662680399, + 42993.9213725566, + 43636.818777010536, + 44354.09484561443, + 45149.255731401725, + 46025.81773499037, + 46987.307304582944, + 48037.26103596652, + 41221.121546086295, + 41249.00177287372, + 41252.42828841078, + 41234.3663090848, + 41197.79119886772, + 41145.688469316134, + 41081.05377957116, + 41006.89293635848, + 40926.22189398853, + 40842.066754356194, + 40757.463766941, + 40675.45932880714, + 40599.109984603325, + 40531.482426562885, + 40475.653494503764, + 40434.71017582856, + 40411.74960552428, + 40409.87906616281, + 40432.21598790038, + 40481.887948477975, + 40562.03267322107, + 40675.798035039916, + 40826.34205442919, + 41016.832899468194, + 41250.448885820915, + 41530.378476735896, + 41859.820283046196, + 42241.98306316956, + 42680.085723108445, + 43177.35731644968, + 43737.037044364835, + 44362.37425561004, + 45056.628446526, + 45823.06926103805, + 46664.97649065613, + 47585.6400744748, + 48588.36009917317, + 41896.22650615874, + 41891.19508167765, + 41859.73926063911, + 41805.0515098392, + 41730.33444365868, + 41638.800824062884, + 41533.67356060172, + 41418.18571040966, + 41295.5804782059, + 41169.1112162941, + 41042.04142456257, + 40917.64475048429, + 40799.204989116726, + 40690.01608310203, + 40593.38212266688, + 40512.61734562266, + 40451.04613736516, + 40412.00303087502, + 40398.832706717294, + 40414.88999304172, + 40463.53986558255, + 40548.15744765876, + 40672.12801017391, + 40838.84697161601, + 41051.71989805783, + 41314.1625031567, + 41629.60064815448, + 42001.470341877655, + 42433.21774073748, + 42928.29914872954, + 43490.181017434166, + 44122.33994601635, + 44828.26268122549, + 45611.446117395746, + 46475.39729644577, + 47423.633407879, + 48459.68178878323, + 41852.24049971876, + 41884.44910636566, + 41891.63188066756, + 41876.74602671321, + 41842.75889617599, + 41792.64798831386, + 41729.40094996944, + 41656.015575569785, + 41575.499807126784, + 41490.87173423669, + 41405.15959408054, + 41321.40177142384, + 41242.646798616806, + 41171.95335559421, + 41112.39026987536, + 41067.03651656424, + 41038.98121834944, + 41031.32364550408, + 41047.17321588594, + 41089.64949493739, + 41161.88219568535, + 41267.01117874145, + 41408.186452301794, + 41588.5681721472, + 41811.326641642954, + 42079.642311739, + 42396.70578097001, + 42765.71779545499, + 43189.88924889786, + 43672.441182586874, + 44216.604785395, + 44825.62139377988, + 45502.74249178352, + 46251.22971103278, + 47074.35483073899, + 47975.399777698054, + 48957.65662629062, + 42474.9587829425, + 42473.15465550236, + 42444.5928770162, + 42392.45665558085, + 42319.93934687783, + 42230.24445417322, + 42126.58562831767, + 42012.18666774643, + 41890.28151847944, + 41764.11427412107, + 41636.93917586047, + 41512.020612471206, + 41392.63312031167, + 41282.061383324675, + 41183.60023303767, + 41100.554648562764, + 41036.239756596595, + 40993.98083142039, + 40977.113294900104, + 40988.982716486134, + 41032.94481321354, + 41112.36544970208, + 41230.62063815588, + 41391.09653836391, + 41597.18945769964, + 41852.30585112107, + 42159.86232117084, + 42523.285617976224, + 42946.0126392492, + 43431.490430286096, + 43983.17618396804, + 44604.53724076073, + 45299.05108871435, + 46070.205363463756, + 46921.49784822841, + 47856.43647381237, + 48878.53931860437, + 42482.649118882815, + 42519.03817835342, + 42529.833403944736, + 42517.983987446976, + 42486.44926823497, + 42438.19873326801, + 42376.212017090234, + 42303.47890183009, + 42222.99931720083, + 42137.783340500246, + 42050.85119661066, + 41965.23325799913, + 41883.970044717265, + 41810.11222440117, + 41746.72061227168, + 41696.86617113416, + 41663.63001137862, + 41650.10339097961, + 41659.38771549635, + 41694.59453807261, + 41758.84555943673, + 41855.2726279018, + 41987.01773936532, + 42157.23303730948, + 42369.08081280107, + 42625.73350449149, + 42930.37369861671, + 43286.19412899722, + 43696.39767703839, + 44164.19737172985, + 44692.8163896461, + 45285.48805494603, + 45945.45583937321, + 46675.973362255856, + 47480.30439050674, + 48361.722838623245, + 49323.51276868735, + 43054.05079570017, + 43055.29869234759, + 43029.45952551738, + 42979.7072446072, + 42909.225946599276, + 42821.20987606036, + 42718.86342514201, + 42605.401133580075, + 42484.04768869532, + 42358.03792539287, + 42230.61682616257, + 42105.03952107887, + 41984.57128780076, + 41872.48755157187, + 41772.073885220394, + 41686.62600915917, + 41619.44979138564, + 41573.86124748174, + 41553.18654061417, + 41560.761981534146, + 41599.93402857737, + 41674.059287664386, + 41786.50451230018, + 41940.646603574314, + 42139.87261016104, + 42387.57972831919, + 42687.175301892144, + 43042.076822307856, + 43455.71192857909, + 43931.51840730296, + 44472.944192661285, + 45083.44736642055, + 45766.49615793165, + 46525.568944130246, + 47364.15424953654, + 48285.75074625542, + 49293.86725397616, + 43112.42192479681, + 43152.84241647391, + 43167.10519229788, + 43158.15143176028, + 43128.93246193737, + 43082.409757489964, + 43021.5549406635, + 42949.34978128789, + 42868.78619677786, + 42782.86625213255, + 42694.60215993578, + 42607.016280355994, + 42523.14112114615, + 42446.01933764393, + 42378.703732771464, + 42324.257257035606, + 42285.753008527776, + 42266.27423292393, + 42268.914323484714, + 42296.77682105536, + 42352.9754140656, + 42440.63393852991, + 42562.88637804728, + 42722.87686380132, + 42923.75967456021, + 43168.699236676744, + 43460.8701240884, + 43803.45705831702, + 44199.654908469434, + 44652.66869123669, + 45165.713570894666, + 45742.01485930376, + 46384.808015908864, + 47097.33864773973, + 47882.86250941047, + 48744.645503119864, + 49685.96367865143, + 43633.55797836928, + 43637.68201082471, + 43614.3934094279, + 43566.856864877256, + 43498.24721545575, + 43411.74944703096, + 43310.55869305508, + 43197.88023456479, + 43076.929500181584, + 42950.93206611134, + 42823.12365614464, + 42696.75014165669, + 42575.06754160725, + 42461.34202254067, + 42358.84989858592, + 42270.87763145659, + 42200.72183045084, + 42151.68925245138, + 42127.09680192567, + 42130.27153092564, + 42164.550639087785, + 42233.28147363341, + 42339.82152936816, + 42487.53844868245, + 42679.81002155128, + 42920.024185534145, + 43211.57902577521, + 43557.88277500325, + 43962.353813531685, + 44428.420669258405, + 44959.52201766605, + 45559.10668182178, + 46230.63363237724, + 46977.571987568896, + 47803.40101321764, + 48711.61012272903, + 49705.69887709327, + 43741.633092328, + 43785.934902013054, + 43803.51923343145, + 43797.3192537762, + 43770.27827782499, + 43725.349767940024, + 43665.49733406815, + 43593.69473374079, + 43512.92587207403, + 43426.18480176843, + 43336.475723109266, + 43246.812983966374, + 43160.22107979421, + 43079.73465363176, + 43008.39849610263, + 42949.2675454151, + 42905.406887362005, + 42879.89175532077, + 42875.8075302534, + 42896.2497407066, + 42944.32406281149, + 43023.14632028399, + 43135.84248442449, + 43285.54867411802, + 43475.411155834234, + 43708.586343627336, + 43988.240799136154, + 44317.55123158409, + 44699.704497779276, + 45137.89760211421, + 45635.33769656622, + 46195.2420806971, + 46820.838201653234, + 47515.3636541657, + 48282.0661805501, + 49124.20367070668, + 50045.04416212022, + 44213.53541853635, + 44220.359083194024, + 44199.44838568185, + 44153.95875799898, + 44087.05577972912, + 44001.915178040574, + 43901.722827686346, + 43789.67475100384, + 43668.97711791531, + 43542.84624592737, + 43414.50860013138, + 43287.200793203316, + 43164.169585403586, + 43048.671884577365, + 42943.97474615435, + 42853.355373148894, + 42780.101116159894, + 42727.509473370854, + 42698.88809054994, + 42697.55476104984, + 42726.83742580781, + 42790.07417334586, + 42890.6132397705, + 43031.81300877278, + 43217.04201162846, + 43449.67892719787, + 43733.11258192587, + 44070.74194984198, + 44465.9761525604, + 44922.234459279716, + 45442.94628678338, + 46031.55119943922, + 46691.49890919976, + 47426.249275602095, + 48239.27230576792, + 49134.048154403645, + 50114.06712380006, + 44021.21934807449, + 44067.198298715346, + 44086.21222365378, + 44081.19072781489, + 44055.073563708385, + 44010.810631428525, + 43951.36197865423, + 43879.69780064892, + 43798.79844026079, + 43711.65438792244, + 43621.2662816512, + 43530.644907048954, + 43442.81119730214, + 43360.7962331819, + 43287.64124304388, + 43226.397602828394, + 43180.12683606032, + 43151.90061384912, + 43144.8007548889, + 43161.91922545836, + 43206.35813942074, + 43281.22975822398, + 43389.656490900496, + 43534.7708940674, + 43719.71567192639, + 43947.64367626377, + 44221.717906450314, + 44545.11150944156, + 44921.00777977767, + 45352.60015958324, + 45843.09223856758, + 46395.69775402457, + 47013.64059083263, + 47700.15478145488, + 48458.48450593904, + 49291.88409191735, + 50203.61801460667, + 44471.558741751775, + 44479.52582045557, + 44459.61673039685, + 44414.982787157074, + 44348.78545390231, + 44264.19634138317, + 44164.39720793488, + 44052.579959477276, + 43931.94664951483, + 43805.70947913654, + 43677.09079701608, + 43549.32309941156, + 43425.649030166, + 43309.32138070671, + 43203.60309004571, + 43111.7672447797, + 43037.0970790899, + 42982.885974742065, + 42952.437461086745, + 42949.06521505889, + 42976.09306117812, + 43036.85497154872, + 43134.69506585953, + 43272.96761138391, + 43455.037022979915, + 43684.27786309022, + 43964.074841741996, + 44297.82281654702, + 44688.92679270188, + 45140.801922987484, + 45656.873507769495, + 46240.5769949982, + 46895.35798020826, + 47624.67220651925, + 48431.985564635106, + 49320.774092844564, + 50294.523977020704, + 44370.35644999257, + 44418.388369905624, + 44439.14716869886, + 44435.558001266756, + 44410.5561700884, + 44367.08712522743, + 44308.10646433212, + 44236.57993263528, + 44155.48342295446, + 44067.80297569163, + 43976.534778833506, + 43884.68516795127, + 43795.27062620087, + 43711.31778432272, + 43635.86342064184, + 43571.95446106794, + 43522.647979095265, + 43491.01119580264, + 43480.12147985352, + 43493.06634749604, + 43532.943462562755, + 43602.86063647095, + 43705.935828222515, + 43845.297144403834, + 44024.08283918603, + 44245.441314324715, + 44512.53111916013, + 44828.5209506171, + 45196.589653205185, + 45619.926219018394, + 46101.72978773531, + 46645.20964661928, + 47253.58523051806, + 47930.086121864115, + 48677.95205067456, + 49500.432894551, + 50400.788678679666, + 44794.03785743674, + 44803.384035364754, + 44784.677964862254, + 44741.06581922916, + 44675.70391934997, + 44591.75873369373, + 44492.406878314156, + 44380.83511684941, + 44260.240360522504, + 44133.829668140796, + 44004.82024609643, + 43876.43944836605, + 43751.9247765109, + 43634.52387967688, + 43527.49455459444, + 43434.10474557868, + 43357.632544529246, + 43301.3661909304, + 43268.60407185101, + 43262.65472194459, + 43286.83682344912, + 43344.479206187316, + 43438.92084756651, + 43573.51087257846, + 43751.60855379968, + 43976.58331139124, + 44251.81471309879, + 44580.692474252544, + 44966.61645776749, + 45412.996674143025, + 45923.25328146318, + 46500.81658539672, + 47149.12703919682, + 47871.635243701305, + 48671.80194733273, + 49553.09804609813, + 50519.004583589136, + 44998.66547995563, + 45050.275208735315, + 45074.06029310243, + 45072.93787565287, + 45049.83524656713, + 45007.68984361029, + 44949.44925213207, + 44878.07120506663, + 44796.52358293302, + 44707.78441383458, + 44614.84187345944, + 44520.694285080324, + 44428.350119554474, + 44340.82799532376, + 44261.15667841467, + 44192.37508243825, + 44137.53226859027, + 44099.68744565088, + 44081.909969985056, + 44087.279345542265, + 44118.88522385653, + 44179.827404046584, + 44273.21583281571, + 44402.17060445172, + 44569.82196082714, + 44779.310291399066, + 45033.786133209076, + 45336.4101708835, + 45690.35323663327, + 46098.79631025376, + 46564.93051912514, + 47091.95713821208, + 47683.08759006372, + 48341.54344481405, + 49070.55642018152, + 49873.36838146926, + 50753.231341564824, + 45375.11968995481, + 45386.81064689502, + 45370.1353112011, + 45328.23059747367, + 45264.24356789795, + 45181.33143224383, + 45082.66154786567, + 44971.411419702476, + 44850.76870027793, + 44723.93118970021, + 44594.10683566215, + 44464.51373344121, + 44338.38012589934, + 44218.94440348318, + 44109.455104223984, + 44013.17091373752, + 43933.360665224296, + 43873.303339469196, + 43836.28806484195, + 43825.61411729675, + 43844.590920372364, + 43896.538045192254, + 43984.78521046449, + 44112.67228248159, + 44283.5492751208, + 44500.77634984402, + 44767.72381569751, + 45087.772129312354, + 45464.311894904225, + 45900.74386427327, + 46400.478936804364, + 46966.93815946692, + 47603.55272681484, + 48313.76398098683, + 49101.023411706105, + 49968.79265628046, + 50920.543499602274, + 45626.63331803128, + 45681.66746073487, + 45708.32955529344, + 45709.528732004466, + 45688.18426874972, + 45647.22559099578, + 45589.59227179374, + 45518.23403177925, + 45436.110739172684, + 45346.19240977892, + 45251.45920698748, + 45154.90144177241, + 45059.519572692436, + 44968.32420589093, + 44884.33609509571, + 44810.586141619286, + 44750.115394358836, + 44705.97504979597, + 44681.22645199704, + 44678.94109261294, + 44702.20061087914, + 44754.09679361585, + 44837.731575227604, + 44956.21703770377, + 45112.67541061834, + 45310.23907112968, + 45552.050543980964, + 45841.262501499805, + 46181.0377635986, + 46574.54929777419, + 47024.98021910815, + 47535.523790266496, + 48109.38342149991, + 48749.77267064373, + 49459.91524311791, + 50243.04499192676, + 51102.40591765954, + 45956.83496462382, + 45970.69235099196, + 45955.87324257926, + 45915.50529528717, + 45852.726312601626, + 45770.68424559319, + 45672.53719291711, + 45561.45340081303, + 45440.61126310546, + 45313.19932120328, + 45182.41626410008, + 45051.47092837405, + 44923.58229818795, + 44801.97950528916, + 44689.90182900964, + 44590.59869626596, + 44507.32968155931, + 44443.36450697541, + 44401.98304218469, + 44386.475304442094, + 44400.14145858715, + 44446.29181704414, + 44528.24683982167, + 44649.33713451322, + 44812.903456296764, + 45022.29670793482, + 45280.87793977454, + 45592.018349747705, + 45959.0992833707, + 46385.51223374447, + 46874.658841554636, + 47429.95089507134, + 48054.81033014929, + 48752.66923022789, + 49526.96982633105, + 50381.16449706746, + 51318.715768630114, + 46254.332753682356, + 46312.63682178573, + 46342.025557572095, + 46345.400079040235, + 46325.671651773504, + 46285.76168893978, + 46228.60175129169, + 46157.13354716624, + 46074.308932485255, + 45983.08991075498, + 45886.4486330664, + 45787.367398095026, + 45688.83865210097, + 45593.86498892902, + 45505.4591500084, + 45426.64402435312, + 45360.45264856167, + 45309.928206817174, + 45278.124030887375, + 45268.10360012459, + 45282.9405414657, + 45325.718629432304, + 45399.53178613049, + 45507.48408125099, + 45652.689732069084, + 45838.273103444706, + 46067.36870782246, + 46343.121205231306, + 46668.68540328512, + 47047.22625718216, + 47481.91886970533, + 47975.94849122227, + 48532.510519684896, + 49154.81050063008, + 49846.064127179015, + 50609.4972400377, + 51448.34582749668, + 46539.23738362588, + 46555.08223451148, + 46541.94423052658, + 46502.94176887328, + 46441.20339433835, + 46359.86779929311, + 46262.08382369348, + 46151.01045507996, + 46029.81682857775, + 45901.68222689649, + 45769.796080330496, + 45637.35796675876, + 45507.577611644774, + 45383.67488803664, + 45268.87981656708, + 45166.43256545347, + 45079.58345049767, + 45011.59293508618, + 44965.7316301902, + 44945.28029436541, + 44953.52983375207, + 44993.78130207521, + 45069.34590064428, + 45183.54497835343, + 45339.71003168131, + 45541.18270469128, + 45791.314789031334, + 46093.46822393382, + 46451.01509621601, + 46867.33764027955, + 47345.82823811072, + 47889.88941928058, + 48502.933860944504, + 49188.3843878426, + 49949.67397229965, + 50790.2457342249, + 51713.552941112364, + 46881.836230020876, + 46943.25464141844, + 46975.21855588738, + 46980.62107912794, + 46962.36546442478, + 46923.3651126473, + 46866.54357224946, + 46794.83453926975, + 46711.18185733143, + 46618.53951764216, + 46519.87165899432, + 46418.15256776483, + 46316.36667791527, + 46217.50857099183, + 46124.58297612517, + 46040.60477003071, + 45968.59897700837, + 45911.600768942706, + 45872.65546530285, + 45854.818533142585, + 45861.15558710019, + 45894.74238939874, + 45958.66484984562, + 46056.01902583305, + 46189.91112233786, + 46363.45749192128, + 46579.78463472924, + 46842.02919849234, + 47153.33797852575, + 47516.86791772915, + 47935.78610658695, + 48413.26978316806, + 48952.506333126024, + 49556.693289699004, + 50229.038333709614, + 50972.75929356534, + 51791.08414525813, + 47122.3803027922, + 47140.03303795858, + 47128.400400221704, + 47090.591528084566, + 47029.725707634534, + 46948.93237254374, + 46851.351104068875, + 46740.131631051125, + 46618.43382991649, + 46489.427724675326, + 46356.29348692275, + 46222.22143583846, + 46090.41203818671, + 45964.075908316365, + 45846.43380816089, + 45740.71664723838, + 45650.165482651515, + 45578.03151908748, + 45527.57610881827, + 45502.07075170028, + 45504.797095174545, + 45539.04693426689, + 45608.12221158738, + 45715.335017330974, + 45864.007589277244, + 46057.472312790116, + 46299.071720818254, + 46592.158493894975, + 46940.095460138175, + 47346.25559525022, + 47814.02202251832, + 48346.7880128141, + 48947.95698459371, + 49620.94250389812, + 50369.16828435274, + 51196.068187167664, + 52105.08622113755, + 47509.215843807564, + 47573.591922812455, + 47607.97845983744, + 47615.2605482842, + 47598.33342913883, + 47560.102490972145, + 47503.48326993954, + 47431.40144978093, + 47346.792861820955, + 47252.60348496873, + 47151.78944571808, + 47047.31701814732, + 46942.16262391945, + 46839.31283228209, + 46741.76436006737, + 46652.52407169202, + 46574.6089791575, + 46511.046242049735, + 46464.873167539285, + 46439.137210381334, + 46436.895972915656, + 46461.21720506667, + 46515.1788043432, + 46601.86881583895, + 46724.38543223213, + 46885.836993785335, + 47089.34198834602, + 47338.029051346166, + 47635.03696580235, + 47983.5146623157, + 48386.62121907203, + 48847.525861841714, + 49369.40796397965, + 49955.45704642545, + 50608.872777703255, + 51332.86497392183, + 52130.65359877455, + 47706.316731602725, + 47725.597155487056, + 47715.29353049243, + 47678.505736422514, + 47618.343800665505, + 47537.927898194255, + 47440.3883515662, + 47328.865630923276, + 47206.51035399222, + 47076.48328608421, + 46941.955340095024, + 46806.10757650517, + 46672.131203379606, + 46543.227576368, + 46422.60819870453, + 46313.494721208044, + 46219.11894228197, + 46142.7228079143, + 46087.55841167768, + 46056.887994729324, + 46053.98394581103, + 46082.12880124931, + 46144.61524495502, + 46244.7461084239, + 46385.83437073619, + 46571.20315855664, + 46804.18574613465, + 47088.12555530426, + 47426.376155484104, + 47822.301263677415, + 48279.27474447198, + 48800.6806100403, + 49389.91302013923, + 50050.376282110505, + 50785.48485088026, + 51598.66332895934, + 52493.34646644318, + 48136.54334545216, + 48203.71932279607, + 48240.37483266919, + 48249.38695617457, + 48233.64292199982, + 48196.0401064171, + 48139.4860332833, + 48066.89837403969, + 47981.2049477124, + 47885.34372091191, + 47782.262807833504, + 47674.92047025689, + 47566.28511754653, + 47459.33530665143, + 47357.05974210516, + 47262.457276025896, + 47178.536908116504, + 47108.31778566429, + 47054.82920354128, + 47021.11060420411, + 47010.2115776939, + 47025.19186163653, + 47069.12134124235, + 47145.08004930636, + 47256.15816620813, + 47405.456019911806, + 47596.08408596631, + 47831.16298750489, + 48113.82349524566, + 48447.20652749113, + 48834.46315012854, + 49278.7545766297, + 49783.25216805087, + 50351.13743303317, + 50985.60202780215, + 51689.84775616795, + 52467.086569525454, + 48291.0993331864, + 48311.82663489969, + 48302.67505381526, + 48266.73521103752, + 48207.10787525544, + 48126.903962742625, + 48029.24453735726, + 47917.260810542044, + 47794.09414132444, + 47662.896036316386, + 47526.828149714405, + 47389.06228329978, + 47252.78038643819, + 47121.174556080055, + 46997.44703676032, + 46884.810220598585, + 46786.48664729903, + 46705.709004150354, + 46645.72012602602, + 46609.772995383966, + 46601.130742266716, + 46623.0666443015, + 46678.864126700086, + 46771.816762258844, + 46905.2282713587, + 47082.412521965205, + 47306.69352962865, + 47581.40545748363, + 47909.892616249635, + 48295.50946423061, + 48741.62060731512, + 49251.60079897638, + 49828.83494027202, + 50476.718079844526, + 51198.65541392078, + 51998.0622863124, + 52878.36418841559, + 48763.89013901327, + 48833.7071518465, + 48872.47689127841, + 48883.068426113474, + 48868.360972740746, + 48831.24389513383, + 48774.616704850974, + 48701.389061034926, + 48614.4807704132, + 48516.82178729777, + 48411.35221358525, + 48301.02229875685, + 48188.7924398784, + 48077.633181600366, + 47970.52521615772, + 47870.459383370064, + 47780.436670641684, + 47703.46821296133, + 47642.57529290245, + 47600.78934062307, + 47581.151933865774, + 47586.71479795783, + 47620.53980581102, + 47685.698977921784, + 47785.2744823711, + 47922.35863482455, + 48100.05389853248, + 48321.47288432956, + 48589.73835063529, + 48907.98320345367, + 49279.3504963733, + 49706.99343056746, + 50194.07535479386, + 50743.7697653949, + 51359.26030629773, + 52043.74076901379, + 52800.415092639494, + 48876.78042432108, + 48898.77317764809, + 48890.59605631563, + 48855.33042272883, + 48796.06778687744, + 48715.90980633579, + 48617.96828626283, + 48505.365179402004, + 48381.23258608153, + 48248.71275421406, + 48110.95807929694, + 47971.13110441213, + 47832.404520226126, + 47697.96116499004, + 47570.994024539614, + 47454.706232295175, + 47352.31106926163, + 47267.031964028465, + 47202.1024927699, + 47160.76637924462, + 47146.277494795824, + 47161.89985835161, + 47210.90763642444, + 47296.58514311142, + 47422.22684009425, + 47591.137336639185, + 47806.63138959734, + 48072.03390340404, + 48390.679930079496, + 48765.914669228434, + 49201.093468040126, + 49699.58182128858, + 50264.75537133222, + 50899.99990811418, + 51608.71136916215, + 52394.29583958841, + 53260.169552090105, + 49391.32728219861, + 49463.62537409, + 49504.35350620997, + 49516.37273506442, + 49502.55426474373, + 49465.779446923014, + 49408.939780861874, + 49334.93691340456, + 49246.68263897994, + 49147.098899601435, + 49039.11778486706, + 48925.68153195954, + 48809.74252564604, + 48694.26329827847, + 48582.21652979321, + 48476.5850477113, + 48380.36182713848, + 48296.54999076488, + 48228.16280886539, + 48178.22369929947, + 48149.76622751108, + 48145.83410652898, + 48169.48119696629, + 48223.771507020916, + 48311.77919247536, + 48436.58855669651, + 48601.294050636076, + 48809.00027283029, + 49062.82196940001, + 49365.88403405068, + 49721.32150807231, + 50132.2795803396, + 50601.91358731168, + 51133.389013032356, + 51729.88148913031, + 52394.57679481833, + 53130.67085689412, + 49463.41197543361, + 49486.48813883295, + 49479.10727776803, + 49444.341495944784, + 49385.27304465364, + 49304.99432276969, + 49206.607876752656, + 49093.2264006467, + 48967.97273608085, + 48833.979872268465, + 48694.39094600767, + 48552.35924168108, + 48411.04819125606, + 48273.63137428443, + 48143.292517902664, + 48023.22549683187, + 47916.63433337771, + 47826.733197430396, + 47756.74640646488, + 47709.90842554061, + 47689.463867301594, + 47698.66749197667, + 47740.784207378885, + 47819.089068906265, + 47936.867279541286, + 48097.41418985093, + 48304.035297986884, + 48560.046249685445, + 48868.77283826748, + 49233.551004638466, + 49657.72683728844, + 50144.656572292166, + 50697.706593308794, + 51320.25343158221, + 52015.68376594086, + 52787.394422797894, + 53638.792376150894, + 50018.92548636452, + 50093.54360730163, + 50136.07320165755, + 50149.367313639596, + 50136.28913503963, + 50099.71200523409, + 50042.51941118409, + 49967.60498743522, + 49877.872516117866, + 49776.23592694679, + 49665.61929722149, + 49548.95685182608, + 49429.19296322916, + 49309.28215148405, + 49192.18908422855, + 49080.88857668517, + 48978.365591661, + 48887.61523954765, + 48811.64277832144, + 48753.46361354319, + 48716.103298358365, + 48702.59753349709, + 48715.99216727393, + 48759.343195588204, + 48835.71676192381, + 48948.18915734915, + 49099.84682051727, + 49293.78633766585, + 49533.11444261718, + 49820.94801677813, + 50160.414089140126, + 50554.64983627927, + 51006.80258235618, + 51520.02979911603, + 52097.49910588889, + 52742.38826958903, + 53457.885204715596, + 50051.04561059961, + 50075.02252720375, + 50068.25911159579, + 50033.81820878248, + 49974.77281135495, + 49894.20605948908, + 49795.21124094529, + 49680.89179106856, + 49554.36129278862, + 49418.74347661959, + 49277.17222066035, + 49132.79155059428, + 48988.75563968948, + 48848.22880879852, + 48714.385526358616, + 48590.41040839162, + 48479.49821850398, + 48384.85386788665, + 48309.69241531531, + 48257.23906715018, + 48230.72917733602, + 48233.40824740235, + 48268.53192646311, + 48339.366011216945, + 48449.18644594715, + 48601.27932252141, + 48798.94088039221, + 49045.47750659654, + 49344.20573575612, + 49698.45225007704, + 50111.55387935021, + 50586.85760095105, + 51127.72053983952, + 51737.50996856022, + 52419.60330724247, + 53177.388123599965, + 54014.26213293122, + 50646.75511651641, + 50723.53112290539, + 50767.70415546378, + 50782.1192461003, + 50769.63157430826, + 50733.10646716554, + 50675.419399334634, + 50599.45599306263, + 50508.112018181244, + 50404.29339210674, + 50290.916179840024, + 50170.90659396653, + 50047.20099465643, + 49922.74588966438, + 49800.49793432964, + 49683.42393157619, + 49574.50083191241, + 49476.71573343144, + 49393.065881810944, + 49326.558670313265, + 49280.211639785215, + 49257.052478658334, + 49260.119022948704, + 49292.45925625702, + 49357.13130976854, + 49457.203462253085, + 49595.75414006527, + 49775.871917144075, + 50000.65551501327, + 50273.21380278107, + 50596.665797140435, + 50974.140662368794, + 51408.777710328184, + 51903.72640046538, + 52462.146339811596, + 53087.20728298276, + 53782.08913217931, + 50639.73260754372, + 50664.42700515892, + 50658.101604871204, + 50623.80999298799, + 50564.61590340125, + 50483.59321758765, + 50383.825964608266, + 50268.4083211089, + 50140.44461131999, + 50003.04930705644, + 49859.34702771781, + 49712.47254028834, + 49565.5707593368, + 49421.79674701652, + 49284.3157130655, + 49156.30301480635, + 49040.94415714617, + 48941.434792576794, + 48860.98072117455, + 48802.79789060048, + 48770.11239610007, + 48766.16048050353, + 48794.18853422571, + 48857.45309526587, + 48959.22084920801, + 49102.76862922067, + 49291.383416057164, + 49528.362338055056, + 49817.01267113686, + 50160.6518388095, + 50562.60741216457, + 51026.217109878235, + 51554.82879821122, + 52151.800491008944, + 52820.5003497013, + 53564.30668330295, + 54386.607948412995, + 51274.88619130874, + 51353.65684597427, + 51399.314199120185, + 51414.6952703567, + 51402.647226878435, + 51366.02738346475, + 51307.703202479584, + 51230.55229387138, + 51137.46241517334, + 51031.3314715031, + 50915.06751556301, + 50791.58874764, + 50663.82351560554, + 50534.7103149158, + 50407.19778861145, + 50284.24472731779, + 50168.82006924479, + 50063.902900186884, + 49972.48245352326, + 49897.55811021758, + 49842.13939881815, + 49809.24599545796, + 49801.907723854376, + 49823.16455530963, + 49876.06660871043, + 49963.67415052801, + 50089.05759481828, + 50255.29750322179, + 50465.484584963655, + 50722.71969685354, + 51030.1138432858, + 51390.788176239344, + 51807.87399527759, + 52284.51274754879, + 52823.856027785485, + 53429.06557830505, + 54103.31328900944, + 51229.52389763957, + 51254.75188874584, + 51248.68445831535, + 51214.36593395633, + 51154.850790861456, + 51073.203651808064, + 50972.49928715808, + 50855.822614858036, + 50726.268700439075, + 50586.9427570169, + 50440.960145291865, + 50291.44637354884, + 50141.537097657405, + 49994.37812107168, + 49853.12539483038, + 49720.94501755682, + 49601.01323545895, + 49496.516442329244, + 49410.651179544926, + 49346.62413606763, + 49307.652148443645, + 49296.96220080403, + 49317.79142486418, + 49373.38709992434, + 49467.006652869146, + 49601.91765816791, + 49781.39783787457, + 50008.73506162764, + 50287.22734665028, + 50620.18285775015, + 51010.91990731964, + 51462.766955335705, + 51979.06260935966, + 52563.15562453784, + 53218.404903600844, + 53948.17949686401, + 54755.85860222728, + 51903.38838304463, + 51983.98935523009, + 52030.9708177673, + 52047.16177796783, + 52035.401390727806, + 51998.53895852801, + 51939.43393143376, + 51860.955907094954, + 51765.984630746214, + 51657.40999520659, + 51538.132040879886, + 51411.06095575438, + 51279.11707540305, + 51145.23088298342, + 51012.34300923763, + 50883.4042324924, + 50761.375478659094, + 50649.22782123361, + 50549.942481296515, + 50466.51082751294, + 50401.93437613258, + 50359.22479098982, + 50341.40388350358, + 50351.5036126774, + 50392.566085099366, + 50467.643554942224, + 50579.79842396337, + 50732.103241504614, + 50927.6407044926, + 51169.50365743839, + 51460.795092437824, + 51804.62814917114, + 52204.12611490322, + 52662.42242448357, + 53182.66066034655, + 53767.99455251065, + 54421.58797857928, + 51820.47006590953, + 51846.0471476608, + 51840.05702629846, + 51805.53477073145, + 51745.52559745323, + 51663.08487054188, + 51561.278101660115, + 51443.18095005513, + 51311.87922255891, + 51170.46887358787, + 51022.05600514306, + 50869.756866810225, + 50716.697855759594, + 50566.01551674609, + 50420.856542109126, + 50284.37777177282, + 50159.746193245854, + 50050.13894162145, + 49958.74329957754, + 49888.75669737659, + 49843.386712865635, + 49825.85107147638, + 49839.37764622513, + 49887.20445771272, + 49972.579674124594, + 50098.76161123084, + 50269.0187323862, + 50486.62964852981, + 50754.88311818566, + 51077.07804746217, + 51456.523490052445, + 51896.53864723418, + 52400.452867869535, + 52971.60564840539, + 53613.346632873305, + 54329.035612889296, + 55122.04252765404, + 52532.33101767634, + 52614.596883043676, + 52662.74115019447, + 52679.58481414174, + 52667.95901748302, + 52630.70505040055, + 52570.674350661044, + 52490.728503615836, + 52393.73924220096, + 52282.58844693688, + 52160.16814592883, + 52029.38051486655, + 51893.13787702439, + 51754.36270326133, + 51615.98761202091, + 51480.95536933131, + 51352.21888880527, + 51232.74123164013, + 51125.49560661788, + 51033.46537010509, + 50959.644026052854, + 50907.03522599702, + 50878.65276905787, + 50877.52060194041, + 50906.67281893414, + 50969.15366191321, + 51068.01752033648, + 51206.32893124717, + 51387.1625792733, + 51613.603296627465, + 51888.74606310677, + 52215.696006092956, + 52597.56840055245, + 53037.48866903604, + 53538.59238167949, + 54104.02525620272, + 54736.9431579107, + 52412.62135102506, + 52438.36240524904, + 52432.26831683951, + 52397.364896006184, + 52336.68810054326, + 52253.284035829594, + 52150.208954828646, + 52030.52925808835, + 51897.32149374142, + 51753.67235750506, + 51602.67869268109, + 51447.4474901559, + 51291.095888400596, + 51136.751173470766, + 50987.55077900661, + 50846.642286233015, + 50717.18342395938, + 50602.34206857966, + 50505.29624407261, + 50429.23412200138, + 50377.354021513755, + 50352.86440934224, + 50358.98389980383, + 50398.94125480018, + 50475.975383817444, + 50593.335343926396, + 50754.28033978269, + 50962.07972362608, + 51220.01299528136, + 51531.36980215769, + 51899.44993924891, + 52327.563349133416, + 52819.03012197431, + 53377.18049551899, + 54005.35485509996, + 54706.90373363381, + 55485.18781162208, + 53161.783074804945, + 53245.54731543467, + 53294.691988840015, + 53312.030077735326, + 53300.38471241963, + 53262.58917077651, + 53201.48687827416, + 53119.93140796534, + 53020.78648048751, + 52906.92596406255, + 52781.23387449707, + 52646.604375182316, + 52505.941777093976, + 52362.16053879256, + 52218.185266422945, + 52076.95071371474, + 51941.401781982124, + 51814.49352012388, + 51699.1911246234, + 51598.4699395487, + 51515.31545655224, + 51452.723314871335, + 51413.69930132768, + 51401.25935032777, + 51418.4295438624, + 51468.246111507266, + 51553.75543042256, + 51678.01402535296, + 51844.088568627965, + 52055.05588016144, + 52314.00292745213, + 52624.02682558307, + 52988.234837222, + 53409.74437262133, + 53891.68298961818, + 54437.18839363395, + 55049.4084376749, + 53006.02764530644, + 53031.746938504635, + 53025.36699160645, + 52989.90435612227, + 52928.38573114712, + 52843.847963360604, + 52739.33804702688, + 52617.913123994666, + 52482.64048369746, + 52336.59756315315, + 52182.87194696435, + 52024.561367318165, + 51864.77370398649, + 51706.62698432567, + 51553.24938327661, + 51407.77922336495, + 51273.36497470088, + 51153.16525497911, + 51050.348829479095, + 50968.09461106478, + 50909.59166018466, + 50878.039184872025, + 50876.646540744616, + 50908.633231004846, + 50977.228906439566, + 51085.67336542041, + 51237.216553903614, + 51435.11856542984, + 51682.64964112457, + 51983.09016969767, + 52339.73068744386, + 52755.8718782422, + 53234.8245735564, + 53779.90975243495, + 54394.4585415108, + 55081.812215001526, + 55845.32219470925, + 53791.81318768052, + 53876.9081920718, + 53926.88977979115, + 53944.56292125443, + 53932.742734462016, + 53894.25448499891, + 53831.9335860348, + 53748.62559832376, + 53647.18623020473, + 53530.48133760106, + 53401.38692402073, + 53262.78914055637, + 53117.5842858852, + 52968.678806269, + 52818.989295554195, + 52671.44249517178, + 52528.97529413741, + 52394.53472905121, + 52271.077984098025, + 52161.57239104725, + 52068.99542925289, + 51996.334725653636, + 51946.58805477249, + 51922.7633387174, + 51927.87864718082, + 51964.96219743963, + 52037.05235435543, + 52147.197630374445, + 52298.45668552754, + 52493.89832743004, + 52736.60151128204, + 53029.65533986805, + 53376.159063557345, + 53779.22208030358, + 54241.9639356453, + 54767.51432270539, + 55359.01308219161, + 53600.738494722966, + 53626.24967807068, + 53619.40136591609, + 53583.20085107044, + 53520.665573929335, + 53434.8231224732, + 53328.711232266985, + 53205.377786460085, + 53067.88081578678, + 52919.28849856572, + 52762.67916070019, + 52601.141275678274, + 52437.773464572354, + 52275.684496039605, + 52117.993286321755, + 51967.82889924514, + 51828.33054622073, + 51702.647586243926, + 51593.93952589496, + 51505.37601933855, + 51440.13686832396, + 51401.41202218524, + 51392.40157784071, + 51416.315779793695, + 51476.37502013186, + 51575.809838527486, + 51717.86092223749, + 51905.77910610337, + 52142.82537255139, + 52432.270851592155, + 52777.396820821035, + 53181.494705418, + 53647.86607814747, + 54179.82265935848, + 54780.68631698502, + 55453.78906654514, + 56202.47307114195, + 54422.48964320192, + 54508.74670627256, + 54559.40062278413, + 54577.248350853864, + 54565.096996183616, + 54525.76381205983, + 54462.076199353556, + 54376.87170652034, + 54272.99802960051, + 54153.313012218845, + 54020.68464558475, + 53877.991068492345, + 53728.1205673202, + 53573.97157603154, + 53418.452676174194, + 53264.4825968806, + 53114.99021486783, + 52972.91455443742, + 52841.20478747564, + 52722.82023345338, + 52620.73035942596, + 52537.91478003349, + 52477.363257500576, + 52442.07570163645, + 52435.06216983488, + 52459.3428670743, + 52517.94814591784, + 52613.91850651299, + 52750.30459659206, + 52930.16721147184, + 53156.5772940538, + 53432.6159348239, + 53761.37437185282, + 54145.95399079574, + 54589.466324892455, + 55095.03305496739, + 55665.78600942963, + 54196.80309889271, + 54221.91920823916, + 54214.419408734386, + 54177.301734490284, + 54113.574367203364, + 54026.25563615472, + 53918.374018210045, + 53792.96813781951, + 53653.086767018125, + 53501.788825425334, + 53342.14338024519, + 53177.22964626636, + 53010.136985862155, + 52843.96490899048, + 52681.82307319375, + 52526.831283599095, + 52382.11949291815, + 52250.82780144719, + 52136.10645706715, + 52041.11585524346, + 51969.0265390262, + 51923.01919905007, + 51906.28467353431, + 51922.02394828288, + 51973.448156684106, + 52063.77857971115, + 52196.24664592175, + 52374.09393145799, + 52600.57216004698, + 52878.943202999995, + 53212.47907921326, + 53604.46195516736, + 54058.18414492759, + 54576.94811014377, + 55164.06646005049, + 55822.86195146664, + 56556.667488796025, + 54492.60771329752, + 54578.983432695764, + 54629.70184535356, + 54647.55901913211, + 54635.36116947708, + 54595.9246594188, + 54532.07599957224, + 54446.65184813682, + 54342.499010896805, + 54222.47444122078, + 54089.44524006213, + 53946.28865595877, + 53795.8920850332, + 53641.153070992616, + 53484.97930512861, + 53330.288626317604, + 53180.00902102046, + 53037.07862328275, + 52904.44571473453, + 52785.06872459059, + 52681.916229650145, + 52597.96695429729, + 52536.2097705003, + 52499.643697812455, + 52491.27790337149, + 52514.131701899634, + 52571.234555703784, + 52665.62607467552, + 52800.356016290934, + 52978.48428561078, + 53203.080935280326, + 53477.22616552952, + 53804.01032417277, + 54186.53390660936, + 54627.90755582289, + 55131.25206238175, + 55699.6983644387, + 54263.11824297926, + 54288.17888744332, + 54280.59536982547, + 54243.3646954925, + 54179.49401739566, + 54092.00063607081, + 53983.91199963854, + 53858.26570380385, + 53718.109491856514, + 53566.50125467077, + 53406.50903070552, + 53241.21100600431, + 53073.69551419519, + 52907.06103649089, + 52744.416201688626, + 52588.87978617041, + 52443.58071390263, + 52311.65805643641, + 52196.26103290746, + 52100.549010036106, + 52027.691502127134, + 51980.8681710702, + 51963.268826339176, + 51978.09342499295, + 52028.55207167477, + 52117.86501861247, + 52249.262665618524, + 52425.985560090034, + 52651.28439700876, + 52928.42001894094, + 53260.66341603752, + 53651.29572603391, + 54103.60823425014, + 54620.90237359101, + 55206.48972454589, + 55863.69201518847, + 56595.84112117729, + 76330.62911266595, + 76351.1365117061, + 76322.03483610057, + 76245.85307709203, + 76125.13037350762, + 75962.41601175917, + 75760.26942584314, + 75521.2601973405, + 75247.9680554168, + 74942.9828768224, + 74608.90468589205, + 74248.34365454514, + 73863.92010228559, + 73458.26449620217, + 73034.0174509681, + 72593.82972884097, + 72140.36223966327, + 71676.28604086224, + 71204.2823374492, + 70727.04248202055, + 70247.26797475704, + 69767.67046342396, + 69290.97174337138, + 68819.90375753408, + 68357.20859643101, + 67905.63849816612, + 67467.95584842777, + 67046.93318048907, + 66645.3531752074, + 66266.00866102515, + 65911.70261396907, + 65585.24815765071, + 65289.468563265786, + 65027.19724959496, + 64801.27778300365, + 64614.56387744153, + 64469.91939444299, + 75224.93654501859, + 75124.96317116644, + 74986.01126384843, + 74810.76920512378, + 74601.93552463625, + 74362.21889961428, + 74094.33815487087, + 73801.02226280364, + 73485.01034339466, + 73149.05166421097, + 72795.90564040383, + 72428.34183470928, + 72049.13995744787, + 71661.08986652485, + 71266.9915674301, + 70869.65521323783, + 70471.90110460705, + 70076.55968978166, + 69686.47156458956, + 69304.48747244372, + 68933.46830434148, + 68576.28509886476, + 68235.81904218014, + 67914.96146803914, + 67616.61385777716, + 67343.6878403148, + 67099.10519215705, + 66885.79783739356, + 66706.70784769827, + 66564.7874423303, + 66462.99898813288, + 66404.31499953414, + 66391.7181385465, + 66428.20121476709, + 66516.76718537798, + 66660.42915514542, + 66862.21037642045 + ], + "input_power": [ + 14624.756962200001, + 15045.284429814814, + 15466.495823237045, + 15888.391142466671, + 16310.970387503705, + 16734.233558348154, + 17158.180655000004, + 17582.811677459256, + 18008.12662572593, + 18434.125499799997, + 18860.80829968149, + 19288.17502537038, + 19716.225676866663, + 20144.960254170364, + 20574.378757281487, + 21004.4811862, + 21435.267540925932, + 21866.73782145926, + 22298.8920278, + 22731.730159948158, + 23165.25221790371, + 23599.458201666668, + 24034.348111237043, + 24469.921946614817, + 24906.179707799995, + 25343.121394792597, + 25780.747007592592, + 26219.056546199998, + 26658.050010614817, + 27097.72740083704, + 27538.088716866667, + 27979.13395870371, + 28420.863126348144, + 28863.276219800005, + 29306.373239059274, + 29750.154184125924, + 30194.619055, + 15512.236201000003, + 15963.532388259257, + 16415.512501325935, + 16868.176540200006, + 17321.52450488148, + 17775.556395370375, + 18230.27221166667, + 18685.67195377037, + 19141.755621681492, + 19598.5232154, + 20055.974734925938, + 20514.110180259268, + 20972.9295514, + 21432.432848348144, + 21892.620071103705, + 22353.491219666663, + 22815.04629403704, + 23277.28529421482, + 23740.2082202, + 24203.815071992598, + 24668.105849592597, + 25133.080553, + 25598.739182214827, + 26065.08173723704, + 26532.10821806666, + 26999.818624703712, + 27468.212957148153, + 27937.291215399997, + 28407.053399459266, + 28877.499509325928, + 29348.629544999996, + 29820.44350648149, + 30292.94139377037, + 30766.123206866676, + 31239.98894577038, + 31714.538610481482, + 32189.772200999996, + 14623.778380210004, + 15044.211815344814, + 15465.329176287045, + 15887.130463036669, + 16309.6156755937, + 16732.784813958155, + 17156.637878129997, + 17581.174868109254, + 18006.39578389593, + 18432.30062549, + 18858.88939289149, + 19286.162086100376, + 19714.118705116667, + 20142.75924994037, + 20572.083720571492, + 21002.092117009997, + 21432.784439255935, + 21864.16068730926, + 22296.22086117, + 22728.964960838155, + 23162.392986313705, + 23596.504937596663, + 24031.300814687045, + 24466.78061758482, + 24902.944346289998, + 25339.792000802598, + 25777.323581122597, + 26215.539087249996, + 26654.43851918482, + 27094.021876927043, + 27534.289160476663, + 27975.240369833704, + 28416.87550499815, + 28859.194565970003, + 29302.19755274927, + 29745.88446533593, + 30190.255303729995, + 15512.963867442002, + 15964.139707647033, + 16415.99947365949, + 16868.54316547934, + 17321.77078310659, + 17775.682326541264, + 18230.277795783335, + 18685.55719083281, + 19141.520511689705, + 19598.167758353997, + 20055.498930825717, + 20513.514029104823, + 20972.21305319133, + 21431.59600308526, + 21891.6628787866, + 22352.413680295336, + 22813.84840761149, + 23275.967060735038, + 23738.769639666, + 24202.25614440438, + 24666.42657495015, + 25131.28093130333, + 25596.819213463936, + 26063.04142143193, + 26529.94755520733, + 26997.537614790155, + 27465.811600180376, + 27934.769511377996, + 28404.41134838305, + 28874.737111195478, + 29345.74679981533, + 29817.440414242596, + 30289.81795447726, + 30762.87942051934, + 31236.624812368824, + 31711.05413002571, + 32186.167373489985, + 14615.270395000003, + 15034.857537814813, + 15455.128606437045, + 15876.08360086667, + 16297.7225211037, + 16720.045367148152, + 17143.052139000003, + 17566.742836659258, + 17991.117460125926, + 18416.176009400002, + 18841.918484481488, + 19268.344885370374, + 19695.455212066674, + 20123.249464570363, + 20551.727642881484, + 20980.889747, + 21410.735776925932, + 21841.265732659263, + 22272.479614199998, + 22704.377421548157, + 23136.959154703705, + 23570.22481366667, + 24004.174398437044, + 24438.807909014817, + 24874.125345399996, + 25310.126707592597, + 25746.811995592594, + 26184.181209399994, + 26622.23434901482, + 27060.971414437037, + 27500.392405666666, + 27940.497322703708, + 28381.286165548154, + 28822.75893420001, + 29264.915628659266, + 29707.75624892593, + 30151.280795, + 15519.812118120002, + 15969.904834837032, + 16420.681477361486, + 16872.142045693337, + 17324.28653983259, + 17777.114959779265, + 18230.627305533337, + 18684.823577094816, + 19139.70377446371, + 19595.267897640002, + 20051.515946623713, + 20508.44792141482, + 20966.063822013333, + 21424.363648419258, + 21883.3474006326, + 22343.015078653338, + 22803.36668248149, + 23264.402212117042, + 23726.121667559997, + 24188.525048810377, + 24651.61235586816, + 25115.383588733333, + 25579.83874740594, + 26044.977831885928, + 26510.800842173332, + 26977.307778268154, + 27444.49864017037, + 27912.373427879997, + 28380.932141397047, + 28850.17478072149, + 29320.101345853334, + 29790.7118367926, + 30262.006253539268, + 30733.98459609335, + 31206.646864454822, + 31679.99305862371, + 32154.023178599993, + 14607.301064650002, + 15026.041915144811, + 15445.466691447044, + 15865.57539355667, + 16286.3680214737, + 16707.844575198153, + 17130.00505473, + 17552.849460069257, + 17976.37779121593, + 18400.59004817, + 18825.48623093149, + 19251.066339500372, + 19677.330373876663, + 20104.278334060364, + 20531.910220051486, + 20960.22603185, + 21389.225769455934, + 21818.909432869263, + 22249.27702209, + 22680.328537118156, + 23112.063977953705, + 23544.48334459667, + 23977.586637047043, + 24411.37385530482, + 24845.844999369998, + 25281.0000692426, + 25716.839064922595, + 26153.361986409996, + 26590.568833704823, + 27028.45960680704, + 27467.03430571667, + 27906.292930433712, + 28346.235480958152, + 28786.861957290013, + 29228.172359429274, + 29670.16668737593, + 30112.844941129995, + 15527.199023658002, + 15976.208616887034, + 16425.90213592349, + 16876.279580767336, + 17327.340951418588, + 17779.086247877265, + 18231.515470143335, + 18684.62861821681, + 19138.425692097713, + 19592.906691786004, + 20048.071617281716, + 20503.92046858482, + 20960.453245695335, + 21417.669948613253, + 21875.5705773386, + 22334.155131871335, + 22793.423612211496, + 23253.37601835904, + 23714.012350314002, + 24175.33260807638, + 24637.336791646154, + 25100.02490102333, + 25563.396936207937, + 26027.45289719993, + 26492.192783999333, + 26957.61659660616, + 27423.72433502038, + 27890.515999242005, + 28357.99158927105, + 28826.151105107485, + 29294.994546751328, + 29764.5219142026, + 30234.733207461268, + 30705.628426527346, + 31177.207571400824, + 31649.47064208171, + 32122.41763856999, + 14599.87038916, + 15017.764947334812, + 15436.343431317044, + 15855.605841106666, + 16275.552176703699, + 16696.18243810815, + 17117.496625319996, + 17539.494738339257, + 17962.176777165925, + 18385.542741800004, + 18809.59263224149, + 19234.326448490374, + 19659.74419054667, + 20085.84585841036, + 20512.631452081485, + 20940.10097156, + 21368.254416845935, + 21797.09178793926, + 22226.613084839995, + 22656.818307548154, + 23087.7074560637, + 23519.28053038667, + 23951.537530517046, + 24384.478456454817, + 24818.1033082, + 25252.412085752596, + 25687.4047891126, + 26123.081418279995, + 26559.44197325482, + 26996.486454037033, + 27434.21486062667, + 27872.627193023705, + 28311.723451228147, + 28751.50363524001, + 29191.96774505926, + 29633.115780685926, + 30074.947742119995, + 15535.124584056002, + 15983.051053797035, + 16431.661449345487, + 16880.955770701337, + 17330.93401786459, + 17781.596190835266, + 18232.942289613336, + 18684.972314198814, + 19137.68626459171, + 19591.084140791998, + 20045.165942799715, + 20499.93167061482, + 20955.381324237336, + 21411.514903667256, + 21868.332408904596, + 22325.83383994933, + 22784.01919680149, + 23242.88847946104, + 23702.441687927992, + 24162.67882220238, + 24623.599882284158, + 25085.204868173336, + 25547.49377986994, + 26010.466617373928, + 26474.12338068533, + 26938.464069804155, + 27403.488684730375, + 27869.197225464, + 28335.58969200504, + 28802.66608435348, + 29270.42640250933, + 29738.870646472595, + 30207.998816243256, + 30677.810911821343, + 31148.306933206823, + 31619.486880399712, + 32091.350753399995, + 14592.978368530004, + 15010.026634384812, + 15427.758826047046, + 15846.17494351667, + 16265.274986793702, + 16685.058955878154, + 17105.526850770006, + 17526.678671469257, + 17948.51441797593, + 18371.034090290002, + 18794.237688411493, + 19218.12521234038, + 19642.696662076665, + 20067.952037620365, + 20493.891338971487, + 20920.514566129998, + 21347.821719095933, + 21775.812797869265, + 22204.487802449996, + 22633.846732838156, + 23063.889589033708, + 23494.616371036667, + 23926.027078847044, + 24358.121712464817, + 24790.900271889997, + 25224.362757122602, + 25658.509168162596, + 26093.339505009997, + 26528.853767664823, + 26965.05195612704, + 27401.934070396666, + 27839.500110473713, + 28277.750076358145, + 28716.683968050012, + 29156.301785549265, + 29596.60352885593, + 30037.589197969995, + 15543.588799314004, + 15990.432145567042, + 16437.959417627488, + 16886.17061549534, + 17335.065739170594, + 17784.644788653266, + 18234.907763943338, + 18685.854665040813, + 19137.48549194571, + 19589.800244658003, + 20042.798923177717, + 20496.48152750482, + 20950.848057639334, + 21405.898513581255, + 21861.6328953306, + 22318.051202887335, + 22775.153436251494, + 23232.939595423042, + 23691.409680402, + 24150.56369118838, + 24610.401627782154, + 25070.923490183333, + 25532.129278391934, + 25994.01899240793, + 26456.592632231335, + 26919.850197862153, + 27383.79168930037, + 27848.417106546003, + 28313.726449599046, + 28779.71971845948, + 29246.396913127337, + 29713.7580336026, + 30181.803079885263, + 30650.53205197534, + 31119.944949872825, + 31590.04177357771, + 32060.822523089995, + 14586.625002760002, + 15002.826976294813, + 15419.712875637046, + 15837.282700786669, + 16255.536451743701, + 16674.47412850815, + 17094.09573108, + 17514.401259459257, + 17935.39071364593, + 18357.064093639998, + 18779.42139944149, + 19202.462631050374, + 19626.18778846667, + 20050.59687169037, + 20475.689880721486, + 20901.466815559997, + 21327.92767620593, + 21755.072462659267, + 22182.901174919993, + 22611.413812988158, + 23040.610376863708, + 23470.490866546665, + 23901.055282037043, + 24332.30362333482, + 24764.23589044, + 25196.852083352594, + 25630.152202072593, + 26064.1362466, + 26498.804216934823, + 26934.156113077042, + 27370.191935026665, + 27806.91168278371, + 28244.31535634815, + 28682.402955720016, + 29121.174480899266, + 29560.629931885927, + 30000.76930868, + 15552.591669432002, + 15998.351892197034, + 16444.796040769488, + 16891.92411514934, + 17339.736115336593, + 17788.232041331266, + 18237.411893133336, + 18687.275670742813, + 19137.823374159707, + 19589.055003383997, + 20040.970558415713, + 20493.57003925482, + 20946.853445901335, + 21400.820778355253, + 21855.472036616597, + 22310.807220685332, + 22766.82633056149, + 23223.52936624504, + 23680.916327736002, + 24138.987215034384, + 24597.742028140154, + 25057.180767053334, + 25517.303431773937, + 25978.11002230193, + 26439.60053863733, + 26901.774980780152, + 27364.633348730375, + 27828.175642488, + 28292.401862053048, + 28757.31200742548, + 29222.906078605334, + 29689.1840755926, + 30156.14599838727, + 30623.79184698934, + 31092.121621398823, + 31561.135321615704, + 32030.832947639992, + 14583.973277040892, + 14999.798989010227, + 15416.308626786986, + 15833.50219037114, + 16251.379679762704, + 16669.941094961683, + 17089.18643596806, + 17509.11570278184, + 17929.72889540304, + 18351.02601383164, + 18773.00705806766, + 19195.672028111076, + 19619.020923961893, + 20043.053745620116, + 20467.770493085765, + 20893.17116635881, + 21319.25576543927, + 21746.02429032713, + 22173.476741022387, + 22601.613117525078, + 23030.43341983516, + 23459.937647952647, + 23890.12580187755, + 24320.99788160985, + 24752.553887149556, + 25184.79381849669, + 25617.71767565121, + 26051.32545861314, + 26485.617167382494, + 26920.592801959243, + 27356.2523623434, + 27792.59584853497, + 28229.623260533936, + 28667.33459834032, + 29105.729861954103, + 29544.809051375298, + 29984.57216660389, + 15556.767326188698, + 16002.045992250964, + 16448.00858412065, + 16894.655101797733, + 17341.985545282223, + 17789.999914574135, + 18238.698209673435, + 18688.08043058015, + 19138.146577294283, + 19588.896649815808, + 20040.33064814476, + 20492.4485722811, + 20945.25042222485, + 21398.736197976006, + 21852.90589953458, + 22307.759526900554, + 22763.29708007395, + 23219.518559054733, + 23676.423963842924, + 24134.013294438544, + 24592.286550841553, + 25051.24373305196, + 25510.88484106981, + 25971.209874895034, + 26432.21883452767, + 26893.911719967728, + 27356.288531215185, + 27819.34926827004, + 28283.093931132324, + 28747.522519801994, + 29212.63503427908, + 29678.43147456359, + 30144.91184065548, + 30612.076132554805, + 31079.92435026151, + 31548.45649377564, + 32017.672563097156, + 14580.810291850003, + 14996.165973064815, + 15412.205580087046, + 15828.92911291667, + 16246.336571553702, + 16664.42795599816, + 17083.20326625, + 17502.662502309257, + 17922.805664175932, + 18343.632751850004, + 18765.143765331493, + 19187.33870462038, + 19610.21756971667, + 20033.780360620367, + 20458.027077331488, + 20882.95771985, + 21308.572288175936, + 21734.870782309263, + 22161.853202249997, + 22589.519547998156, + 23017.86981955371, + 23446.90401691667, + 23876.622140087045, + 24307.024189064818, + 24738.11016385, + 25169.8800644426, + 25602.33389084259, + 26035.471643049998, + 26469.29332106482, + 26903.798924887044, + 27338.988454516664, + 27774.861909953714, + 28211.41929119815, + 28648.660598250004, + 29086.585831109263, + 29525.194989775926, + 29964.488074249995, + 15562.133194410004, + 16006.810293687038, + 16452.17131877149, + 16898.21626966333, + 17344.945146362592, + 17792.357948869263, + 18240.454677183337, + 18689.23533130481, + 19138.69991123371, + 19588.84841697, + 20039.680848513715, + 20491.19720586482, + 20943.397489023333, + 21396.281697989256, + 21849.849832762604, + 22304.101893343337, + 22759.03787973149, + 23214.657791927042, + 23670.96162993, + 24127.94939374038, + 24585.621083358154, + 25043.976698783335, + 25503.016240015935, + 25962.73970705593, + 26423.147099903334, + 26884.238418558154, + 27346.01366302037, + 27808.47283329, + 28271.61592936705, + 28735.442951251487, + 29199.95389894333, + 29665.1487724426, + 30131.02757174927, + 30597.590296863345, + 31064.836947784825, + 31532.767524513703, + 32001.38202705, + 14575.534235800002, + 14990.043624694812, + 15405.236939397042, + 15821.114179906666, + 16237.6753462237, + 16654.920438348152, + 17072.849456280004, + 17491.462400019256, + 17910.759269565933, + 18330.74006492, + 18751.40478608149, + 19172.753433050377, + 19594.786005826663, + 20017.502504410364, + 20440.90292880149, + 20864.987279, + 21289.755555005937, + 21715.20775681926, + 22141.343884439997, + 22568.16393786815, + 22995.667917103703, + 23423.855822146666, + 23852.72765299704, + 24282.283409654818, + 24712.523092119998, + 25143.4467003926, + 25575.054234472595, + 26007.34569436, + 26440.321080054822, + 26873.980391557037, + 27308.323628866667, + 27743.35079198371, + 28179.061880908142, + 28615.456895640007, + 29052.535836179268, + 29490.29870252593, + 29928.745494680003, + 15572.213374248004, + 16015.807350037036, + 16460.085251633485, + 16905.047079037337, + 17350.69283224859, + 17797.022511267267, + 18244.036116093335, + 18691.733646726814, + 19140.115103167707, + 19589.180485415996, + 20038.929793471718, + 20489.36302733482, + 20940.480187005334, + 21392.281272483255, + 21844.7662837686, + 22297.935220861335, + 22751.788083761494, + 23206.324872469042, + 23661.545586984, + 24117.450227306374, + 24574.038793436157, + 25031.311285373333, + 25489.26770311793, + 25947.90804666993, + 26407.23231602933, + 26867.24051119616, + 27327.932632170377, + 27789.308678952002, + 28251.368651541045, + 28714.11254993749, + 29177.540374141336, + 29641.6521241526, + 30106.447799971265, + 30571.927401597346, + 31038.090929030826, + 31504.938382271714, + 31972.469761319997, + 14570.796834610002, + 14984.459931184816, + 15398.806953567042, + 15813.83790175667, + 16229.5527757537, + 16645.951575558156, + 17063.034301170002, + 17480.80095258926, + 17899.25152981593, + 18318.38603285, + 18738.204461691494, + 19158.706816340382, + 19579.893096796666, + 20001.76330306037, + 20424.31743513149, + 20847.55549301, + 21271.477476695938, + 21696.083386189264, + 22121.37322149, + 22547.346982598152, + 22974.004669513703, + 23401.346282236667, + 23829.37182076705, + 24258.081285104814, + 24687.474675250003, + 25117.551991202592, + 25548.3132329626, + 25979.758400529998, + 26411.887493904822, + 26844.700513087042, + 27278.197458076673, + 27712.37832887371, + 28147.24312547815, + 28582.79184789001, + 29019.024496109272, + 29455.941070135927, + 29893.54156997, + 15582.832208946005, + 16025.343061247035, + 16468.537839355493, + 16912.416543271338, + 17356.979172994594, + 17802.225728525264, + 18248.15620986334, + 18694.770617008813, + 19142.06894996171, + 19590.051208722, + 20038.71739328972, + 20488.067503664824, + 20938.101539847336, + 21388.81950183725, + 21840.2213896346, + 22292.307203239336, + 22745.076942651493, + 23198.530607871042, + 23652.668198898, + 24107.489715732376, + 24562.995158374153, + 25019.184526823337, + 25476.05782107994, + 25933.615041143934, + 26391.856187015328, + 26850.781258694155, + 27310.390256180377, + 27770.683179474003, + 28231.660028575046, + 28693.32080348348, + 29155.665504199333, + 29618.694130722597, + 30082.406683053265, + 30546.80316119135, + 31011.88356513682, + 31477.647894889713, + 31944.096150449997, + 14566.59808828, + 14979.414892534814, + 15392.91562259704, + 15807.100278466667, + 16221.968860143705, + 16637.52136762815, + 17053.75780092, + 17470.67816001926, + 17888.282444925935, + 18306.570655639996, + 18725.542792161486, + 19145.198854490376, + 19565.53884262666, + 19986.56275657037, + 20408.270596321483, + 20830.66236188, + 21253.738053245932, + 21677.49767041926, + 22101.941213399998, + 22527.068682188154, + 22952.880076783706, + 23379.375397186664, + 23806.554643397045, + 24234.417815414818, + 24662.964913239997, + 25092.1959368726, + 25522.110886312592, + 25952.709761559996, + 26383.99256261482, + 26815.95928947704, + 27248.60994214666, + 27681.94452062371, + 28115.96302490815, + 28550.66545500001, + 28986.051810899262, + 29422.122092605918, + 29858.876300119988, + 15593.989698504001, + 16035.417427317032, + 16477.52908193749, + 16920.32466236534, + 17363.804168600593, + 17807.967600643267, + 18252.81495849333, + 18698.34624215081, + 19144.56145161571, + 19591.460586888003, + 20039.043647967712, + 20487.31063485482, + 20936.261547549337, + 21385.896386051256, + 21836.215150360593, + 22287.217840477333, + 22738.90445640149, + 23191.274998133034, + 23644.329465672, + 24098.06785901838, + 24552.49017817215, + 25007.59642313333, + 25463.386593901938, + 25919.86069047793, + 26377.01871286133, + 26834.860661052153, + 27293.386535050373, + 27752.596334855993, + 28212.49006046904, + 28673.067711889486, + 29134.32928911733, + 29596.2747921526, + 30058.904220995268, + 30522.21757564534, + 30986.214856102823, + 31450.896062367705, + 31916.261194439998, + 14562.937996810002, + 14974.908508744811, + 15387.56294648704, + 15800.90131003667, + 16214.923599393704, + 16629.629814558153, + 17045.01995553, + 17461.094022309255, + 17877.852014895932, + 18295.293933290002, + 18713.41977749149, + 19132.229547500378, + 19551.723243316665, + 19971.900864940366, + 20392.762412371485, + 20814.30788561, + 21236.53728465593, + 21659.450609509266, + 22083.047860169998, + 22507.329036638155, + 22932.29413891371, + 23357.943166996665, + 23784.276120887043, + 24211.29300058482, + 24638.993806089995, + 25067.378537402597, + 25496.4471945226, + 25926.199777449998, + 26356.636286184825, + 26787.75672072704, + 27219.561081076667, + 27652.049367233707, + 28085.221579198147, + 28519.077716970012, + 28953.617780549266, + 29388.84176993593, + 29824.74968513, + 15605.685842922001, + 16046.030448247035, + 16487.058979379486, + 16928.771436319337, + 17371.16781906659, + 17814.248127621264, + 18258.012361983336, + 18702.46052215281, + 19147.59260812971, + 19593.408619914, + 20039.908557505714, + 20487.09242090482, + 20934.960210111338, + 21383.511925125254, + 21832.7475659466, + 22282.667132575334, + 22733.270625011493, + 23184.55804325504, + 23636.529387306, + 24089.184657164376, + 24542.523852830152, + 24996.54697430333, + 25451.254021583936, + 25906.64499467193, + 26362.71989356733, + 26819.478718270155, + 27276.92146878038, + 27735.048145098004, + 28193.858747223047, + 28653.35327515548, + 29113.531728895334, + 29574.394108442608, + 30035.940413797263, + 30498.170644959348, + 30961.08480192882, + 31424.682884705715, + 31888.964893289995, + 14559.8165602, + 14970.940779814811, + 15382.74892523704, + 15795.240996466668, + 16208.4169935037, + 16622.276916348153, + 17036.820764999997, + 17452.048539459258, + 17867.96023972593, + 18284.555865799997, + 18701.83541768149, + 19119.798895370375, + 19538.446298866664, + 19957.777628170363, + 20377.792883281487, + 20798.492064199996, + 21219.87517092593, + 21641.94220345926, + 22064.693161799994, + 22488.128045948153, + 22912.246855903704, + 23337.049591666662, + 23762.536253237038, + 24188.706840614817, + 24615.561353799996, + 25043.0997927926, + 25471.322157592593, + 25900.228448199996, + 26329.818664614817, + 26760.09280683704, + 27191.050874866665, + 27622.692868703703, + 28055.018788348145, + 28488.02863380001, + 28921.72240505926, + 29356.10010212593, + 29791.161724999994, + 15617.9206422, + 16057.18212403703, + 16497.12753168149, + 16937.756865133335, + 17379.07012439259, + 17821.067309459264, + 18263.748420333337, + 18707.113457014813, + 19151.162419503707, + 19595.8953078, + 20041.312121903713, + 20487.412861814824, + 20934.19752753333, + 21381.666119059257, + 21829.8186363926, + 22278.65507953333, + 22728.175448481492, + 23178.379743237037, + 23629.267963799997, + 24080.84011017038, + 24533.096182348152, + 24986.03618033333, + 25439.660104125935, + 25893.96795372593, + 26348.959729133327, + 26804.635430348157, + 27260.99505737037, + 27718.038610199997, + 28175.766088837045, + 28634.177493281484, + 29093.27282353333, + 29553.052079592602, + 30013.515261459266, + 30474.662369133344, + 30936.493402614826, + 31399.00836190371, + 31862.207246999995, + 14557.233778450005, + 14967.511705744815, + 15378.473558847045, + 15790.119337756669, + 16202.449042473703, + 16615.46267299815, + 17029.160229330002, + 17443.541711469254, + 17858.607119415934, + 18274.35645317, + 18690.789712731494, + 19107.906898100377, + 19525.70800927667, + 19944.193046260367, + 20363.36200905148, + 20783.21489765, + 21203.751712055935, + 21624.972452269267, + 22046.877118289998, + 22469.465710118155, + 22892.738227753707, + 23316.694671196663, + 23741.335040447048, + 24166.65933550482, + 24592.667556370005, + 25019.359703042603, + 25446.735775522597, + 25874.79577381, + 26303.539697904824, + 26732.96754780704, + 27163.079323516668, + 27593.87502503371, + 28025.354652358146, + 28457.51820549001, + 28890.365684429267, + 29323.89708917593, + 29758.112419729998, + 15630.694096338006, + 16068.872454687036, + 16507.73473884349, + 16947.28094880734, + 17387.511084578593, + 17828.425146157264, + 18270.02313354334, + 18712.305046736812, + 19155.27088573771, + 19598.920650546002, + 20043.25434116171, + 20488.271957584824, + 20933.973499815336, + 21380.35896785326, + 21827.428361698596, + 22275.181681351332, + 22723.61892681149, + 23172.74009807904, + 23622.545195154, + 24073.03421803638, + 24524.207166726155, + 24976.064041223333, + 25428.604841527937, + 25881.82956763993, + 26335.738219559335, + 26790.330797286155, + 27245.60730082038, + 27701.567730162005, + 28158.212085311046, + 28615.540366267487, + 29073.55257303133, + 29532.2487056026, + 29991.62876398126, + 30451.692748167345, + 30912.440658160827, + 31373.87249396171, + 31835.988255569995, + 14555.189651560002, + 14964.621286534817, + 15374.736847317045, + 15785.536333906672, + 16197.019746303702, + 16609.187084508154, + 17022.038348520004, + 17435.573538339257, + 17849.79265396593, + 18264.695695400005, + 18680.282662641494, + 19096.553555690378, + 19513.50837454667, + 19931.147119210364, + 20349.46978968149, + 20768.47638596, + 21188.166908045936, + 21608.541355939265, + 22029.599729640002, + 22451.342029148156, + 22873.768254463706, + 23296.878405586667, + 23720.672482517046, + 24145.150485254824, + 24570.312413800002, + 24996.158268152598, + 25422.688048312597, + 25849.901754280003, + 26277.799386054827, + 26706.380943637047, + 27135.64642702667, + 27565.595836223714, + 27996.229171228144, + 28427.546432040013, + 28859.547618659268, + 29292.23273108593, + 29725.60176932, + 15644.006205336005, + 16081.101440197035, + 16518.88060086549, + 16957.343687341337, + 17396.49069962459, + 17836.321637715264, + 18276.83650161334, + 18718.035291318818, + 19159.918006831715, + 19602.484648152, + 20045.735215279718, + 20489.669708214824, + 20934.288126957337, + 21379.590471507254, + 21825.5767418646, + 22272.24693802934, + 22719.601060001496, + 23167.63910778104, + 23616.361081368002, + 24065.766980762382, + 24515.856805964155, + 24966.630556973338, + 25418.08823378994, + 25870.229836413935, + 26323.055364845335, + 26776.56481908416, + 27230.758199130378, + 27685.635504984, + 28141.196736645048, + 28597.441894113486, + 29054.370977389328, + 29511.9839864726, + 29970.280921363268, + 30429.261782061345, + 30888.92656856683, + 31349.2752808797, + 31810.307918999995, + 14553.68417953, + 14962.269522184812, + 15371.538790647044, + 15781.491984916669, + 16192.1291049937, + 16603.450150878154, + 17015.455122569998, + 17428.144020069256, + 17841.516843375928, + 18255.57359249, + 18670.31426741149, + 19085.738868140375, + 19501.847394676664, + 19918.639847020364, + 20336.11622517149, + 20754.27652912999, + 21173.12075889593, + 21592.648914469257, + 22012.86099585, + 22433.757003038154, + 22855.336936033702, + 23277.60079483666, + 23700.548579447044, + 24124.180289864813, + 24548.49592609, + 24973.495488122597, + 25399.17897596259, + 25825.54638961, + 26252.59772906482, + 26680.33299432704, + 27108.752185396665, + 27537.855302273707, + 27967.642344958145, + 28398.113313450005, + 28829.268207749254, + 29261.107027855924, + 29693.62977377, + 15657.856969194003, + 16093.869080567036, + 16530.56511774749, + 16967.945080735335, + 17406.00896953059, + 17844.75678413326, + 18284.188524543337, + 18724.30419076081, + 19165.103782785707, + 19606.587300618, + 20048.754744257716, + 20491.60611370482, + 20935.141408959335, + 21379.360630021252, + 21824.263776890595, + 22269.850849567334, + 22716.12184805149, + 23163.076772343036, + 23610.715622441996, + 24059.038398348373, + 24508.045100062147, + 24957.73572758334, + 25408.110280911933, + 25859.168760047927, + 26310.911164991325, + 26763.337495742155, + 27216.44775230037, + 27670.241934665995, + 28124.72004283904, + 28579.882076819482, + 29035.728036607332, + 29492.25792220259, + 29949.471733605264, + 30407.369470815338, + 30865.951133832816, + 31325.216722657708, + 31785.166237289992, + 14552.717362360001, + 14960.456412694812, + 15368.879388837042, + 15777.986290786666, + 16187.777118543703, + 16598.251872108154, + 17009.410551480003, + 17421.253156659255, + 17833.77968764593, + 18246.99014444, + 18660.88452704149, + 19075.462835450377, + 19490.725069666667, + 19906.671229690368, + 20323.301315521487, + 20740.615327159998, + 21158.613264605934, + 21577.29512785926, + 21996.660916920002, + 22416.710631788155, + 22837.444272463705, + 23258.861838946665, + 23680.963331237046, + 24103.748749334816, + 24527.218093239993, + 24951.371362952596, + 25376.208558472594, + 25801.7296798, + 26227.934726934818, + 26654.823699877037, + 27082.39659862666, + 27510.653423183703, + 27939.594173548154, + 28369.218849720008, + 28799.52745169926, + 29230.51997948593, + 29662.196433079993, + 15672.246387912, + 16107.175375797035, + 16542.788289489486, + 16979.085128989336, + 17416.06589429659, + 17853.730585411267, + 18292.079202333334, + 18731.11174506281, + 19170.82821359971, + 19611.228607944, + 20052.31292809571, + 20494.08117405482, + 20936.533345821335, + 21379.669443395254, + 21823.489466776595, + 22267.99341596533, + 22713.18129096149, + 23159.05309176504, + 23605.608818375997, + 24052.84847079437, + 24500.77204902015, + 24949.379553053328, + 25398.67098289393, + 25848.64633854193, + 26299.30561999733, + 26750.64882726015, + 27202.675960330373, + 27655.387019207992, + 28108.782003893048, + 28562.86091438548, + 29017.623750685332, + 29473.070512792598, + 29929.201200707263, + 30386.01581442934, + 30843.514353958817, + 31301.696819295703, + 31760.563210439992, + 14552.289200050001, + 14959.18195806481, + 15366.758641887043, + 15775.01925151667, + 16183.963786953704, + 16593.592248198158, + 17003.904635249997, + 17414.900948109258, + 17826.58118677593, + 18238.94535125, + 18651.993441531493, + 19065.725457620378, + 19480.141399516666, + 19895.241267220368, + 20311.02506073148, + 20727.492780050005, + 21144.644425175935, + 21562.479996109265, + 21980.99949285, + 22400.202915398153, + 22820.090263753707, + 23240.661537916665, + 23661.91673788704, + 24083.85586366482, + 24506.47891525, + 24929.7858926426, + 25353.776795842594, + 25778.451624849997, + 26203.810379664825, + 26629.85306028704, + 27056.579666716665, + 27483.990198953717, + 27912.084656998148, + 28340.863040850014, + 28770.325350509265, + 29200.471585975934, + 29631.301747250003, + 15687.174461490004, + 16121.020325887035, + 16555.55011609149, + 16990.763832103337, + 17426.661473922588, + 17863.243041549267, + 18300.50853498333, + 18738.457954224814, + 19177.09129927371, + 19616.408570130006, + 20056.409766793717, + 20497.094889264823, + 20938.46393754334, + 21380.516911629256, + 21823.253811522598, + 22266.674637223336, + 22710.77938873149, + 23155.568066047043, + 23601.040669169997, + 24047.197198100377, + 24494.037652838157, + 24941.562033383336, + 25389.77033973594, + 25838.66257189593, + 26288.238729863333, + 26738.49881363816, + 27189.44282322038, + 27641.070758610003, + 28093.382619807046, + 28546.378406811484, + 29000.058119623332, + 29454.4217582426, + 29909.46932266926, + 30365.200812903346, + 30821.61622894483, + 31278.715570793713, + 31736.498838449996, + 14552.399692600004, + 14958.446158294813, + 15365.176549797043, + 15772.590867106672, + 16180.689110223702, + 16589.471279148154, + 16998.937373880002, + 17409.08739441926, + 17819.921340765934, + 18231.43921292, + 18643.641010881493, + 19056.52673465038, + 19470.096384226665, + 19884.34995961037, + 20299.287460801486, + 20714.9088878, + 21131.214240605936, + 21548.20351921926, + 21965.87672364, + 22384.233853868154, + 22803.274909903706, + 23222.999891746666, + 23643.408799397042, + 24064.50163285482, + 24486.27839212, + 24908.739077192597, + 25331.883688072594, + 25755.71222476, + 26180.224687254824, + 26605.42107555704, + 27031.301389666667, + 27457.865629583706, + 27885.113795308145, + 28313.045886840016, + 28741.661904179266, + 29170.961847325925, + 29600.945716279995, + 15702.641189928003, + 16135.403930837036, + 16568.85059755349, + 17002.981190077335, + 17437.79570840859, + 17873.294152547267, + 18309.476522493333, + 18746.342818246812, + 19183.893039807706, + 19622.127187175996, + 20061.045260351715, + 20500.647259334823, + 20940.933184125337, + 21381.903034723255, + 21823.556811128597, + 22265.894513341333, + 22708.916141361493, + 23152.621695189042, + 23597.011174823998, + 24042.084580266375, + 24487.841911516152, + 24934.28316857333, + 25381.408351437934, + 25829.217460109932, + 26277.71049458933, + 26726.887454876152, + 27176.748340970375, + 27627.293152872004, + 28078.52189058105, + 28530.434554097483, + 28983.031143421333, + 29436.311658552604, + 29890.276099491257, + 30344.92446623735, + 30800.256758790823, + 31256.27297715171, + 31712.973121319996, + 14553.048840010002, + 14958.249013384811, + 15364.133112567042, + 15770.701137556669, + 16177.953088353699, + 16585.888964958154, + 16994.50876737, + 17403.812495589256, + 17813.80014961593, + 18224.471729449997, + 18635.82723509149, + 19047.866666540376, + 19460.59002379667, + 19873.997306860365, + 20288.088515731484, + 20702.86365041, + 21118.322710895936, + 21534.465697189262, + 21951.292609289998, + 22368.803447198155, + 22786.998210913705, + 23205.876900436662, + 23625.439515767044, + 24045.68605690482, + 24466.616523849996, + 24888.230916602595, + 25310.529235162594, + 25733.51147953, + 26157.17764970482, + 26581.52774568703, + 27006.561767476665, + 27432.27971507371, + 27858.68158847815, + 28285.76738769001, + 28713.53711270927, + 29141.990763535934, + 29571.12834016999, + 15718.646573226004, + 16150.326190647036, + 16582.689733875486, + 17015.737202911336, + 17449.468597754592, + 17883.883918405267, + 18318.983164863337, + 18754.766337128814, + 19191.23343520171, + 19628.384459082004, + 20066.219408769717, + 20504.738284264822, + 20943.94108556733, + 21383.827812677257, + 21824.3984655946, + 22265.653044319333, + 22707.591548851495, + 23150.21397919104, + 23593.520335337995, + 24037.51061729238, + 24482.184825054155, + 24927.542958623333, + 25373.585017999936, + 25820.311003183935, + 26267.72091417533, + 26715.814750974158, + 27164.592513580374, + 27614.054201994, + 28064.199816215045, + 28515.029356243485, + 28966.542822079333, + 29418.7402137226, + 29871.621531173267, + 30325.186774431346, + 30779.435943496825, + 31234.369038369714, + 31689.986059049992, + 14554.236642280002, + 14958.590523334815, + 15363.628330197045, + 15769.350062866672, + 16175.755721343701, + 16582.845305628158, + 16990.61881572, + 17399.076251619255, + 17808.217613325935, + 18218.04290084, + 18628.552114161495, + 19039.745253290377, + 19451.62231822667, + 19864.18330897036, + 20277.428225521486, + 20691.357067880002, + 21105.969836045937, + 21521.266530019264, + 21937.247149799994, + 22353.911695388153, + 22771.260166783708, + 23189.292563986673, + 23608.00888699705, + 24027.40913581482, + 24447.493310439997, + 24868.261410872597, + 25289.713437112594, + 25711.84938916, + 26134.669267014822, + 26558.17307067704, + 26982.36080014666, + 27407.23245542371, + 27832.788036508155, + 28259.027543400018, + 28685.950976099262, + 29113.558334605925, + 29541.849618919998, + 15735.190611384005, + 16165.78710531704, + 16597.06752505749, + 17029.03187060534, + 17461.68014196059, + 17895.012339123266, + 18329.02846209334, + 18763.728510870817, + 19199.11248545571, + 19635.180385848005, + 20071.932212047715, + 20509.367964054825, + 20947.48764186934, + 21386.29124549126, + 21825.7787749206, + 22265.950230157338, + 22706.805611201497, + 23148.34491805304, + 23590.568150712, + 24033.47530917838, + 24477.066393452154, + 24921.34140353334, + 25366.300339421938, + 25811.943201117934, + 26258.269988621334, + 26705.280701932148, + 27152.975341050376, + 27601.353905976004, + 28050.41639670905, + 28500.162813249488, + 28950.59315559734, + 29401.707423752603, + 29853.505617715266, + 30305.987737485346, + 30759.153783062822, + 31213.00375444771, + 31667.53765164, + 14555.96309941, + 14959.47068814481, + 15363.662202687046, + 15768.537643036672, + 16174.097009193705, + 16580.340301158154, + 16987.26751893, + 17394.878662509258, + 17803.173731895935, + 18212.152727090004, + 18621.815648091488, + 19032.162494900374, + 19443.19326751666, + 19854.907965940365, + 20267.306590171487, + 20680.389140210005, + 21094.155616055934, + 21508.606017709262, + 21923.740345169997, + 22339.55859843816, + 22756.06077751371, + 23173.246882396666, + 23591.116913087044, + 24009.67086958482, + 24428.908751889994, + 24848.830560002603, + 25269.436293922594, + 25690.725953649995, + 26112.699539184818, + 26535.35705052704, + 26958.698487676662, + 27382.723850633713, + 27807.433139398152, + 28232.826353970013, + 28658.903494349262, + 29085.66456053593, + 29513.109552529993, + 15752.273304402002, + 16181.786674847035, + 16611.98397109949, + 17042.865193159338, + 17474.43034102659, + 17906.679414701266, + 18339.61241418334, + 18773.229339472815, + 19207.530190569712, + 19642.514967474006, + 20078.183670185717, + 20514.536298704817, + 20951.572853031335, + 21389.29333316526, + 21827.6977391066, + 22266.786070855338, + 22706.55832841149, + 23147.014511775044, + 23588.154620945996, + 24029.978655924384, + 24472.486616710157, + 24915.678503303334, + 25359.55431570394, + 25804.11405391193, + 26249.357717927334, + 26695.285307750153, + 27141.89682338038, + 27589.192264818004, + 28037.171632063044, + 28485.834925115483, + 28935.182143975333, + 29385.213288642604, + 29835.928359117257, + 30287.327355399342, + 30739.410277488823, + 31192.17712538571, + 31645.627899090003, + 14558.228211400003, + 14960.889507814813, + 15364.234730037044, + 15768.263878066671, + 16172.976951903704, + 16578.37395154815, + 16984.454877, + 17391.219728259253, + 17798.668505325928, + 18206.801208200002, + 18615.61783688149, + 19025.118391370375, + 19435.30287166667, + 19846.171277770365, + 20257.72360968149, + 20669.9598674, + 21082.880050925934, + 21496.48416025926, + 21910.7721954, + 22325.744156348155, + 22741.400043103706, + 23157.73985566667, + 23574.76359403705, + 23992.471258214817, + 24410.8628482, + 24829.938363992598, + 25249.697805592597, + 25670.141172999996, + 26091.26846621482, + 26513.079685237037, + 26935.574830066664, + 27358.75390070371, + 27782.616897148153, + 28207.16381940001, + 28632.394667459263, + 29058.309441325924, + 29484.908140999993, + 15769.894652280003, + 16198.324899237035, + 16627.43907200149, + 17057.237170573342, + 17487.719194952588, + 17918.885145139262, + 18350.735021133336, + 18783.268822934813, + 19216.48655054371, + 19650.388203960007, + 20084.97378318371, + 20520.243288214824, + 20956.196719053336, + 21392.83407569925, + 21830.1553581526, + 22268.160566413335, + 22706.849700481493, + 23146.22276035704, + 23586.279746039996, + 24027.02065753038, + 24468.445494828156, + 24910.554257933334, + 25353.346946845933, + 25796.82356156593, + 26240.98410209333, + 26685.828568428155, + 27131.356960570374, + 27577.569278519994, + 28024.46552227704, + 28472.045691841486, + 28920.309787213333, + 29369.257808392606, + 29818.889755379263, + 30269.205628173342, + 30720.205426774824, + 31171.889151183714, + 31624.2568014, + 14561.031978250005, + 14962.846982344814, + 15365.345912247043, + 15768.52876795667, + 16172.395549473702, + 16576.946256798154, + 16982.18088993, + 17388.09944886926, + 17794.701933615932, + 18201.98834417, + 18609.958680531487, + 19018.612942700376, + 19427.951130676673, + 19837.973244460365, + 20248.679284051486, + 20660.069249449996, + 21072.14314065594, + 21484.900957669266, + 21898.342700489997, + 22312.468369118156, + 22727.277963553708, + 23142.771483796663, + 23558.948929847047, + 23975.81030170482, + 24393.355599369996, + 24811.5848228426, + 25230.497972122594, + 25650.095047209998, + 26070.37604810482, + 26491.340974807033, + 26912.989827316662, + 27335.32260563371, + 27758.33930975815, + 28182.039939690017, + 28606.42449542927, + 29031.492976975933, + 29457.24538433, + 15788.054655018004, + 16215.401778487038, + 16643.43282776349, + 17072.147802847336, + 17501.54670373859, + 17931.629530437265, + 18362.39628294334, + 18793.846961256815, + 19225.981565377708, + 19658.800095306004, + 20092.302551041714, + 20526.488932584823, + 20961.359239935333, + 21396.913473093256, + 21833.1516320586, + 22270.07371683134, + 22707.67972741149, + 23145.969663799042, + 23584.943525994, + 24024.601313996376, + 24464.943027806155, + 24905.968667423338, + 25347.678232847935, + 25790.07172407993, + 26233.14914111933, + 26676.910483966152, + 27121.355752620373, + 27566.484947081994, + 28012.298067351046, + 28458.795113427484, + 28905.97608531133, + 29353.840983002603, + 29802.38980650126, + 30251.622555807353, + 30701.539230920822, + 31152.139831841705, + 31603.424358569995, + 14561.376758478485, + 14963.097730018071, + 15365.502627365071, + 15768.591450519472, + 16172.364199481282, + 16576.820874250505, + 16981.961474827127, + 17387.786001211156, + 17794.294453402606, + 18201.48683140145, + 18609.36313520771, + 19017.923364821374, + 19427.167520242438, + 19837.095601470915, + 20247.707608506807, + 20659.003541350095, + 21070.983400000798, + 21483.647184458903, + 21896.994894724412, + 22311.026530797346, + 22725.74209267767, + 23141.141580365405, + 23557.224993860556, + 23973.992333163103, + 24391.443598273054, + 24809.578789190433, + 25228.3979059152, + 25647.90094844738, + 26068.08791678697, + 26488.95881093397, + 26910.513630888367, + 27332.752376650187, + 27755.6750482194, + 28179.28164559603, + 28603.572168780072, + 29028.546617771502, + 29454.204992570347, + 15790.105685043485, + 16217.332461362019, + 16645.243163487972, + 17073.83779142132, + 17503.116345162078, + 17933.078824710246, + 18363.72523006582, + 18795.0555612288, + 19227.069818199194, + 19659.768000976987, + 20093.150109562197, + 20527.216143954804, + 20961.966104154817, + 21397.39999016224, + 21833.51780197708, + 22270.31953959932, + 22707.805203028976, + 23145.974792266024, + 23584.828307310476, + 24024.365748162363, + 24464.587114821636, + 24905.49240728832, + 25347.081625562416, + 25789.354769643913, + 26232.31183953282, + 26675.952835229138, + 27120.27775673286, + 27565.28660404399, + 28010.979377162534, + 28457.356076088465, + 28904.41670082182, + 29352.16125136259, + 29800.58972771074, + 30249.702129866328, + 30699.498457829315, + 31149.978711599695, + 31601.142891177482, + 14965.060952199998, + 15338.57217981481, + 15712.76733323704, + 16087.646412466669, + 16463.209417503702, + 16839.45634834815, + 17216.387205, + 17594.001987459254, + 17972.30069572593, + 18351.283329799997, + 18730.94988968149, + 19111.300375370378, + 19492.334786866664, + 19874.053124170365, + 20256.455387281487, + 20639.5415762, + 21023.31169092593, + 21407.76573145926, + 21792.903697799997, + 22178.72558994815, + 22565.231407903702, + 22952.421151666662, + 23340.294821237043, + 23728.852416614816, + 24118.093937799997, + 24508.0193847926, + 24898.62875759259, + 25289.922056199997, + 25681.89928061482, + 26074.56043083704, + 26467.905506866664, + 26861.93450870371, + 27256.647436348147, + 27652.04428980001, + 28048.12506905926, + 28444.889774125928, + 28842.338405, + 16705.664407000004, + 17096.787067148147, + 17488.593653103708, + 17881.08416486667, + 18274.258602437032, + 18668.116965814817, + 19062.659255, + 19457.88546999259, + 19853.7956107926, + 20250.389677400002, + 20647.667669814822, + 21045.629588037038, + 21444.275432066668, + 21843.605201903698, + 22243.618897548153, + 22644.316519, + 23045.698066259265, + 23447.763539325926, + 23850.512938199998, + 24253.946262881487, + 24658.063513370376, + 25062.864689666665, + 25468.349791770383, + 25874.518819681485, + 26281.371773399995, + 26688.908652925933, + 27097.12945825926, + 27506.034189399998, + 27915.622846348146, + 28325.895429103708, + 28736.851937666666, + 29148.492372037046, + 29560.81673221482, + 29973.825018200005, + 30387.517229992598, + 30801.8933675926, + 31216.953430999998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC250A_C_MP.json b/examples/NyleC250A_C_MP.json new file mode 100644 index 0000000..0d2a8cf --- /dev/null +++ b/examples/NyleC250A_C_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.003154508333333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 63359.9999109, + 55039.999990899996, + 50089.999908, + 45549.9999828, + 37539.999949, + 32359.9998568, + 83029.9999074, + 75699.99988480001, + 70160.0000004, + 65419.999927799996, + 56179.9999512, + 50379.999975, + 110019.999796, + 103399.99996, + 97799.9998885, + 90999.9998314, + 78669.99989590001, + 71379.9999585, + 128169.999801, + 117074.441834, + 107269.99985800001, + 96279.9998616, + 77889.9999199, + 66470.00001080001 + ], + "input_power": [ + 10890.0, + 12230.0, + 13550.0, + 14580.0, + 15740.0, + 16720.0, + 11460.0, + 13760.0, + 15970.0, + 17790.0, + 20560.0, + 22500.0, + 10360.0, + 14660.0, + 18070.0, + 21230.0, + 25810.0, + 29010.0, + 8670.0, + 15050.0, + 18760.0, + 21870.0, + 26630.0, + 30020.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 9.927607736059246, + "volume": 3.6339936 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC250A_C_SP.json b/examples/NyleC250A_C_SP.json new file mode 100644 index 0000000..72cc4c3 --- /dev/null +++ b/examples/NyleC250A_C_SP.json @@ -0,0 +1,7285 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 333.15, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 44275.699602606, + 43763.59619044092, + 43257.13178898103, + 42759.16972767318, + 42272.45547685392, + 41799.616647749746, + 41343.16299247704, + 40905.48640404187, + 40488.86091634028, + 40095.44270415815, + 39727.27008317114, + 39386.26350994483, + 39074.225581934676, + 38792.84103748588, + 38543.676755833534, + 38328.1817571026, + 38147.68720230786, + 38003.406393353995, + 37896.43477303545, + 37827.749925036595, + 37798.211573931636, + 37808.56158518458, + 37859.42396514931, + 37951.30486106958, + 38084.59256107891, + 38259.55749420084, + 38476.35223034857, + 38735.0114803252, + 39035.452095823806, + 39377.4730694271, + 39760.75553460784, + 40184.86276572848, + 40649.24017804143, + 41153.2153276889, + 41695.99791170289, + 42276.67976800538, + 42894.23487540809, + 44236.327826835615, + 43715.46128234441, + 43201.922269003444, + 42698.518873924964, + 42207.94132511088, + 41732.76199145314, + 41275.435382733485, + 40838.298149623406, + 40423.569083684364, + 40033.34911736761, + 39669.62132401425, + 39334.250917855206, + 39028.98525401138, + 38755.45382849336, + 38515.16827820166, + 38309.52238092662, + 38139.792055348415, + 38007.13536103717, + 37912.5924984527, + 37857.08580894474, + 37841.41977475297, + 37866.28101900681, + 37932.23830572549, + 38039.74253981813, + 38189.126767083784, + 38380.60617421125, + 38614.27808877921, + 38890.12197925616, + 39207.99945500052, + 39567.654266260506, + 39968.712304174194, + 40410.68160076953, + 40892.9523289642, + 41414.79680256587, + 41975.36947627203, + 42573.70694566991, + 43208.72794723674, + 44436.26940833438, + 43920.3342538928, + 43413.91034890778, + 42919.70634428921, + 42440.31303183682, + 41978.20334424023, + 41535.73235507891, + 41115.13727882209, + 40718.5374708289, + 40347.934427348366, + 40005.21178551933, + 39692.13532337043, + 39410.35295982023, + 39161.39475467711, + 38946.67290863925, + 38767.48176329478, + 38624.99780112156, + 38520.279645487426, + 38454.26806064995, + 38427.78595175658, + 38441.53836484471, + 38496.112486841455, + 38591.97764556383, + 38729.48530971868, + 38908.86908890271, + 39130.24473360248, + 39393.61013519445, + 39698.84532594477, + 40045.712479009606, + 40433.85590843485, + 40862.80206915636, + 41331.959556999784, + 41840.619108680585, + 42387.953601804096, + 42973.018054865504, + 43594.749627249796, + 44251.967619231946, + 44926.40962695083, + 44410.34068499799, + 43899.182832542894, + 43395.8570342546, + 42903.16639569195, + 42423.79616330365, + 41960.31372442828, + 41515.16860729425, + 41090.692481019825, + 40689.09915561309, + 40312.48458197202, + 39962.82685188443, + 39641.98619802793, + 39351.70499397001, + 39093.60775416808, + 38869.20113396929, + 38679.87392961069, + 38526.897078219175, + 38411.423657811494, + 38334.4888872942, + 38297.01012646376, + 38299.786876006474, + 38343.50077749842, + 38428.71561340562, + 38555.87730708386, + 38725.31392277889, + 38937.235665626176, + 39191.73488165111, + 39488.786057768884, + 39828.24582178457, + 40209.85294239312, + 40633.22832917931, + 41097.87503261769, + 41603.17824407279, + 42148.40529579886, + 42732.705660940104, + 43355.11095353047, + 44868.47747701555, + 44343.63834898564, + 43825.44825891082, + 43316.77308152992, + 42820.360832471524, + 42338.84166825408, + 41874.727886285975, + 41430.41392486533, + 41008.17636318015, + 40610.173921308335, + 40238.44746021757, + 39894.91998176542, + 39581.3966286993, + 39299.56468465645, + 39050.99357416394, + 38837.13486263878, + 38659.322256387735, + 38518.77160260748, + 38416.58088938449, + 38353.7302456951, + 38331.08194140555, + 38349.38038727178, + 38409.252134939794, + 38511.20587694524, + 38655.63244671375, + 38842.80481856073, + 39072.87810769152, + 39345.88957020116, + 39661.75860307464, + 40020.286744186844, + 40421.15767230238, + 40863.93720707584, + 41348.073309051535, + 41872.89607966371, + 42437.61776123641, + 43041.332736983546, + 43683.01753100887, + 45034.730896484114, + 44515.25759954548, + 44004.70599400707, + 43505.84279273329, + 43021.31684947826, + 42553.65915888603, + 42105.28285649049, + 41678.48321871538, + 41275.437662874254, + 40898.205747170534, + 40548.7291706975, + 40228.83177343827, + 39940.219536265824, + 39684.48058094293, + 39463.0851701223, + 39277.385707346424, + 39128.61673704766, + 39017.89494454823, + 38946.21915606017, + 38914.470338685394, + 38923.41160041566, + 38973.68819013258, + 39065.82749760757, + 39200.23905350191, + 39377.214529366815, + 39596.927737643215, + 39859.434631662014, + 40164.67330564384, + 40512.46399469924, + 40902.50907482859, + 41334.39306292214, + 41807.58261676003, + 42321.42653501209, + 42875.15575723817, + 43467.88336388785, + 44098.60457630061, + 44766.19675670579, + 45906.86208069942, + 45385.0620171969, + 44867.04369326332, + 44355.814526401125, + 43854.264075002524, + 43365.164038349605, + 42891.16825661436, + 42434.81271085847, + 41998.51552303363, + 41584.576955981276, + 41195.17941343276, + 40832.38744000927, + 40498.14772122177, + 40194.28908347119, + 39922.522494048215, + 39684.4410611334, + 39481.520033797184, + 39315.11680199984, + 39186.470896591425, + 39096.70398931191, + 39046.819892791114, + 39037.70456054874, + 39070.126086994234, + 39144.73470742695, + 39262.06279803608, + 39422.524875900664, + 39626.41759898967, + 39873.91976616174, + 40165.09231716548, + 40499.878332639404, + 40878.10303411174, + 41299.47378400065, + 41763.58008561407, + 42269.89358314989, + 42817.768061695744, + 43406.43944722915, + 44035.02580661754, + 45820.798634510415, + 45290.18734187379, + 44765.17066310988, + 44248.70115439743, + 43743.613512804885, + 43252.62457629069, + 42778.333323703104, + 42323.22087478007, + 41889.65049014956, + 41479.86757132936, + 41095.99966072705, + 40740.05644164012, + 40413.92973825583, + 40119.39351565138, + 39858.10387979377, + 39631.599077539824, + 39441.29949663624, + 39288.507665719604, + 39174.408254316295, + 39100.068072842536, + 39066.43607260444, + 39074.34334579794, + 39124.50312550886, + 39217.51078571278, + 39353.8438412752, + 39533.86194795151, + 39757.80690238683, + 40025.80264211616, + 40337.855245564475, + 40693.85293204638, + 41093.566061766556, + 41536.6471358194, + 42022.630796189136, + 42550.93382574992, + 43120.85514826573, + 43731.57582839034, + 44382.15907166736, + 45935.64083760592, + 45410.992195105675, + 44894.345823034426, + 44388.55552718818, + 43896.35725425276, + 43420.36909180382, + 42963.091268307006, + 42526.906153117605, + 42114.07825648086, + 41726.754229531885, + 41366.96286429559, + 41036.61509368674, + 40737.503991509955, + 40471.30477245975, + 40239.57479212039, + 40043.75354696609, + 39885.162674360814, + 39765.00595255848, + 39684.36930070276, + 39644.22077882719, + 39645.410587855265, + 39688.67106960023, + 39774.616706765126, + 39903.744122942924, + 40076.43208261642, + 40292.94149115833, + 40553.41539483108, + 40857.878980787005, + 41206.239577068336, + 41598.28665260713, + 42033.69181722525, + 42512.00882163445, + 43032.673557436305, + 43595.00405712226, + 44198.20049407355, + 44841.345182561345, + 45523.402577746616, + 46892.394559056585, + 46365.136970581996, + 45840.4868100065, + 45321.53794766589, + 44811.266394785715, + 44312.53030348141, + 43828.0699667584, + 43360.50781851171, + 42912.34843352641, + 42485.97852747731, + 42083.666956929126, + 41707.5647193364, + 41359.7049530435, + 41042.00293728467, + 40756.256092184005, + 40504.143978755455, + 40287.22829890278, + 40106.952895419636, + 39964.643751989475, + 39861.50899318563, + 39798.638884471286, + 39777.0058321995, + 39797.46438361305, + 39860.751226844724, + 39967.48519091709, + 40118.16724574257, + 40313.180502123425, + 40552.790211751715, + 40837.14376720945, + 41166.27070196841, + 41540.082690390256, + 41958.37354772658, + 42420.81923011862, + 42926.977834597645, + 43476.28959908467, + 44068.0769023906, + 44701.544264216136, + 46777.878927366924, + 46241.73209489034, + 45710.08143105658, + 45185.96617348424, + 44672.307700681704, + 44171.90953204726, + 43687.45732786907, + 43221.51888932507, + 42776.544158483055, + 42354.86521830072, + 41958.696292625566, + 41590.13374619497, + 41251.156084636095, + 40943.62395446605, + 40669.28014309172, + 40429.74957880985, + 40226.539330807034, + 40061.03860915974, + 39934.518764834254, + 39848.13328968673, + 39802.91781646318, + 39799.79011879938, + 39839.550111221084, + 39922.879849143785, + 40050.34352887292, + 40222.38748760368, + 40439.34020342119, + 40701.41229530032, + 41008.696523105835, + 41361.167787592465, + 41758.683130404606, + 42200.98173407663, + 42687.68492203265, + 43218.29615858672, + 43792.201048942705, + 44408.667339194304, + 45066.844916325055, + 46840.30553306537, + 46310.6516083401, + 45788.03843240839, + 45275.40690399792, + 44775.58006272614, + 44291.2630891004, + 43825.04330451797, + 43379.39017126579, + 42956.6552925208, + 42559.07241234972, + 42188.75741570915, + 41847.70832844552, + 41537.80531729509, + 41260.81068988398, + 41018.36889472821, + 40812.00652123358, + 40643.13229969575, + 40513.03710130029, + 40422.89393812249, + 40373.75796312762, + 40366.56647017078, + 40402.1388939968, + 40481.1768102405, + 40604.263935426454, + 40771.86612696915, + 40984.33138317286, + 41241.88984323181, + 41544.65378722989, + 41892.61763614103, + 42285.65795182891, + 42723.53343704705, + 43205.884935438946, + 43732.23543153769, + 44301.990050766486, + 44914.43605943822, + 45568.74286475571, + 46263.96201481155, + 47882.79635993271, + 47350.36945548551, + 46819.33070552641, + 46292.86043322456, + 45774.02110263892, + 45265.75731871831, + 44770.89582730144, + 44292.14551511679, + 43832.09740978272, + 43393.22467980746, + 42977.88263458911, + 42588.30872441557, + 42226.62254046458, + 41894.82581480376, + 41594.80242039054, + 41328.31837107223, + 41097.021821586015, + 40902.44306755888, + 40745.994545507696, + 40628.97083283915, + 40552.54864784975, + 40517.786849725955, + 40525.62643854393, + 40576.89055526983, + 40672.28448175955, + 40812.39564075888, + 40997.693595903525, + 41228.53005171886, + 41505.138853620294, + 41827.63598791299, + 42196.01958179194, + 42610.16990334202, + 43069.849361538, + 43574.702506244445, + 44124.25602821575, + 44717.918759096145, + 45354.98167141985, + 47739.53914535136, + 47198.107541217476, + 46660.02963934891, + 46128.43135880418, + 45606.32075953157, + 45096.588042369265, + 44602.00554904533, + 44125.22776217755, + 43668.7913052737, + 43235.114942731336, + 42826.49957983788, + 42445.128262770595, + 42093.06617859658, + 41772.26065527276, + 41484.54116164597, + 41231.61930745289, + 41015.08884331994, + 40836.42566076357, + 40696.98779218993, + 40598.01541089507, + 40540.630831064904, + 40525.83850777513, + 40554.525036991385, + 40627.459155569035, + 40745.29174125344, + 40908.55581267973, + 41117.666529372895, + 41372.9211917477, + 41674.49924110891, + 42022.462259650965, + 42416.75397045829, + 42857.20023750508, + 43343.50906565545, + 43875.270600663345, + 44451.95712917246, + 45072.92307871644, + 45737.40501771868, + 47748.6024579693, + 47214.12661356077, + 46685.68789564621, + 46166.31429588493, + 45658.915946826055, + 45166.28512190859, + 44691.096235461446, + 44235.90584270325, + 43803.15263974251, + 43395.15746357771, + 43014.12329209709, + 42662.135244078694, + 42341.160579190466, + 42053.04869799019, + 41799.53114192552, + 41582.221593333874, + 41402.615875442636, + 41262.09195236901, + 41161.909929119975, + 41103.21205159242, + 41087.02270657305, + 41114.24842173849, + 41185.677865655074, + 41301.98184777913, + 41463.713318456736, + 41671.3073689239, + 41925.0812313064, + 42225.23427861991, + 42571.848024769904, + 42964.88612455177, + 43404.194373650695, + 43889.50070864172, + 44420.415206989775, + 44996.43008704962, + 45616.9197080658, + 46281.14057017278, + 46988.231314394834, + 48877.853817771145, + 48340.560418772475, + 47803.39093910983, + 47269.612154785726, + 46742.372982692475, + 46224.70448061227, + 45719.51984721724, + 45229.614422069164, + 44757.66568561986, + 44306.233259210836, + 43877.758905073584, + 43474.56652632938, + 43098.862166989384, + 42752.73401195448, + 42438.15238701561, + 42156.96975885336, + 41910.920735038264, + 41701.622064030766, + 41530.57263518104, + 41399.1534787291, + 41308.627765804944, + 41260.1408084283, + 41254.72005950879, + 41293.275112845855, + 41376.597703128806, + 41505.36170593686, + 41680.12313773896, + 41901.32015589392, + 42169.27305865052, + 42484.18428514727, + 42846.13841541256, + 43255.1021703647, + 43710.924411811684, + 44213.33614245156, + 44761.95050587203, + 45356.26278655077, + 45995.650409855174, + 48705.59711476283, + 48159.145650570135, + 47614.86140111768, + 47075.95696690392, + 46545.527089317024, + 46026.548650635035, + 45521.880674026, + 45034.264323547584, + 44566.32290414739, + 44120.561861662965, + 43699.36878282159, + 43305.01339524042, + 42939.647567426444, + 42605.305308776566, + 42303.90276957748, + 42037.23824100571, + 41806.99215512765, + 41614.727084899634, + 41461.887744167696, + 41349.80098766774, + 41279.67581102566, + 41252.60335075709, + 41269.55688426745, + 41331.39182985212, + 41438.845746696294, + 41592.53833487499, + 41792.97143535313, + 42040.52902998538, + 42335.47724151633, + 42677.964333580494, + 43068.02071070205, + 43505.558918295195, + 43990.373642663835, + 44522.141711001845, + 45100.422091392895, + 45724.65589281044, + 46394.16636511788, + 48660.40612395731, + 48121.30502161253, + 47587.19532279791, + 47061.19211210449, + 46546.29261501298, + 46045.37619789405, + 45561.204368008315, + 45096.420773506, + 44653.551203427356, + 44235.00358770245, + 43843.06799715117, + 43479.91664348325, + 43147.60387929826, + 42848.06619808568, + 42583.122234224815, + 42354.47276298477, + 42163.700700524496, + 42012.271103892905, + 41901.53117102864, + 41832.710240760214, + 41806.91979280604, + 41825.15344777434, + 41888.28696716317, + 41997.078253360465, + 42152.167349644, + 42354.07644018136, + 42603.20985003011, + 42899.854045137414, + 43244.17763234054, + 43636.231359366466, + 44075.948114832056, + 44563.14292824407, + 45097.512969998985, + 45678.63755138325, + 46305.9781245731, + 46978.87828263463, + 47696.563759523735, + 49877.35030354744, + 49335.507843840256, + 48792.480106575895, + 48251.62032059025, + 47716.16385560902, + 47189.22822224779, + 46673.813072011995, + 46172.80019729685, + 45688.95353138748, + 45224.91914845883, + 44783.2252635757, + 44366.2822326928, + 43976.38255265458, + 43615.7008611954, + 43286.29393693946, + 42990.10069940079, + 42728.94220898329, + 42504.52166698072, + 42318.42441557666, + 42172.11793784449, + 42066.95185774759, + 42004.157940139085, + 41984.850090761916, + 42010.02435624891, + 42080.55892412276, + 42197.21412279595, + 42360.63242157094, + 42571.338430639924, + 42829.738901084915, + 43136.122724877896, + 43490.66093488057, + 43893.40670484466, + 44344.29534941153, + 44843.144324112516, + 45389.653225368835, + 45983.40379049136, + 46623.859897681075, + 49675.86769843281, + 49124.67542919563, + 48574.419866026044, + 48028.40029086247, + 47489.79812653286, + 46961.67693675533, + 46446.98242613767, + 45948.54244017751, + 45469.06696526239, + 45011.14812866969, + 44577.26019856662, + 44169.759584010215, + 43790.884834947436, + 43442.75664221502, + 43127.37783753956, + 42846.63339353752, + 42602.29042371519, + 42395.99818246877, + 42229.28806508422, + 42103.57360773736, + 42020.150487493986, + 41980.19652230954, + 41984.77167102948, + 42034.81803338901, + 42131.15985001322, + 42274.50350241707, + 42465.437513005345, + 42704.43254507262, + 42991.84140280349, + 43327.899031272136, + 43712.72251644283, + 44146.31108516963, + 44628.54610519632, + 45159.1910851567, + 45737.89167457428, + 46364.175663862516, + 47037.452984324584, + 49575.58807920141, + 49032.07167987258, + 48492.45886044596, + 47959.95179844418, + 47437.63481227971, + 46928.47436125487, + 46435.319045561846, + 45960.899606282605, + 45507.828925389, + 45078.60202574278, + 44675.59607109544, + 44301.07036608844, + 43957.166356253016, + 43645.907628010274, + 43369.19990867112, + 43128.83106643639, + 42926.471110396684, + 42763.67219053252, + 42641.86859771425, + 42562.37676370199, + 42526.39526114589, + 42535.004803585776, + 42589.1682454514, + 42689.73058206228, + 42837.41894962787, + 43032.8426252475, + 43276.493026910226, + 43568.74371349502, + 43909.850384770776, + 44299.950881396115, + 44739.06518491951, + 45227.09541777944, + 45763.82584330398, + 46348.92286571129, + 46981.935030109205, + 47662.29302249558, + 48389.309669757895, + 50881.066224769886, + 50335.00675061884, + 49786.40784027634, + 49238.70917541162, + 48695.232578583826, + 48159.18201324183, + 47633.64358372448, + 47121.58553526033, + 46625.858253967905, + 46149.194266855506, + 45694.20824182128, + 45263.39698765336, + 44859.139454029544, + 44483.69673151754, + 44139.21205157493, + 43827.71078654912, + 43551.100449677375, + 43311.17069508685, + 43109.59331779446, + 42947.92225370696, + 42827.593579621134, + 42749.925513223425, + 42716.11841309017, + 42727.25477868756, + 42784.29925037168, + 42888.098609388406, + 43039.381777873474, + 43238.759818852515, + 43486.72593624091, + 43783.655474844, + 44129.805920356914, + 44525.31689936462, + 44970.21017934195, + 45464.38966865359, + 46007.641416554114, + 46599.63361318783, + 47239.91658958896, + 50650.162795725395, + 50094.522919873896, + 49538.5452202698, + 48985.61566029143, + 48439.002344206645, + 47901.85551717343, + 47377.20756523951, + 46867.9730153424, + 46376.94853530954, + 45906.8129338582, + 45460.12716059551, + 45039.33430601842, + 44646.75960151377, + 44284.61041935819, + 43954.97627271818, + 43659.82881565013, + 43401.021843100185, + 43180.2912909045, + 42999.255235788885, + 42859.4138953691, + 42762.149628150815, + 42708.72693352938, + 42700.29245179016, + 42737.874964108254, + 42822.3853925487, + 42954.61680006626, + 43135.24439050571, + 43364.82550860145, + 43643.79963997804, + 43972.488411149556, + 44351.09558952017, + 44779.707083383786, + 45258.29094192416, + 45786.697355214936, + 46364.65865421955, + 46991.78931079133, + 47667.58593767345, + 50494.016908406185, + 49946.30847225068, + 49401.37369170531, + 48862.50183722426, + 48332.86432015174, + 47815.51469272165, + 47313.3886480579, + 46829.30402017407, + 46365.96078397371, + 45925.941055250165, + 45511.709090686665, + 45125.611287856234, + 44769.87618522186, + 44446.61446213623, + 44157.81893884195, + 43905.36457647149, + 43691.00847704711, + 43516.389883481046, + 43383.03017957518, + 43292.33289002139, + 43245.58368040143, + 43243.950357186855, + 43288.48286773896, + 43380.113300309, + 43519.6558840381, + 43707.80698895713, + 43945.14512598698, + 44232.130946938145, + 44569.10724451118, + 44956.2989522964, + 45393.81314477398, + 45881.63903731395, + 46419.647986176155, + 47007.59348851031, + 47645.11118235603, + 48331.718846642616, + 49066.81640118944, + 51888.77902547941, + 51338.84919557096, + 50784.980809095665, + 50230.70000055618, + 49679.41504534491, + 49134.416359744195, + 48598.87650092619, + 48075.850166952885, + 47568.27419677614, + 47078.96757023763, + 46610.63140806892, + 46165.848971891384, + 45747.08566421629, + 45356.689028444714, + 44996.88874886756, + 44669.79665066566, + 44377.406699909625, + 44121.59500355999, + 43904.11980946702, + 43726.62150637088, + 43590.62262390165, + 43497.5278325792, + 43448.62394381319, + 43445.07990990325, + 43487.946824038765, + 43578.157920299025, + 43716.52857365319, + 43903.75629996014, + 44140.42075596869, + 44426.98373931752, + 44763.78918853517, + 45151.06318304002, + 45588.91394314017, + 46077.33183003373, + 46616.18934580861, + 47205.241133442505, + 47844.12397680307, + 51628.291342537326, + 51068.51120191755, + 50507.074686577434, + 49947.45444133513, + 49393.00525189854, + 48846.96404486537, + 48312.44988772341, + 47792.463988849944, + 47289.88969751241, + 46807.49250386795, + 46347.92003896358, + 45913.702074736146, + 45507.2505240124, + 45130.859440508895, + 44786.705018832006, + 44476.84559447799, + 44203.22164383299, + 43967.65578417298, + 43771.85277366371, + 43617.399511360876, + 43505.765037209945, + 43438.30053204624, + 43416.23931759496, + 43440.69685647119, + 43512.6707521798, + 43633.04074911553, + 43802.56873256299, + 44021.89872869658, + 44291.556904580604, + 44611.951568169134, + 44983.373168306236, + 45405.99429472571, + 45879.86967805122, + 46404.936189796295, + 46981.012842364304, + 47607.80078904846, + 48284.8833240318, + 51415.558232808966, + 50863.89431918946, + 50313.83203622372, + 49768.747747297726, + 49231.89995668723, + 48706.42930955784, + 48195.35859196509, + 47701.592730854245, + 47227.9187940605, + 46777.005990308884, + 46351.40566921425, + 45953.551321281324, + 45585.75857790468, + 45250.225211368685, + 44949.0311348476, + 44684.13840240558, + 44457.39120899655, + 44270.515890464354, + 44125.1209235426, + 44022.69692585478, + 43964.616655914295, + 43952.13501312432, + 43986.38903777786, + 44068.39791105784, + 44199.062955037, + 44379.16763267792, + 44609.37754783311, + 44890.24044524475, + 45222.18621054497, + 45605.5268702558, + 46040.45659178908, + 46527.051683446516, + 47065.27059441956, + 47654.95391478964, + 48295.82437552793, + 48987.48684849551, + 49729.42834644334, + 52900.26318624935, + 52346.82427169168, + 51788.002718450676, + 51227.41111386235, + 50668.54418615255, + 50114.778804436886, + 49569.37397872098, + 49035.47085990011, + 48516.09273975954, + 48014.14505097432, + 47532.41536710936, + 47073.573402619426, + 46640.171012849176, + 46234.64219403302, + 45859.30308329527, + 45516.35195865008, + 45207.869239001455, + 44935.81748414326, + 44702.041394759224, + 44508.267812422804, + 44356.10571959749, + 44247.04623963648, + 44182.46263678289, + 44163.610316169616, + 44191.62682381945, + 44267.5318466451, + 44392.227212448975, + 44566.49688992348, + 44791.00698865069, + 45066.305759102725, + 45392.82359264145, + 45770.87302151857, + 46200.64871887565, + 46682.22749874412, + 47215.5683160453, + 47800.51226659016, + 48436.78258707985, + 52610.05931129781, + 52046.46039117162, + 51479.84252420976, + 50913.76503667034, + 50351.66939570101, + 49796.879209339575, + 49252.60022651354, + 48721.92033704025, + 48207.80957162694, + 47713.120101870685, + 47240.5862402584, + 46792.824440166834, + 46372.33329586265, + 45981.49354250228, + 45622.56805613202, + 45297.70185368804, + 45008.922092996356, + 44758.13807277284, + 44547.14123262313, + 44377.60515304281, + 44251.085555417376, + 44169.02030202191, + 44132.72939602163, + 44143.414981471404, + 44202.161343316046, + 44309.93490739022, + 44467.58424041844, + 44675.840050014915, + 44935.31518468399, + 45246.50463381957, + 45609.78552770557, + 46025.41713751585, + 46493.54087531379, + 47014.18029405287, + 47587.24108757643, + 48212.51109061754, + 48889.66027879914, + 52340.074710179375, + 51784.70517766369, + 51229.72315018129, + 50678.59208404977, + 50134.657576476595, + 49601.14736555904, + 49081.171330284276, + 48577.72149052921, + 48093.6720070607, + 47631.77918153543, + 47194.68145649989, + 46784.89941539054, + 46404.83578253352, + 46056.77542314492, + 45742.88534333063, + 45465.21469008645, + 45225.694751298004, + 45026.13895574071, + 44868.2428730799, + 44753.58421387069, + 44683.62282955816, + 44659.70071247715, + 44683.04199585234, + 44754.752953798255, + 44875.8220013193, + 45047.11969430976, + 45269.398729553686, + 45543.29394472506, + 45869.32231838762, + 46247.88296999505, + 46679.25715989081, + 47163.6082893083, + 47700.98190037059, + 48291.30567609075, + 48934.38944037173, + 49629.92515800617, + 50377.48693467668, + 53915.290224185825, + 53358.71810850884, + 52795.27431029099, + 52228.65786970162, + 51662.44996779992, + 51100.11392653488, + 50544.9952087455, + 50000.321418160434, + 49469.20229939825, + 48954.629737967516, + 48459.477760266345, + 47986.502533583036, + 47538.34236609545, + 47117.5177068715, + 46726.431145868795, + 46367.367413934866, + 46042.493382807115, + 45753.85806511276, + 45503.392614368866, + 45292.91032498236, + 45124.10663225, + 44998.55911235844, + 44917.72748238406, + 44882.953600293244, + 44895.46146494207, + 44956.357216076656, + 45066.62913433276, + 45227.14764123612, + 45438.66529920228, + 45701.81681153667, + 46017.1190224345, + 46384.9709169809, + 46805.65362115077, + 47279.33040180895, + 47806.04666671002, + 48385.72996449855, + 49018.1899847088, + 53595.26971096885, + 53028.18764001395, + 52456.680028960494, + 51884.39288550645, + 51314.85435823949, + 50751.474736637196, + 50197.54645106703, + 49656.244072786205, + 49130.62431394187, + 48623.62602757103, + 48138.07020760042, + 47676.659988846826, + 47241.98064701667, + 46836.49959870639, + 46462.56640140214, + 46122.412753479955, + 45818.152494205795, + 45551.78160373542, + 45325.178203114396, + 45140.10255427818, + 44998.19706005213, + 44900.98626415134, + 44849.876851180816, + 44846.157646635394, + 44890.999616899804, + 44985.45586924849, + 45130.461651846024, + 45326.83435374647, + 45575.27350489398, + 45876.360776122434, + 46230.5599791557, + 46638.217066607394, + 47099.56013198095, + 47614.699409669694, + 48183.627274956845, + 48806.21824401538, + 49482.22897390813, + 53267.42603481999, + 52708.61404118113, + 52148.933326290906, + 51591.934439398625, + 51041.05007064332, + 50499.59505105392, + 49970.7663525493, + 49457.64308793801, + 48963.18651091855, + 48490.240016079275, + 48041.529138898346, + 47619.66155574382, + 47227.12708387357, + 46866.2976814353, + 46539.42744746659, + 46248.652621894835, + 45995.99158553734, + 45783.344860101206, + 45612.495108183415, + 45485.10713327076, + 45402.72787973993, + 45366.78643285744, + 45378.59401877961, + 45439.34400455266, + 45550.11189811264, + 45711.855348285426, + 45925.41414478686, + 46191.51021822245, + 46510.74764008767, + 46883.61262276783, + 47310.47351953805, + 47791.58082456336, + 48327.06717289854, + 48916.94734048832, + 49561.118244167206, + 50259.35894165963, + 51011.33063157975, + 54933.62869292732, + 54374.31387208277, + 53806.5933630987, + 53234.25265897776, + 52660.95939361259, + 52090.26334178547, + 51525.59641916882, + 50970.27268232464, + 50427.48832870491, + 49900.32169665153, + 49391.73326539599, + 48904.56565505998, + 48441.543626654704, + 48005.27408208141, + 47598.24606413117, + 47222.83075648484, + 46881.28148371318, + 46575.73371127675, + 46308.20504552612, + 46080.59523370136, + 45894.686163932805, + 45752.14186524037, + 45654.50850753388, + 45603.214401613, + 45599.56999916724, + 45644.76789277605, + 45739.8828159086, + 45885.87164292403, + 46083.573389071105, + 46333.70921048877, + 46636.88240420554, + 46993.57840813993, + 47404.16480110026, + 47868.891302784636, + 48387.889773781135, + 48961.174215567495, + 49588.6407705116, + 54583.7225870447, + 54013.50713735469, + 53437.41553315566, + 52859.1804635855, + 52282.41675867172, + 51710.62138933186, + 51147.17346737329, + 50595.334245493104, + 50058.24711727837, + 49538.93761720591, + 49040.31342064255, + 48565.164343844765, + 48116.16234395901, + 47695.86151902154, + 47306.698107958466, + 46950.99049058577, + 46630.93918760919, + 46348.626860624456, + 46106.018312117034, + 45904.9604854623, + 45747.18246492549, + 45634.295475661565, + 45567.79288371551, + 45549.05019602201, + 45579.32506040566, + 45659.75726558093, + 45791.368741152124, + 45975.06355761335, + 46211.6279263486, + 46501.73019963166, + 46845.920870626294, + 47244.63257338605, + 47698.180082854204, + 48206.760314864034, + 48770.452326138635, + 49389.217314290916, + 50062.89861782359, + 54197.46893756557, + 53635.49093978184, + 53071.345893797894, + 52508.67144179468, + 51950.987366842965, + 51401.695592903314, + 50864.080184826205, + 50341.30734835189, + 49836.42543011052, + 49352.3649176221, + 48891.938439296435, + 48457.84076443327, + 48052.648803222124, + 47678.821606742335, + 47338.70036696316, + 47034.50841674366, + 46768.35122983277, + 46542.216420869256, + 46357.97374538181, + 46217.37509978875, + 46122.05452139856, + 46073.52818840935, + 46073.1944199091, + 46122.33367587567, + 46222.108557176805, + 46373.56380557006, + 46577.62630370281, + 46835.105075112355, + 47146.69128422575, + 47512.958236360006, + 47934.36137772188, + 48411.23829540805, + 48943.80871740495, + 49532.174512588965, + 50176.319690726305, + 50876.11040247301, + 51631.29493937492, + 55387.38415794564, + 54826.979155942856, + 54257.47200814144, + 53682.686644473935, + 53106.32913576253, + 52531.987693719406, + 51963.13267094655, + 51403.11656093575, + 50855.17399806866, + 50322.4217576169, + 49807.85875574171, + 49314.36604949444, + 48844.706836816105, + 48401.52645653762, + 47987.35238837972, + 47604.59425295307, + 47255.54381175807, + 46942.37496718507, + 46667.14376251424, + 46431.78838191553, + 46238.12915044885, + 46087.86853406389, + 45982.59113960019, + 45923.76371478708, + 45912.73514824387, + 45950.73646947966, + 46038.88084889343, + 46178.16359777389, + 46369.462168299695, + 46613.53615353936, + 46911.02728745119, + 47262.45944488336, + 47668.238641573975, + 48128.6530341508, + 48643.87292013163, + 49213.95073792403, + 49838.82106682547, + 55024.17701476911, + 54452.68448988328, + 53874.656730608775, + 53293.86496465169, + 52713.96256060778, + 52138.48502796268, + 51570.85001709193, + 51014.35731926086, + 50472.18886662468, + 49947.40873222843, + 49442.963130007054, + 48961.680414785274, + 48506.27108227772, + 48079.327769088784, + 47683.32525271278, + 47320.62045153389, + 46993.452424825955, + 46703.94237275303, + 46454.09363636862, + 46245.791697616354, + 46080.80417932959, + 45960.78084523155, + 45887.25359993531, + 45861.63648894378, + 45885.22569864977, + 45959.19955633584, + 46084.61853017457, + 46262.4252292282, + 46493.44440344893, + 46778.38294367869, + 47117.82988164947, + 47512.25638998288, + 47962.015782190516, + 48467.3435126738, + 49028.35717672397, + 49645.05651052212, + 50317.3233911392, + 54611.79221217888, + 54048.49886900872, + 53482.44772149781, + 52917.31513334452, + 52356.65960913697, + 51803.921794353155, + 51262.424475361026, + 50735.37257941817, + 50225.853174672215, + 49736.83547016054, + 49271.17081581037, + 48831.59270243889, + 48420.71676175302, + 48041.040766349484, + 47694.944629715, + 47384.69040622605, + 47112.42229114893, + 46880.16662063984, + 46689.83187174489, + 46543.20866239985, + 46441.96975143053, + 46387.67003855255, + 46381.746564371264, + 46425.51851038193, + 46520.18719896974, + 46666.8360934096, + 46866.43079786639, + 47119.81905739477, + 47427.730757939236, + 47790.77792633419, + 48209.454730303805, + 48684.13747846217, + 49215.08462031317, + 49802.436746250576, + 50446.21658755801, + 51146.32901640891, + 51902.56104586659, + 55955.04418264505, + 55393.39176500643, + 54821.75469188845, + 54244.00490912725, + 53663.89650344871, + 53085.065702468586, + 52511.03087469265, + 51945.192529516244, + 51390.833317224766, + 50851.11802899336, + 50329.09359688707, + 49827.6890938608, + 49349.71573375917, + 48897.86687131689, + 48474.71800215823, + 48082.726762797545, + 47724.23293063894, + 47401.4584239764, + 47116.50730199369, + 46871.365764764436, + 46667.9021532523, + 46507.86694931041, + 46392.89277568214, + 46324.49439600048, + 46304.068714788336, + 46332.89477745847, + 46412.13377031346, + 46542.82902054574, + 46725.90599623756, + 46962.17230636123, + 47252.31770077847, + 47596.914070241386, + 47996.41544639145, + 48451.15800176037, + 48961.36004976938, + 49527.122044729826, + 50148.42658184267, + 55575.21502155247, + 55002.23010863675, + 54421.874405654, + 53837.96728318196, + 53254.21025268813, + 52674.186966529836, + 52101.36321795444, + 51539.086941098925, + 50990.58821099021, + 50458.97924354511, + 49947.254395570235, + 49458.29016476202, + 48994.84518970686, + 48559.56024988082, + 48154.95826564997, + 47783.44429827019, + 47447.30554988712, + 47148.71136353641, + 46889.713223143415, + 46672.244753523366, + 46498.121720381394, + 46369.0420303125, + 46286.58573080136, + 46252.215010222724, + 46267.27419784106, + 46332.98976381068, + 46450.470319175845, + 46620.70661587052, + 46844.571546718595, + 47122.82014543384, + 47456.08958661981, + 47844.899185770024, + 48289.65039926763, + 48790.62682438589, + 49347.99419928764, + 49961.800403025816, + 50631.97545554303, + 55130.057185783764, + 54565.20294003857, + 53996.84121848021, + 53428.69675622122, + 52864.37642926403, + 52307.36925450082, + 51761.046389713854, + 51228.661133574926, + 50713.348925645885, + 50218.12734637839, + 49745.896117113916, + 49299.437100083844, + 48881.41429840933, + 48494.373856101396, + 48140.74405806091, + 47822.835330078684, + 47542.84023883523, + 47302.83349190106, + 47104.771937736376, + 46950.494565691326, + 46841.72250600592, + 46780.0590298099, + 46766.98954912303, + 46803.88161685476, + 46891.9849268045, + 47032.43131366142, + 47226.234753004675, + 47474.291361303076, + 47777.37939591538, + 48136.159255090315, + 48551.173477966186, + 49022.84674457146, + 49551.485875824124, + 50137.2798335323, + 50780.29972039377, + 51480.49877999627, + 52237.71239681726, + 56979.299320042686, + 56415.72902640522, + 55840.55014820746, + 55257.72108411898, + 54671.08237369904, + 54084.35669739678, + 53501.14887655126, + 52924.945873391254, + 52359.1167910355, + 51806.91287349254, + 51271.467505660774, + 50755.79621332847, + 50262.79666317369, + 49795.248662764374, + 49355.8141605583, + 48947.03724590312, + 48571.34414903625, + 48231.04324108521, + 47928.32503406697, + 47665.26218088864, + 47443.80947534716, + 47265.80385212917, + 47132.96438681127, + 47046.89229585988, + 47009.07093663123, + 47020.865807371476, + 47083.52454721666, + 47198.17693619246, + 47365.83489521461, + 47587.39248608858, + 47863.62591150976, + 48195.19351506335, + 48582.63578122439, + 49026.3753353578, + 49526.71694371836, + 50083.84751345058, + 50697.836092588914, + 56569.541133051694, + 55994.1648158355, + 55409.879051846714, + 54820.58989310296, + 54230.0855325116, + 53642.036303869936, + 53059.99468186513, + 52487.395282074154, + 51927.55486096372, + 51383.67231589072, + 50858.828685101456, + 50355.987147732456, + 49877.993023809875, + 49427.57377424979, + 49007.33900085809, + 48619.78044633056, + 48267.27199425277, + 47952.06966910024, + 47676.31163623826, + 47442.01820192197, + 47251.091813296385, + 47105.317058396395, + 47006.360666146626, + 46955.77150636166, + 46954.98058974586, + 47005.30106789353, + 47107.928233288716, + 47263.93951930538, + 47474.294500207296, + 47739.83489114811, + 48061.28454817129, + 48439.24946821022, + 48874.21778908803, + 49366.55978951773, + 49916.52788910229, + 50524.25664833433, + 51189.76276859642, + 56065.041583374594, + 55497.61414505664, + 54925.29670264834, + 54351.901084193894, + 53781.12125862737, + 53216.53333577267, + 52661.5955663436, + 52119.64834194369, + 51593.914195066434, + 51087.497799095116, + 50603.38596830293, + 50144.447657852834, + 49713.43396379772, + 49312.97812308022, + 48945.5955135329, + 48613.68365387818, + 48319.5222037282, + 48065.27296358521, + 47852.97987484103, + 47684.569019777446, + 47561.8486215662, + 47486.50904426863, + 47460.12279283614, + 47484.144513109866, + 47559.91099182084, + 47688.64115658995, + 47871.43607592794, + 48109.27895923535, + 48403.035156802616, + 48753.45215980995, + 49161.1596003275, + 49626.669251315245, + 50150.37502662294, + 50732.552980990324, + 51373.36131004683, + 52072.84035031187, + 52830.91257919453, + 58006.15376835665, + 57441.09993193726, + 56862.76862013565, + 56275.204684454686, + 55682.33511728702, + 55087.969051915155, + 54495.79776251151, + 53909.39466413832, + 53332.21531274754, + 52767.597405181245, + 52218.7607791711, + 51688.80741333875, + 51180.721427195655, + 50697.36908114313, + 50241.4987764723, + 49815.741055364124, + 49422.60860088958, + 49064.496237009334, + 48743.68092857392, + 48462.32178132372, + 48222.460041889, + 48026.01909778985, + 47874.80447743619, + 47770.50385012787, + 47714.68702605441, + 47708.805956295444, + 47754.19473282026, + 47852.06958848798, + 48003.528897047676, + 48209.55317313823, + 48471.00507228837, + 48788.62939091668, + 49163.05306633156, + 49594.7851767313, + 50084.21694120406, + 50631.62171972771, + 51237.15501317013, + 57566.49207663451, + 56989.11655745901, + 56401.24891365776, + 55806.88187868823, + 55209.890326897774, + 54614.031273523564, + 54022.943874692646, + 53440.14942742186, + 52869.051369617955, + 52312.93528007752, + 51774.96887848699, + 51258.202025422615, + 50765.56672235051, + 50299.87711162664, + 49863.8294764968, + 49460.00224109674, + 49090.85597045182, + 48758.733370477574, + 48465.85928797911, + 48214.34071065149, + 48006.16676707968, + 47843.208726738354, + 47727.21999999214, + 47659.836138095416, + 47642.574833192615, + 47676.8359183178, + 47763.90136739505, + 47904.93529523809, + 48100.98395755065, + 48352.97575092624, + 48661.721212848286, + 49027.91302169005, + 49452.12599671459, + 49934.81709807479, + 50476.3254268135, + 51076.872224863284, + 51736.56087504663, + 57002.26997077078, + 56432.58569447393, + 55856.58678514542, + 55278.17216376106, + 54701.12289218658, + 54129.10217317753, + 53565.65535037941, + 53014.209908327364, + 52478.07547244652, + 51960.44380905192, + 51464.38882534833, + 50992.86656943037, + 50548.7152302826, + 50134.65513777933, + 49753.28876268477, + 49407.100716652974, + 49098.45775222778, + 48829.60876284305, + 48602.684782822296, + 48419.698987378964, + 48282.54669261637, + 48193.00535552766, + 48152.73457399577, + 48163.276086793514, + 48226.05377358361, + 48342.3736549186, + 48513.42389224089, + 48740.27478788263, + 49023.87878506593, + 49365.070467902726, + 49764.566561394735, + 50222.965931433624, + 50740.74958480086, + 51318.28066916772, + 51955.80447309542, + 52653.4484260349, + 53411.222098327096, + 59035.36422735578, + 58469.2757937932, + 57888.19603228535, + 57296.25624716843, + 56697.46988366847, + 56095.732527901346, + 55494.821906872894, + 54898.39788847857, + 54310.00248150388, + 53733.05983562416, + 53170.876241404425, + 52626.640130299784, + 52103.42207465502, + 51604.1747877048, + 51131.73312357366, + 50688.814077275965, + 50278.01678471591, + 49901.82252268763, + 49562.59470887505, + 49262.57890185188, + 49003.902801081764, + 48788.57624691821, + 48618.49122060447, + 48495.421844273726, + 48421.02438094895, + 48396.837234543054, + 48424.28094985877, + 48504.65821258856, + 48639.15384931487, + 48828.83482750996, + 49074.65025553592, + 49377.43138264468, + 49737.89159897808, + 50156.626435567705, + 50634.11356433506, + 51170.712798091496, + 51766.666090538216, + 58565.856043925705, + 57986.88766854787, + 57395.80046954347, + 56796.673861810035, + 56193.46940113472, + 55590.030784194634, + 54990.08384855671, + 54397.23657267775, + 53814.97907590432, + 53246.68361847291, + 52695.60460150992, + 52164.87856703147, + 51657.52419794357, + 51176.442318042085, + 50724.41589201277, + 50304.110025431146, + 49918.07196476258, + 49568.731097362506, + 49258.398951475865, + 48989.26919623767, + 48763.41764167277, + 48582.80223869573, + 48449.26307911112, + 48364.52239561327, + 48330.18456178637, + 48347.73609210446, + 48418.54564193148, + 48543.86400752111, + 48724.82412601697, + 48962.441075452494, + 49257.612074750956, + 49611.11648372557, + 50023.61580307915, + 50495.6536744047, + 51027.65588018486, + 51619.93034379205, + 52272.66712948872, + 57941.58722493751, + 57369.97576446091, + 56790.58294134708, + 56207.394769503575, + 55624.27940372769, + 55044.98713970672, + 54473.150414017735, + 53912.2838041276, + 53365.784028393056, + 52836.929946060874, + 52328.88255726736, + 51844.68500303892, + 51387.26256529167, + 50959.42266683163, + 50563.85487135467, + 50203.13088344646, + 49879.70454858254, + 49595.91185312834, + 49353.97092433915, + 49155.98203035999, + 49003.92758022588, + 48899.67212386156, + 48844.9623520817, + 48841.42709659075, + 48890.57732998306, + 48993.806165742826, + 49152.38885824412, + 49367.48280275077, + 49640.1275354165, + 49971.24473328493, + 50361.63821428945, + 50811.99393725339, + 51322.880001889804, + 51894.74664880167, + 52527.92625948185, + 53222.633356312996, + 53978.96460256759, + 60066.68443334148, + 59500.02496069627, + 58916.61534580153, + 58320.673345826996, + 57716.29885883189, + 57107.4739237656, + 56498.062720467286, + 55891.81156966579, + 55292.348932979956, + 54703.18541291848, + 54127.713752879834, + 53569.20883715235, + 53030.82769091432, + 52515.6094802337, + 52026.47551206842, + 51566.229234266255, + 51137.55623556472, + 50743.02424559135, + 50385.08313486338, + 50066.06491478797, + 49788.183737662126, + 49553.53589667263, + 49364.09982589618, + 49221.73610029933, + 49128.18743573843, + 49085.0786889597, + 49093.91685759936, + 49156.09108018309, + 49272.87263612685, + 49445.41494573615, + 49674.75357020653, + 49961.80621162327, + 50307.37271296158, + 50712.13505808641, + 51176.65737175259, + 51701.38591960498, + 52286.649108177866, + 59567.41826308256, + 58987.277520675125, + 58393.347234492896, + 57789.7935008732, + 57180.66455704319, + 56569.89078111973, + 55961.28469210982, + 55358.54094991003, + 54765.236355306915, + 54184.82984997687, + 53620.662516486074, + 53075.957578290676, + 52553.82039973656, + 52057.238486059476, + 51589.08148338508, + 51152.10117872879, + 50748.93149999592, + 50382.08851598173, + 50053.97043637112, + 49766.85761173891, + 49522.91253354996, + 49324.17983415877, + 49172.586286809674, + 49069.940805636965, + 49017.93444566476, + 49018.14040280696, + 49072.01401386739, + 49180.892756539746, + 49345.99624940736, + 49568.42625194375, + 49849.16666451201, + 50189.08352836523, + 50588.92502564627, + 51049.321479387734, + 51570.78535351245, + 52153.71125283264, + 52798.37592305063, + 58882.83525937264, + 58309.639567720595, + 57727.15368316157, + 57139.45071253488, + 56550.48590356937, + 55964.09664488405, + 55384.00246598767, + 54813.80503727869, + 54256.988170045595, + 53716.917816466674, + 53196.84206961004, + 52699.89116343363, + 52229.07747278535, + 51787.29551340271, + 51377.32194191333, + 51001.815555834575, + 50663.3172935736, + 50364.25023442752, + 50106.91959858322, + 49893.512747117406, + 49726.099181996724, + 49606.630546077635, + 49536.94062310642, + 49518.745337719236, + 49553.642755442066, + 49643.11308269072, + 49788.51866677097, + 49991.10399587825, + 50251.99569909803, + 50572.20254640552, + 50952.61544866578, + 51394.00745763379, + 51897.03376595431, + 52462.23170716191, + 53090.0207556811, + 53780.70252682628, + 54534.46077680139, + 61099.86515914786, + 60533.112817902205, + 59947.80655836179, + 59348.2505905296, + 58738.6312652984, + 58123.017074450785, + 57505.35865065931, + 56889.488767486306, + 56279.12233938386, + 55677.85642169414, + 55089.17021064884, + 54516.42504336985, + 53962.86439786867, + 53431.61389304672, + 52925.68128869528, + 52447.95648549545, + 52001.21152501822, + 51588.10058972438, + 51211.160002964636, + 50872.808228979375, + 50575.34587289912, + 50320.95568074397, + 50111.70253942398, + 49949.53347673913, + 49836.27766137903, + 49773.64640292339, + 49763.233151841654, + 49806.51349949307, + 49904.84517812679, + 50059.4680608818, + 50271.50416178695, + 50541.95763576094, + 50871.71477861229, + 51261.544027039316, + 51712.09595863041, + 52223.90329186345, + 52797.38088610659, + 60570.960998794944, + 59990.082521946606, + 59393.69976002759, + 58786.06549081516, + 58171.31463297634, + 57553.46424606798, + 56936.41353053686, + 56323.94382771949, + 55719.71861984242, + 55127.283530021785, + 54550.06632226382, + 53991.37690146445, + 53454.407313409545, + 52942.23174477474, + 52457.8065231255, + 52003.970116917306, + 51583.443135495225, + 51198.828329094526, + 50852.610588839925, + 50547.156946746276, + 50284.7165757182, + 50067.42078955009, + 49897.28304292629, + 49776.19893142088, + 49705.94619149797, + 49688.18470051134, + 49724.456476704756, + 49816.185679211674, + 49964.67860805553, + 50171.12370414953, + 50436.59154929677, + 50762.03486619031, + 51148.28851841269, + 51596.0695104368, + 52105.97698762497, + 52678.49223622952, + 53313.97868339268, + 59825.85302410663, + 59251.42935348862, + 58666.164559029785, + 58074.218840501024, + 57479.63453856295, + 56886.336134766105, + 56298.13025155096, + 55718.705652247605, + 55151.633241076204, + 54600.366063146736, + 54068.239304458846, + 53558.4702919023, + 53074.15849325651, + 52618.28551719075, + 52193.71511326423, + 51803.19317192597, + 51449.34772451486, + 51134.68894325954, + 50861.60914127867, + 50632.3827725806, + 50449.1664320636, + 50313.99885551579, + 50228.800919615074, + 50195.375641929335, + 50215.408180916114, + 50290.465835922994, + 50421.998047187364, + 50611.33639583631, + 50859.69460388692, + 51168.16853424611, + 51537.73619071056, + 51969.25771796692, + 52463.4754015916, + 53021.01366805082, + 53642.37908470085, + 54327.960359787576, + 55078.02834244686, + 62134.65421414159, + 61568.30178719951, + 60981.546704176304, + 60378.77962790831, + 59764.27336212166, + 59142.18285143235, + 58516.54518134628, + 57891.279578259135, + 57270.18740945638, + 56656.95218311354, + 56055.1395482958, + 55468.197294958285, + 54899.455353945894, + 54352.12579699344, + 53829.302836725554, + 53333.96282665667, + 52868.964261191184, + 52437.04777562336, + 52040.83614613708, + 51682.83428980627, + 51365.42926459469, + 51090.890269355936, + 50861.36864383331, + 50678.897868660206, + 50545.39356535966, + 50462.65349634469, + 50432.35756491815, + 50456.067815272625, + 50535.228432490614, + 50671.165742544596, + 50865.08821229662, + 51118.086449498864, + 51431.13320279314, + 51805.083361711346, + 52240.67395667492, + 52738.52415899539, + 53299.135280874034, + 61576.26355228546, + 60995.096117000685, + 60396.66563420183, + 59785.31156310603, + 59165.25550382021, + 58540.60119734114, + 57915.334525555496, + 57293.32351123967, + 56678.3183180601, + 56073.951250572936, + 55483.736754224155, + 54911.071415349696, + 54359.233961175276, + 53831.385259816394, + 53330.56832027851, + 52859.708292456955, + 52421.61246713669, + 52018.97027599288, + 51654.353291590196, + 51330.21522738333, + 51048.89193771687, + 50812.601417825026, + 50623.44380383211, + 50483.40137275207, + 50394.33854248894, + 50358.001871836415, + 50376.020060478084, + 50449.903948987376, + 50581.046518827614, + 50770.72289235191, + 51020.09033280321, + 51330.1882443145, + 51701.938171908325, + 52136.14380149731, + 52633.49095988376, + 53194.547614760035, + 53819.763874707955, + 60770.476505702405, + 60195.1944075332, + 59607.47815392513, + 59011.57503758068, + 58411.614492092216, + 57811.60809194189, + 57215.4495525018, + 56626.91473003381, + 56049.66162168958, + 55487.23036551086, + 54943.04324042896, + 54420.40466626521, + 53922.50120373075, + 53452.40155442648, + 53013.0565608433, + 52607.29920636183, + 52237.84461525263, + 51907.29005267611, + 51618.11492468242, + 51372.68077821165, + 51173.231301093736, + 51021.89232204843, + 50920.67181068528, + 50871.45987750383, + 50876.028773893326, + 50936.032892133, + 51053.00876539181, + 51228.37506772857, + 51463.43261409203, + 51759.36436032071, + 52117.23540314305, + 52537.99298017724, + 53022.46646993139, + 53571.367391803484, + 54185.28940608122, + 54864.70831394236, + 55609.98205745426, + 63170.79644422185, + 62605.351326909135, + 62017.60985398778, + 61412.049141127536, + 60793.028444887896, + 60164.78916271823, + 59531.45483295785, + 58897.03113483566, + 58265.40588847074, + 57640.34905487179, + 57025.51273593743, + 56424.43117445613, + 55840.520754106205, + 55277.079999455804, + 54737.28957596288, + 54224.21228997543, + 53740.79308873098, + 53289.859060357245, + 52874.11943387153, + 52496.16557918112, + 52158.47100708315, + 51863.39136926447, + 51613.16445830195, + 51409.910207662135, + 51255.63069170161, + 51152.210125666716, + 51101.414865693645, + 51104.89340880833, + 51164.17639292674, + 51280.676596854544, + 51455.688940287306, + 51690.39048381066, + 51985.84042889963, + 52342.98011791941, + 52762.63303412504, + 53245.50480166131, + 53792.18318556276, + 62583.10226130903, + 62002.108787008176, + 61402.04948160228, + 60787.350485748335, + 60162.320080993166, + 59531.148689773465, + 58897.90887541577, + 58266.555342136526, + 57640.92493504183, + 57024.73664012786, + 56421.59158428056, + 55834.97303527567, + 55268.2464017788, + 54724.65923334545, + 54207.34122042094, + 53719.304194340366, + 53263.44212732884, + 52842.53113250118, + 52459.22946386214, + 52116.07751630625, + 51815.49782561791, + 51559.7950684714, + 51351.15606243077, + 51191.64976595006, + 51083.22727837302, + 51027.72183993328, + 51026.84883175443, + 51082.20577584972, + 51195.272335122376, + 51367.41031336545, + 51599.86365526179, + 51893.75844638419, + 52250.10291319521, + 52669.7874230473, + 53153.58448418273, + 53702.14874573365, + 54316.01699772197, + 61716.53872725559, + 61140.78105215512, + 60550.954089353545, + 59951.392224485055, + 59346.31198407357, + 58739.812035533025, + 58135.87318716711, + 57538.3583881693, + 56951.01272862302, + 56377.463439501546, + 55821.21989266801, + 55285.67360087525, + 54774.09821776609, + 54289.64953787319, + 53835.36549661899, + 53414.16617031589, + 53028.8537761659, + 52682.11267226126, + 52376.50935758375, + 52114.492472005106, + 51898.39279628692, + 51730.423252080494, + 51612.678901927226, + 51547.13694925815, + 51535.65673839432, + 51579.97975454643, + 51681.72962381531, + 51842.41211319131, + 52063.41513055487, + 52346.00872467611, + 52691.34508521511, + 53100.45854272188, + 53574.26556863605, + 54113.56477528729, + 54719.036915895, + 55391.24488456845, + 56130.63371630679, + 64208.03373182041, + 63644.01793188455, + 63055.76711507144, + 62447.844849884306, + 61824.69684571589, + 61190.65095284899, + 60549.91716245629, + 59906.587606600086, + 59264.636558232756, + 58627.9204311964, + 58000.177780223035, + 57385.02930093448, + 56785.97782984243, + 56206.40834434839, + 55649.587962743746, + 55118.665944209744, + 54616.67368881736, + 54146.52473752774, + 53711.01477219138, + 53312.82161554907, + 52954.50523123131, + 52638.50772375828, + 52367.15333854024, + 52142.64846187714, + 51967.081620958896, + 51842.42348386513, + 51770.52685956557, + 51753.1266979194, + 51791.84008967602, + 51888.16626647446, + 52043.486600843695, + 52259.06460620256, + 52536.04593685965, + 52875.45838801343, + 53278.21189575228, + 53745.09853705448, + 54276.79252978778, + 63591.250500153335, + 63010.9080496726, + 62409.652963348264, + 61791.9980632772, + 61162.33831244621, + 60524.95081473179, + 59883.994814900485, + 59243.51169860851, + 58607.42499240199, + 57979.54036371694, + 57363.54562087912, + 56763.01071310436, + 56181.38773049803, + 55622.01090405557, + 55088.09660566222, + 54582.74334809299, + 54108.931785012814, + 53669.52471097654, + 53267.26706142866, + 52904.78591270367, + 52584.59048202596, + 52309.07212750961, + 52080.50434815866, + 51901.04278386696, + 51772.72521541816, + 51697.47156448589, + 51677.083893633484, + 51713.246406314276, + 51807.525446871194, + 51961.369500537374, + 52176.10919343551, + 52452.95729257829, + 52793.00870586813, + 53197.24048209737, + 53666.511810948345, + 54201.564022992825, + 54803.020589692875, + 62663.86974839431, + 62088.03264618773, + 61496.44902335359, + 60893.54035845786, + 60283.610270956, + 59670.844521193656, + 59059.3110104062, + 58452.95978071871, + 57855.623015146324, + 57271.01503759391, + 56702.732312856235, + 56154.25344661788, + 55628.939185453324, + 55130.0324168268, + 54660.65816909247, + 54223.82361149434, + 53822.41805416623, + 53459.212948131826, + 53136.86188530462, + 52857.900598488064, + 52624.7469613754, + 52439.70098854959, + 52304.94483548365, + 52222.54279854035, + 52194.44131497224, + 52222.468962921856, + 52308.33646142156, + 52453.636670393345, + 52659.84459064941, + 52928.31736389148, + 53260.294272711355, + 53656.896740590564, + 54119.12833190051, + 54647.87475190244, + 55243.90384674744, + 55907.865603476566, + 56640.2921500203, + 65246.10499590156, + 64684.05513351182, + 64095.78663123518, + 63485.94951040817, + 62859.07593325699, + 62219.58020289771, + 61571.758763336504, + 60919.7901994689, + 60267.73523708075, + 59619.53674284749, + 58979.01972433451, + 58349.891329996986, + 57735.74084917996, + 57140.039712118414, + 56566.141489936956, + 56017.28189465034, + 55496.578779162795, + 55007.03213726888, + 54551.52410365256, + 54132.81895388782, + 53753.563104438676, + 53416.28511265855, + 53123.39567679122, + 52877.18763596985, + 52679.835970217784, + 52533.39780044816, + 52439.81238846383, + 52400.901136957546, + 52418.3675895119, + 52493.79743059954, + 52628.658485582506, + 52824.30072071324, + 53081.956243133594, + 53402.7393008755, + 53787.64628286063, + 54237.55571890054, + 54753.228279696625, + 64600.478679638414, + 64021.27845922985, + 63419.27477709155, + 62799.06713676036, + 62165.13718266283, + 61521.84870011551, + 60873.447615324745, + 60224.06199538672, + 59577.702048287385, + 58938.26012290274, + 58309.51070899846, + 57695.110437230134, + 57098.5980791432, + 56523.3945471729, + 55972.802894644374, + 55450.008315772546, + 54958.078145662286, + 54499.96186030829, + 54078.491076595026, + 53696.37955229687, + 53356.22318607802, + 53060.50001749258, + 52811.57022698439, + 52611.67613588726, + 52462.94220642472, + 52367.375041710315, + 52326.86338574733, + 52343.17812342886, + 52417.9722805379, + 52552.78102374737, + 52749.02166061987, + 53007.993639607994, + 53330.87855005411, + 53718.74012219052, + 54172.524227139234, + 54693.05887691219, + 55281.05422441115, + 63612.29666527918, + 63036.78958499683, + 62443.81665049638, + 61837.88643327536, + 61223.38964572103, + 60604.59914111055, + 59985.669913611004, + 59370.63909827913, + 58763.42597106171, + 58167.831948795334, + 57587.54058920635, + 57026.117590911024, + 56487.0107934155, + 55973.55017711564, + 55488.94786329726, + 55036.29811413609, + 54618.57733269744, + 54238.644062936866, + 53899.23898969942, + 53602.9849387202, + 53352.38687662411, + 53149.831910925786, + 52997.589290029864, + 52897.81040323074, + 52852.52878071276, + 52863.66009355001, + 52933.0021537065, + 53062.23491403598, + 53252.920468282195, + 53506.50305107861, + 53824.30903794851, + 54207.54694530532, + 54657.307430451925, + 55174.56329158136, + 55760.16946777631, + 56414.86303900937, + 57139.26322614298, + 66284.74619196229, + 65725.21349970966, + 65137.433582819416, + 64526.14291546139, + 63895.96011269517, + 63251.38593047019, + 62596.80326562589, + 61936.47715589143, + 61274.55477988575, + 60615.06545711782, + 59961.92064798634, + 59318.91395377987, + 58689.7211166769, + 58077.90001974559, + 57486.890686944134, + 56920.01528312046, + 56380.47811401233, + 55871.3656262476, + 55395.64640734359, + 54956.171185707724, + 54555.67283063724, + 54196.76635231917, + 53881.94890183037, + 53613.5997711377, + 53393.98039309761, + 53225.23434145665, + 53109.387330851125, + 53048.34721680717, + 53043.90399574068, + 53097.729804957606, + 53211.37892265362, + 53386.28776791419, + 53623.77490071482, + 53925.041021920646, + 54291.168973286745, + 54723.1237374581, + 55221.75243796943, + 65610.55424711718, + 65033.001606448684, + 64430.710657016745, + 63808.36758379811, + 63170.54071265928, + 62521.680510356644, + 61866.11958453652, + 61208.072683734885, + 60551.63669737773, + 59900.79065578084, + 59259.39573014985, + 58631.19523258021, + 58019.81461605727, + 57428.76147445625, + 56861.42554254204, + 56321.07869596965, + 55810.87495128369, + 55333.850465918826, + 54892.92353819942, + 54490.89460733972, + 54130.446253443966, + 53814.14319750589, + 53544.43230140949, + 53323.64256792838, + 53153.985140725956, + 53037.553304355766, + 52976.32248426086, + 52972.150246774334, + 53026.77629911898, + 53141.82248940783, + 53318.79280664314, + 53559.07338071755, + 53863.93248241336, + 54234.520523402585, + 54671.87005624733, + 55176.89577439934, + 55750.39451220028, + 64561.64361060354, + 63986.88930048101, + 63392.907701885626, + 62784.29447924657, + 62165.52743788277, + 61540.96652400303, + 60914.853824706064, + 60291.31356798039, + 59674.35212270434, + 59067.85799864611, + 58475.60184646383, + 57901.23645770535, + 57348.29676480849, + 56820.19984110072, + 56320.24490079961, + 55851.61329901248, + 55417.36853173637, + 55020.456235858386, + 54663.70418915527, + 54349.822310293814, + 54081.402658830506, + 53860.919435211734, + 53690.72898077373, + 53573.06977774262, + 53510.062449234276, + 53503.70975925456, + 53555.89661269907, + 53668.39005535325, + 53842.83927389242, + 54080.77559588181, + 54383.6124897764, + 54752.64556492107, + 55189.052571550594, + 55693.89340078945, + 56268.11008465206, + 56912.526796042766, + 57627.84984875557, + 67323.69031203212, + 66767.24063492945, + 66180.4701866973, + 65568.20189433884, + 64935.14082574703, + 64285.87418970474, + 63624.871335884716, + 62956.483754849505, + 62284.94507805142, + 61614.37107783281, + 60948.75966742573, + 60291.99090095215, + 59647.82697342384, + 59019.91222074244, + 58411.77311969942, + 57826.8182879761, + 57268.338484143744, + 56739.50660766333, + 56243.377698885764, + 55782.88893905173, + 55360.85965029185, + 54979.991295626576, + 54642.86747896608, + 54351.953945110625, + 54109.598579749974, + 53918.03140946414, + 53779.364601722766, + 53695.592464885274, + 53668.59144820105, + 53700.12014180933, + 53791.8192767392, + 53945.21172490951, + 54161.702499129075, + 54442.57875309641, + 54789.00978140004, + 55202.047019518235, + 55682.62404381916, + 66621.24168647506, + 66045.85611863033, + 65443.75337384092, + 64819.70631852349, + 64178.36995998437, + 63524.28144641989, + 62861.860066916306, + 62195.40725144944, + 61529.10657088521, + 60867.023736979296, + 60213.106602377215, + 59571.185160614354, + 58944.97154611594, + 58338.0600341971, + 57753.927041062605, + 57195.93112380745, + 56667.312980416005, + 56171.19544976298, + 55710.5835116125, + 55288.364286618846, + 54907.30703632606, + 54570.063163167855, + 54279.16621046809, + 54037.031862440206, + 53845.95794418768, + 53708.12442170373, + 53625.593401871556, + 53600.30913246395, + 53634.098002143735, + 53728.66854046372, + 53885.6114178662, + 54106.39944568367, + 54392.38757613826, + 54744.81290234198, + 55164.79465829674, + 55653.33421889423, + 56211.31509991612, + 65511.73175359337, + 64938.166261071434, + 64343.56994515773, + 63732.62556321309, + 63109.89801348806, + 62479.83433512315, + 61846.76370814875, + 61214.897453484955, + 60588.32903294178, + 59971.03404921914, + 59366.87024590676, + 58779.57750748419, + 58212.77785932082, + 57669.97546767593, + 57154.55663969861, + 56669.789823427804, + 56218.82560779236, + 55804.696722610934, + 55430.31803859201, + 55098.486567333915, + 54811.88146132489, + 54573.064013942996, + 54384.477659456, + 54248.447973021866, + 54167.18267068791, + 54142.77160939176, + 54177.18678696072, + 54272.282342111845, + 54429.79455445209, + 54651.34184447833, + 54938.42477357728, + 55292.42604402538, + 55714.610498989096, + 56206.125122524645, + 56767.99903957801, + 57401.14351598515, + 58106.35195847195, + 68362.66738467313, + 67809.88118015499, + 67224.65569627433, + 66611.90031286779, + 65976.40655066166, + 65322.84807127217, + 64655.78067720555, + 63979.64231185745, + 63298.75305951388, + 62617.31514535034, + 61939.412935432294, + 61269.012936715124, + 60609.96379704397, + 59965.996305153785, + 59340.72339066941, + 58737.640124105754, + 58160.12371686706, + 57611.433521248015, + 57094.711030432714, + 56612.97987849529, + 56169.145840399724, + 55765.99683199971, + 55406.20291003904, + 55092.31627215108, + 54826.77125685928, + 54611.88434357664, + 54449.85415260646, + 54342.76144514142, + 54292.56912326427, + 54301.12222994772, + 54370.14794905405, + 54501.25560533573, + 54695.93666443464, + 54955.564732882835, + 55281.3955581023, + 55674.567028404505, + 56136.099172991024, + 67632.30251812989, + 67059.6176596085, + 66458.19273481368, + 65832.88729160186, + 65188.44301871937, + 64529.48374580242, + 63860.51544337705, + 63185.92622285919, + 62509.98633655445, + 61836.84817765861, + 61170.5462802569, + 60514.99731932476, + 59874.00011072724, + 59251.235611219316, + 58650.26691844585, + 58074.53927094147, + 57527.38004813072, + 57011.99877032798, + 56531.487098737474, + 56088.81883545324, + 55686.849923459195, + 55328.318446629164, + 55015.84462972665, + 54751.93083840524, + 54538.961579208066, + 54379.203499568444, + 54274.805387809356, + 54227.79817314355, + 54240.0949256738, + 54313.490856392644, + 54449.663317182465, + 54650.17180081555, + 54916.45794095398, + 55249.84551214957, + 55651.54042984426, + 56122.63075036969, + 56664.08667094726, + 66462.379300007, + 65890.45197173172, + 65295.64818448148, + 64682.73778854887, + 64056.37277511611, + 63421.087276255355, + 62781.29756492861, + 62141.30205498765, + 61505.28130117418, + 60877.29799911969, + 60261.29698534563, + 59661.10523726319, + 59080.43187317344, + 58522.86815226725, + 57991.88747462543, + 57490.84538121861, + 57022.97955390715, + 56591.40981544157, + 56199.13812946179, + 55849.04860049795, + 55543.907473969906, + 55286.36313618733, + 55078.94611434977, + 54924.069076546606, + 54824.026831757095, + 54780.99632985036, + 54797.03666158536, + 54874.089058610836, + 55013.97689346549, + 55218.40567957767, + 55488.963071265876, + 55827.11886373826, + 56234.22499309273, + 56711.51553631735, + 57260.10671128967, + 57880.99687677742, + 58575.066532437864, + 69401.40447498004, + 68852.87681290266, + 68269.74640148874, + 67657.0090734082, + 67019.54280222076, + 66362.10770237603, + 65689.34602921347, + 65005.78217896236, + 64315.82268874178, + 63623.756236560825, + 62933.753641318246, + 62249.86786280276, + 61576.03400169294, + 60916.069299557115, + 60273.67313885349, + 59652.42704293018, + 59055.794676025085, + 58487.12184326608, + 57949.63649067065, + 57446.44870514637, + 56980.55071449046, + 56554.81688739016, + 56172.003733422396, + 55834.74990305419, + 55545.57618764203, + 55306.885519432646, + 55120.96297156243, + 54989.975758057575, + 54915.97323383415, + 54900.886894698226, + 54946.53037734556, + 55054.59945936173, + 55226.67205922228, + 55464.208236292565, + 55768.550190827686, + 56140.92226397285, + 56582.430937762845, + 68643.49529903215, + 68074.05892974965, + 67473.81558371718, + 66847.71149023133, + 66200.57501947819, + 65537.11668253386, + 64861.929131364435, + 64179.48715882548, + 63494.14769866282, + 62810.14982551183, + 62131.61475489789, + 61462.54584323621, + 60806.82858783174, + 60168.23062687945, + 59550.40173946393, + 58956.87384555998, + 58391.06100603174, + 57856.25942263375, + 57355.64743800996, + 56892.28553569436, + 56469.11634011085, + 56088.964616573, + 55754.53727128436, + 55468.42335133822, + 55233.09404471794, + 55050.902680296414, + 54924.0847278367, + 54854.757797991406, + 54844.921642303125, + 54896.458153204534, + 55011.13136401763, + 55190.58744895481, + 55436.35472311789, + 55749.84364249883, + 56132.346803979206, + 56585.03894533063, + 57108.9769452144, + 67413.40149213553, + 66843.574973958, + 66248.98426055831, + 65634.48629516062, + 65004.820161878815, + 64364.60708571668, + 63718.35043256791, + 63070.43570921596, + 62425.130563334125, + 61786.584783485654, + 61158.83029912357, + 60545.78118059071, + 59951.23363911982, + 59378.86602683348, + 58832.238836744065, + 58314.79470275393, + 57829.85839965511, + 57380.636843129694, + 56970.21908974934, + 56601.57633697581, + 56277.5619231606, + 56000.911327545095, + 55774.24217026041, + 55600.05421232765, + 55480.72935565776, + 55418.531643051436, + 55415.60725819939, + 55473.98452568187, + 55595.57391096931, + 55782.16802042184, + 56035.44160128946, + 56356.95154171202, + 56748.13687071902, + 57210.31875823034, + 57744.700515055076, + 58352.367592892595, + 59034.287584331876, + 70439.6256845799, + 69895.9662472214, + 69315.49562881113, + 68703.29611485248, + 68064.33213173845, + 67403.4502467521, + 66725.37916806624, + 66034.7297447435, + 65335.99496673636, + 64633.5499648872, + 63931.652010928294, + 63234.440517481555, + 62545.937038059055, + 61870.045267062414, + 61210.551039783284, + 60571.12233240312, + 59955.3092619931, + 59366.544086514645, + 58808.141204818436, + 58283.29715664552, + 57795.090622626485, + 57346.48242428187, + 56940.3155240221, + 56579.31502514741, + 56266.08817184779, + 56003.12434920321, + 55792.79508318359, + 55637.35404064834, + 55538.93702934708, + 55499.56199791901, + 55521.12903589344, + 55605.4203736893, + 55754.10038261549, + 55968.71557487062, + 56250.69460354334, + 56601.34826261208, + 57021.869486945056, + 69654.57562266491, + 69088.94966595246, + 68490.40580086618, + 67863.97693814232, + 67214.57812940718, + 66547.00656717652, + 65865.94158485637, + 65175.94465674234, + 64481.45939801997, + 63786.81156476466, + 63096.20905394164, + 62413.741903406015, + 61743.38229190268, + 61088.98453906651, + 60454.28510542196, + 59842.90259238363, + 59258.33774225579, + 58703.973438232664, + 58183.07470439826, + 57698.78870572641, + 57254.14474808095, + 56852.05427821519, + 56495.31088377278, + 56186.5902932869, + 55928.45037618058, + 55723.33114276691, + 55573.554744248635, + 55481.32547271847, + 55448.72976115874, + 55477.73618344195, + 55570.195454330336, + 55727.84042947579, + 55952.28610542031, + 56245.02961959557, + 56607.45025032327, + 57040.80941681463, + 57546.25067917125, + 68364.61060880253, + 67797.3608457792, + 67203.41705062224, + 66587.72325948755, + 65955.10564942054, + 65310.272538356774, + 64657.814385121565, + 64002.20378942996, + 63347.795491887, + 62698.82637398752, + 62059.41545811621, + 61433.563907547614, + 60825.15502644612, + 60237.95425986594, + 59675.6091937511, + 59141.64955493564, + 58639.48721114325, + 58172.41617098762, + 57743.61258397211, + 57356.134740490124, + 57012.9230718249, + 56716.80015014932, + 56470.47068852634, + 56276.521540908594, + 56137.42170213866, + 56055.52230794893, + 56033.05663496186, + 56072.14010068928, + 56174.77026353328, + 56342.82682278557, + 56578.07161862801, + 56882.1486321319, + 57256.583985258585, + 57702.78594085929, + 58222.04490267508, + 58815.53341533687, + 59484.30616436534, + 71477.05215163271, + 70938.88523369284, + 70361.653741245, + 69750.5264126258, + 69110.55412706178, + 68446.6699046692, + 67763.68890645435, + 67066.30843431315, + 66359.10793103155, + 65646.54898028528, + 64932.975306639826, + 64222.61277555078, + 63519.56939336325, + 62827.835307312496, + 62151.28280552335, + 61493.666317010706, + 60858.622411679185, + 60249.669800323354, + 59670.209334627594, + 59123.52400716601, + 58612.77895140281, + 58141.02144169171, + 57711.1808932766, + 57326.06886229106, + 56988.37904575854, + 56700.68728159228, + 56465.45154859548, + 56285.01196646116, + 56161.59079577204, + 56097.292438001, + 56094.10343551043, + 56153.89247155276, + 56278.410370270234, + 56469.29009669491, + 56728.04675674879, + 57056.07759724349, + 57454.662005880884, + 70665.29611904391, + 70104.05664164867, + 69507.74430310805, + 68881.47869559833, + 68230.26155218543, + 67558.97674682536, + 66872.39029436381, + 66175.15035053638, + 65471.78721196847, + 64766.71331617542, + 64064.22324156238, + 63368.49370742427, + 62683.58357394604, + 62013.43384220218, + 61361.86765415739, + 60732.59029266596, + 60129.18918147206, + 59555.13388520998, + 59013.7761094034, + 58508.34970046625, + 58041.97064570205, + 57617.637073304315, + 57238.229252356374, + 56906.50959283131, + 56625.12264559218, + 56396.59510239187, + 56223.33579587312, + 56107.63569956831, + 56051.667927900016, + 56057.48773618037, + 56127.03252061163, + 56262.12181828556, + 56464.45730718396, + 56735.62280617871, + 57077.08427503104, + 57490.18981439241, + 57976.169665803944, + 69315.81596536408, + 68751.63220175658, + 68158.7824684399, + 67542.29789450137, + 66907.09174991839, + 66257.95944555782, + 65599.5785331769, + 64936.50870542226, + 64273.19179583056, + 63613.95177882833, + 62962.99476973184, + 62324.40902474741, + 61702.16494097098, + 61100.1150563885, + 60521.99404987561, + 59971.41874119801, + 59451.888091010995, + 58966.78320086, + 58519.367313180046, + 58112.78581129615, + 57750.06621942319, + 57434.11820266566, + 57167.73356701829, + 56953.586259365344, + 56794.23236748098, + 56692.110120029436, + 56649.53988656448, + 56668.72417752988, + 56751.74764425932, + 56900.57707897629, + 57117.06141479389, + 57402.93172571547, + 57759.80122663397, + 58189.16527333233, + 58692.40136248303, + 59270.769131648834, + 59925.41035928193, + 72513.40205083082, + 71981.36655943122, + 71407.96813832619, + 70798.46197868591, + 70157.98541257008, + 69491.55791292846, + 68804.08109360073, + 68100.33870931607, + 67384.9966556939, + 66662.6029692432, + 65937.58782736301, + 65214.26354834211, + 64496.82459135915, + 63789.347556482535, + 63095.791184670656, + 62419.99635777176, + 61765.68609852373, + 61136.46557055464, + 60535.8220783821, + 59967.1250674137, + 59433.62612394695, + 58938.45897516898, + 58484.63948915707, + 58075.06567487803, + 57712.51768218885, + 57399.65780183603, + 57139.03046545627, + 56933.062245575784, + 56784.06185561075, + 56694.220149867455, + 56665.610123541584, + 56700.18691271908, + 56799.787794375305, + 56966.132186375944, + 57200.82164747616, + 57505.33987732119, + 57881.052716445876, + 71675.40645471736, + 71119.14366680231, + 70525.60904382281, + 69900.00885939499, + 69247.43152802475, + 68572.84760510789, + 67881.1097869301, + 67176.95291066686, + 66464.99395438342, + 65749.7320370351, + 65035.54841846685, + 64326.706499413616, + 63627.35182150012, + 62941.512067240896, + 62273.097060040425, + 61625.89876419289, + 61003.591284882496, + 60409.73086818326, + 59847.755901058925, + 59320.986911363194, + 58832.62656783957, + 58385.75968012148, + 57983.35319873201, + 57628.256215084366, + 57323.19996148131, + 57070.797811115706, + 56873.5452780702, + 56733.82001731715, + 56653.881824718825, + 56635.872637027474, + 56681.81653188513, + 56793.61972782357, + 56973.07058426446, + 57221.83960151931, + 57541.47942078974, + 57933.42482416666, + 58398.99273463143, + 70266.82391370901, + 69706.20869298426, + 69114.9134643104, + 68498.05644970667, + 67860.6380120819, + 67207.54065523481, + 66543.52902385413, + 65873.2499035182, + 65201.23222069539, + 64531.8870427438, + 63869.50757791146, + 63218.26917533626, + 62582.22932504588, + 61965.32765795774, + 61371.38594587937, + 60804.10810150803, + 60267.08017843063, + 59763.770371124345, + 59297.52901495575, + 58871.588586181606, + 58489.06370194842, + 58152.95112029238, + 57866.12974013978, + 57631.360601306544, + 57451.286884498695, + 57328.433911311746, + 57265.20914423148, + 57263.902186633306, + 57326.68478278227, + 57455.61081783368, + 57652.61631783238, + 57919.51944971337, + 58258.02052130103, + 58669.70198131014, + 59156.02841934485, + 59718.34656589952, + 60357.88529235796, + 72628.47333468398, + 72097.15918693315, + 71524.22396105436, + 70914.93245409575, + 70274.43160399522, + 69607.75048958047, + 68919.80033056925, + 68215.37448756889, + 67499.14846207677, + 66775.67989648003, + 66049.40857405563, + 65324.65641897055, + 64605.62749628134, + 63896.408011934705, + 63200.96631276683, + 62523.15288650416, + 61866.700361762676, + 61235.223508048366, + 60632.21923575709, + 60061.0665961743, + 59525.026781475724, + 59027.243124726454, + 58570.741099881816, + 58158.42832178685, + 57793.09454617632, + 57477.4116696751, + 57213.93372979766, + 57005.09690494855, + 56853.219514421806, + 56760.502018401785, + 56729.0270179623, + 56760.75925506727, + 56857.545612570284, + 57021.11511421489, + 57253.07892463452, + 57554.93034935216, + 57928.04483478117, + 71787.59238773018, + 71231.91961288283, + 70638.72795498288, + 70013.2333189254, + 69360.53375049494, + 68685.60943636621, + 67993.32270410367, + 67288.41802216157, + 66575.52199988408, + 65859.14338750517, + 65143.673076148756, + 64433.38409782842, + 63732.43162544782, + 63044.85297280022, + 62374.567594568915, + 61725.377086327026, + 61100.96518453734, + 60504.89776655288, + 59940.62285061601, + 59411.47059585942, + 58920.6533023053, + 58471.265410865846, + 58066.28350334313, + 57708.56630242897, + 57400.85467170506, + 57145.771615642974, + 56945.82227960428, + 56803.39394983999, + 56720.756053491365, + 56700.060158589295, + 56743.33997405465, + 56852.51134969806, + 57029.37227621987, + 57275.602885210756, + 57592.765449150604, + 57982.30438140964, + 58445.54623624767, + 70372.4708504425, + 69812.28373372665, + 69221.19022804743, + 68604.318232424, + 67966.6777867655, + 67313.1610718707, + 66648.54240942853, + 65977.47826201745, + 65304.50723310596, + 64634.05006705242, + 63970.40964910487, + 63317.77100540143, + 62680.201302969814, + 62061.649849727844, + 61465.94809448291, + 60896.80962693254, + 60357.83017766385, + 59852.48761815403, + 59384.141960769986, + 58956.03535876843, + 58571.292106296074, + 58232.9186383894, + 57943.80353097468, + 57706.71750086808, + 57524.31340577558, + 57399.12624429323, + 57333.57315590658, + 57329.9534209913, + 57390.448460812695, + 57517.12183752617, + 57711.91925417663, + 57976.668554699216, + 58313.07972391868, + 58722.74488754961, + 59207.13831219667, + 59767.61640535396, + 60405.41771540599, + 104451.84149899543, + 104592.31104563392, + 104588.65304206475, + 104449.01404644092, + 104181.42275780477, + 103793.79001608893, + 103293.90880211568, + 102689.45423759687, + 101987.9835851346, + 101196.93624822075, + 100323.63377123685, + 99375.27983945464, + 98358.96027903527, + 97281.64305702988, + 96150.17828137956, + 94971.29820091552, + 93751.61720535807, + 92497.63182531807, + 91215.72073229578, + 89912.14473868159, + 88593.04679775584, + 87264.45200368814, + 85932.26759153843, + 84602.28293725649, + 83280.16955768205, + 81971.48111054403, + 80681.6533944619, + 79416.00434894463, + 78179.7340543913, + 76977.92473209082, + 75815.54074422142, + 74697.42859385176, + 73628.31692494007, + 72612.81652233475, + 71655.42031177356, + 70760.50335988431, + 69932.322874185, + 103219.23102096653, + 103265.61321154499, + 103175.82446846002, + 102957.97007792871, + 102620.03746705812, + 102169.89620384538, + 101615.297997177, + 100963.87669682993, + 100223.14829347034, + 99400.51091865468, + 98503.24484482897, + 97538.51248532947, + 96513.35839438219, + 95434.70926710233, + 94309.37393949568, + 93144.04338845778, + 91945.29073177396, + 90719.57122811905, + 89473.22227705803, + 88212.46341904586, + 86943.3963354271, + 85672.00484843644, + 84404.15492119786, + 83145.5946577258, + 81901.95430292429, + 80678.74624258738, + 79481.36500339839, + 78315.0872529311, + 77185.07179964901, + 76096.35959290543, + 75053.8737229437, + 74062.41942089626, + 73126.68405878621, + 72251.23714952622, + 71440.53034691895, + 70698.89744565671, + 70030.55438132162, + 100457.49667744001, + 100396.19180824184, + 100212.59907827139, + 99914.74948426198, + 99510.55616383669, + 99007.81439550889, + 98414.20159868112, + 97737.2773336464, + 96984.48330158714, + 96163.143344576, + 95280.46344557492, + 94343.5317284364, + 93359.31845790241, + 92334.67603960448, + 91276.33902006454, + 90190.92408669407, + 89084.93006779451, + 87964.73793255704, + 86836.6107910627, + 85706.6938942824, + 84581.014634077, + 83465.48254319717, + 82365.88929528315, + 81287.90870486558, + 80237.09672736439, + 79218.8914590897, + 78238.61313724125, + 77301.4641399088, + 76412.5289860721, + 75576.77433560033, + 74799.04898925291, + 74084.08388867881, + 73436.49211641705, + 72860.76889589628, + 72361.29159143534, + 71942.3197082427, + 71607.99489241667 + ], + "input_power": [ + 13295.717154, + 13455.074245061733, + 13608.864012469143, + 13757.086456222227, + 13899.741576320994, + 14036.829372765438, + 14168.349845555558, + 14294.302994691363, + 14414.688820172845, + 14529.507322000009, + 14638.758500172846, + 14742.442354691362, + 14840.55888555556, + 14933.108092765437, + 15020.089976320993, + 15101.504536222226, + 15177.351772469141, + 15247.631685061733, + 15312.344274000003, + 15371.489539283964, + 15425.06748091359, + 15473.0780988889, + 15515.521393209885, + 15552.397363876553, + 15583.706010888896, + 15609.447334246923, + 15629.621333950627, + 15644.228010000006, + 15653.26736239507, + 15656.739391135812, + 15654.644096222235, + 15646.981477654328, + 15633.751535432104, + 15614.954269555566, + 15590.589680024703, + 15560.657766839518, + 15525.158530000015, + 13458.679942000006, + 13615.141745061737, + 13766.036224469144, + 13911.363380222238, + 14051.123212321, + 14185.315720765448, + 14313.94090555557, + 14436.99876669137, + 14554.489304172852, + 14666.412518000014, + 14772.768408172855, + 14873.556974691368, + 14968.778217555566, + 15058.432136765441, + 15142.518732321001, + 15221.038004222231, + 15293.989952469145, + 15361.374577061746, + 15423.191878000014, + 15479.441855283962, + 15530.124508913594, + 15575.239838888907, + 15614.787845209892, + 15648.768527876555, + 15677.181886888906, + 15700.027922246929, + 15717.306633950631, + 15729.018022000017, + 15735.162086395076, + 15735.738827135814, + 15730.748244222234, + 15720.190337654341, + 15704.065107432118, + 15682.372553555564, + 15655.112676024712, + 15622.285474839526, + 15583.890950000019, + 13610.030490400006, + 13761.280775061728, + 13906.963736069141, + 14047.079373422224, + 14181.627687120988, + 14310.608677165437, + 14434.022343555558, + 14551.868686291364, + 14664.147705372841, + 14770.8594008, + 14872.003772572842, + 14967.580820691368, + 15057.59054515556, + 15142.03294596544, + 15220.908023120994, + 15294.215776622228, + 15361.956206469145, + 15424.129312661737, + 15480.735095200007, + 15531.773554083955, + 15577.244689313582, + 15617.148500888896, + 15651.48498880988, + 15680.254153076548, + 15703.455993688902, + 15721.090510646916, + 15733.157703950632, + 15739.65757360001, + 15740.590119595076, + 15735.95534193581, + 15725.753240622229, + 15709.983815654328, + 15688.64706703211, + 15661.742994755565, + 15629.271598824706, + 15591.232879239515, + 15547.626836000014, + 13383.729208319997, + 13546.908153355058, + 13704.519774735803, + 13856.56407246222, + 14003.041046534316, + 14143.950696952097, + 14279.293023715549, + 14409.068026824685, + 14533.275706279504, + 14651.916062079996, + 14764.989094226172, + 14872.494802718025, + 14974.433187555553, + 15070.804248738763, + 15161.607986267652, + 15246.84440014222, + 15326.51349036247, + 15400.615256928393, + 15469.14969984, + 15532.116819097282, + 15589.516614700244, + 15641.349086648883, + 15687.614234943208, + 15728.312059583204, + 15763.442560568881, + 15793.005737900248, + 15817.001591577282, + 15835.4301216, + 15848.291327968393, + 15855.58521068247, + 15857.311769742219, + 15853.471005147654, + 15844.06291689876, + 15829.087504995552, + 15808.544769438018, + 15782.434710226175, + 15750.75732736, + 13551.282974800002, + 13711.663065221732, + 13866.47583198914, + 14015.721275102225, + 14159.39939456099, + 14297.510190365438, + 14430.053662515558, + 14557.02981101136, + 14678.43863585284, + 14794.280137040001, + 14904.554314572842, + 15009.261168451363, + 15108.40069867556, + 15201.972905245437, + 15289.977788160995, + 15372.415347422222, + 15449.285583029141, + 15520.58849498173, + 15586.32408328, + 15646.492347923955, + 15701.093288913584, + 15750.12690624889, + 15793.593199929877, + 15831.49216995654, + 15863.823816328895, + 15890.588139046911, + 15911.785138110625, + 15927.414813520007, + 15937.477165275068, + 15941.972193375808, + 15940.899897822224, + 15934.260278614325, + 15922.0533357521, + 15904.279069235557, + 15880.93747906469, + 15852.028565239503, + 15817.552327760004, + 13710.897284464, + 13866.23943658173, + 14016.014265045136, + 14160.221769854224, + 14298.861951008985, + 14431.934808509433, + 14559.440342355552, + 14681.378552547356, + 14797.749439084837, + 14908.553001967997, + 15013.789241196839, + 15113.45815677136, + 15207.559748691556, + 15296.094016957435, + 15379.06096156899, + 15456.460582526222, + 15528.292879829141, + 15594.557853477729, + 15655.255503471999, + 15710.385829811952, + 15759.948832497581, + 15803.944511528889, + 15842.37286690588, + 15875.233898628536, + 15902.527606696895, + 15924.253991110912, + 15940.41305187062, + 15951.004788976004, + 15956.029202427064, + 15955.486292223806, + 15949.376058366219, + 15937.698500854323, + 15920.453619688096, + 15897.641414867558, + 15869.261886392693, + 15835.315034263502, + 15795.800858480003, + 13513.757053649999, + 13682.66877964506, + 13846.013181985803, + 14003.79026067222, + 14156.000015704314, + 14302.642447082098, + 14443.717554805555, + 14579.225338874687, + 14709.165799289509, + 14833.538936049998, + 14952.344749156173, + 15065.58323860803, + 15173.254404405558, + 15275.358246548763, + 15371.894765037658, + 15462.863959872218, + 15548.26583105247, + 15628.100378578396, + 15702.36760245, + 15771.067502667287, + 15834.200079230242, + 15891.765332138884, + 15943.763261393207, + 15990.193866993206, + 16031.057148938891, + 16066.353107230241, + 16096.081741867283, + 16120.24305285, + 16138.837040178394, + 16151.86370385247, + 16159.323043872224, + 16161.215060237655, + 16157.539752948762, + 16148.297122005552, + 16133.48716740802, + 16113.10988915617, + 16087.165287250002, + 13688.197287850004, + 13854.454809311734, + 14015.14500711914, + 14170.267881272226, + 14319.823431770988, + 14463.811658615436, + 14602.23256180556, + 14735.086141341359, + 14862.37239722284, + 14984.091329450002, + 15100.24293802284, + 15210.827222941365, + 15315.844184205562, + 15415.293821815438, + 15509.176135770997, + 15597.491126072227, + 15680.238792719143, + 15757.419135711732, + 15829.032155050005, + 15895.077850733955, + 15955.556222763584, + 16010.467271138892, + 16059.81099585988, + 16103.587396926547, + 16141.79647433889, + 16174.438228096924, + 16201.512658200623, + 16223.019764650004, + 16238.95954744507, + 16249.332006585806, + 16254.137142072228, + 16253.374953904327, + 16247.045442082104, + 16235.148606605555, + 16217.684447474696, + 16194.652964689514, + 16166.054158250006, + 13860.207239410001, + 14021.687192711728, + 14177.599822359138, + 14327.945128352223, + 14472.723110690986, + 14611.933769375433, + 14745.577104405553, + 14873.653115781355, + 14996.161803502837, + 15113.103167569998, + 15224.477207982838, + 15330.283924741361, + 15430.523317845555, + 15525.195387295433, + 15614.300133090988, + 15697.837555232223, + 15775.80765371914, + 15848.210428551733, + 15915.045879730002, + 15976.31400725395, + 16032.014811123581, + 16082.14829133889, + 16126.714447899878, + 16165.713280806543, + 16199.144790058885, + 16227.008975656918, + 16249.30583760062, + 16266.035375889998, + 16277.197590525062, + 16282.792481505801, + 16282.820048832222, + 16277.280292504318, + 16266.173212522099, + 16249.498808885555, + 16227.25708159469, + 16199.448030649513, + 16166.07165605, + 13641.396615600002, + 13816.041122555062, + 13985.118305855804, + 14148.628165502221, + 14306.57070149432, + 14458.9459138321, + 14605.753802515554, + 14746.994367544687, + 14882.667608919504, + 15012.773526639998, + 15137.312120706172, + 15256.28339111803, + 15369.687337875554, + 15477.523960978766, + 15579.793260427654, + 15676.49523622222, + 15767.62988836247, + 15853.197216848394, + 15933.197221679999, + 16007.629902857285, + 16076.495260380245, + 16139.79329424889, + 16197.524004463205, + 16249.687391023204, + 16296.283453928883, + 16337.312193180249, + 16372.773608777286, + 16402.66770072, + 16426.994469008398, + 16445.75391364247, + 16458.946034622215, + 16466.570831947654, + 16468.628305618764, + 16465.118455635555, + 16456.041281998027, + 16441.39678470618, + 16421.18496376, + 13822.723317520005, + 13994.858270021732, + 14161.425898869142, + 14322.426204062227, + 14477.859185600988, + 14627.72484348544, + 14772.023177715557, + 14910.754188291361, + 15043.917875212841, + 15171.51423848, + 15293.54327809284, + 15410.004994051367, + 15520.89938635556, + 15626.226455005437, + 15725.986200000996, + 15820.178621342226, + 15908.803719029143, + 15991.86149306173, + 16069.351943440004, + 16141.275070163956, + 16207.630873233584, + 16268.419352648894, + 16323.64050840988, + 16373.294340516544, + 16417.380848968896, + 16455.900033766917, + 16488.851894910626, + 16516.23643240001, + 16538.05364623507, + 16554.30353641581, + 16564.986102942228, + 16570.101345814324, + 16569.649265032105, + 16563.62986059556, + 16552.043132504692, + 16534.889080759505, + 16512.167705360003, + 14007.128910976002, + 14174.74666546173, + 14336.797096293138, + 14493.280203470222, + 14644.195986992983, + 14789.544446861433, + 14929.325583075553, + 15063.539395635356, + 15192.185884540839, + 15315.265049791999, + 15432.776891388841, + 15544.721409331365, + 15651.098603619555, + 15751.90847425343, + 15847.151021232992, + 15936.826244558222, + 16020.934144229137, + 16099.474720245731, + 16172.447972607997, + 16239.853901315946, + 16301.692506369583, + 16357.963787768887, + 16408.667745513874, + 16453.804379604542, + 16493.3736900409, + 16527.375676822914, + 16555.81033995062, + 16578.677679424, + 16595.977695243062, + 16607.710387407806, + 16613.875755918223, + 16614.473800774325, + 16609.504521976098, + 16598.96791952355, + 16582.86399341669, + 16561.192743655505, + 16533.954170240002, + 13766.647894169995, + 13947.025182085055, + 14121.8351463458, + 14291.077786952217, + 14454.753103904313, + 14612.861097202094, + 14765.401766845549, + 14912.375112834683, + 15053.781135169505, + 15189.619833849994, + 15319.891208876166, + 15444.595260248025, + 15563.731987965552, + 15677.301392028761, + 15785.30347243765, + 15887.738229192217, + 15984.605662292466, + 16075.905771738391, + 16161.638557529994, + 16241.804019667285, + 16316.402158150244, + 16385.432972978888, + 16448.896464153204, + 16506.792631673205, + 16559.12147553889, + 16605.882995750242, + 16647.077192307283, + 16682.704065209997, + 16712.763614458392, + 16737.25584005247, + 16756.180741992222, + 16769.538320277657, + 16777.328574908763, + 16779.551505885553, + 16776.207113208024, + 16767.295396876165, + 16752.816356889998, + 13954.861063810002, + 14132.873447351727, + 14305.318507239139, + 14472.196243472223, + 14633.506656050984, + 14789.249744975432, + 14939.425510245554, + 15084.033951861355, + 15223.075069822838, + 15356.548864129998, + 15484.455334782839, + 15606.794481781364, + 15723.566305125563, + 15834.770804815435, + 15940.407980850996, + 16040.477833232224, + 16134.980361959144, + 16223.915567031732, + 16307.283448450004, + 16385.084006213954, + 16457.317240323584, + 16523.98315077889, + 16585.081737579876, + 16640.613000726542, + 16690.57694021889, + 16734.97355605692, + 16773.802848240623, + 16807.064816770006, + 16834.759461645062, + 16856.886782865808, + 16873.446780432227, + 16884.439454344323, + 16889.8648046021, + 16889.722831205556, + 16884.013534154696, + 16872.736913449517, + 16855.892969090004, + 14151.662299162002, + 14325.417854831729, + 14493.606086847138, + 14656.226995208224, + 14813.280579914985, + 14964.766840967433, + 15110.685778365554, + 15251.037392109356, + 15385.821682198839, + 15515.038648633994, + 15638.688291414841, + 15756.770610541364, + 15869.285606013558, + 15976.233277831434, + 16077.613625994993, + 16173.426650504225, + 16263.672351359137, + 16348.35072855973, + 16427.461782106002, + 16501.005511997948, + 16568.98191823558, + 16631.391000818887, + 16688.232759747872, + 16739.50719502254, + 16785.214306642887, + 16825.35409460892, + 16859.92655892062, + 16888.931699578003, + 16912.369516581064, + 16930.240009929803, + 16942.543179624223, + 16949.27902566432, + 16950.4475480501, + 16946.04874678156, + 16936.082621858695, + 16920.54917328151, + 16899.44840105, + 13889.510889359997, + 14075.620958235055, + 14256.1637034558, + 14431.139125022217, + 14600.547222934316, + 14764.387997192092, + 14922.661447795548, + 15075.367574744681, + 15222.506378039507, + 15364.077857679993, + 15500.082013666164, + 15630.518845998025, + 15755.38835467555, + 15874.690539698757, + 15988.425401067652, + 16096.592938782216, + 16199.193152842465, + 16296.226043248389, + 16387.691609999994, + 16473.589853097277, + 16553.920772540238, + 16628.684368328883, + 16697.880640463205, + 16761.509588943198, + 16819.57121376888, + 16872.065514940245, + 16918.99249245728, + 16960.35214631999, + 16996.14447652839, + 17026.369483082464, + 17051.027165982217, + 17070.117525227648, + 17083.640560818756, + 17091.596272755552, + 17093.98466103802, + 17090.80572566617, + 17082.059466639996, + 14084.61052672, + 14268.500341301728, + 14446.822832229136, + 14619.577999502222, + 14786.765843120986, + 14948.38636308543, + 15104.439559395552, + 15254.925432051357, + 15399.843981052834, + 15539.195206399996, + 15672.979108092839, + 15801.195686131365, + 15923.844940515559, + 16040.926871245432, + 16152.441478320994, + 16258.388761742224, + 16358.768721509136, + 16453.58135762173, + 16542.82667008, + 16626.504658883954, + 16704.61532403358, + 16777.15866552889, + 16844.134683369874, + 16905.543377556536, + 16961.384748088894, + 17011.658794966912, + 17056.365518190618, + 17095.504917760005, + 17129.076993675062, + 17157.081745935804, + 17179.519174542223, + 17196.389279494324, + 17207.6920607921, + 17213.42751843555, + 17213.59565242469, + 17208.196462759504, + 17197.229949439996, + 14293.807403967998, + 14473.700760821725, + 14648.026794021132, + 14816.78550356622, + 14979.976889456982, + 15137.60095169343, + 15289.657690275551, + 15436.14710520335, + 15577.069196476832, + 15712.423964095993, + 15842.211408060837, + 15966.431528371362, + 16085.084325027552, + 16198.169798029428, + 16305.687947376988, + 16407.638773070223, + 16504.022275109135, + 16594.838453493725, + 16680.087308223996, + 16759.768839299944, + 16833.883046721574, + 16902.42993048888, + 16965.409490601873, + 17022.821727060535, + 17074.666639864892, + 17120.94422901491, + 17161.65449451062, + 17196.797436351997, + 17226.37305453906, + 17250.381349071802, + 17268.82231995022, + 17281.695967174317, + 17289.002290744098, + 17290.741290659553, + 17286.91296692069, + 17277.5173195275, + 17262.554348479996, + 14009.985601169994, + 14201.828451005056, + 14388.1039771858, + 14568.812179712218, + 14743.953058584313, + 14913.526613802094, + 15077.532845365546, + 15235.971753274684, + 15388.8433375295, + 15536.147598129994, + 15677.884535076168, + 15814.054148368026, + 15944.656438005548, + 16069.69140398876, + 16189.159046317653, + 16303.059364992216, + 16411.392360012465, + 16514.15803137839, + 16611.356379089993, + 16702.987403147275, + 16789.05110355024, + 16869.54748029888, + 16944.476533393205, + 17013.838262833204, + 17077.632668618888, + 17135.859750750238, + 17188.51950922728, + 17235.611944049997, + 17277.137055218394, + 17313.094842732466, + 17343.485306592214, + 17368.308446797648, + 17387.564263348762, + 17401.252756245547, + 17409.37392548802, + 17411.927771076163, + 17408.914293009995, + 14211.97170625, + 14401.738951871728, + 14585.938873839137, + 14764.571472152224, + 14937.636746810984, + 15105.134697815434, + 15267.065325165553, + 15423.428628861355, + 15574.224608902836, + 15719.453265289996, + 15859.114598022841, + 15993.208607101365, + 16121.735292525556, + 16244.694654295434, + 16362.086692410994, + 16473.911406872223, + 16580.168797679136, + 16680.858864831727, + 16775.98160833, + 16865.53702817395, + 16949.52512436358, + 17027.945896898884, + 17100.799345779873, + 17168.085471006543, + 17229.804272578887, + 17285.955750496916, + 17336.53990476062, + 17381.556735370003, + 17421.006242325067, + 17454.888425625802, + 17483.203285272222, + 17505.950821264323, + 17523.1310336021, + 17534.743922285554, + 17540.78948731469, + 17541.267728689512, + 17536.17864641, + 14433.564225393997, + 14619.595383431726, + 14800.059217815135, + 14974.95572854422, + 15144.284915618982, + 15308.046779039432, + 15466.24131880555, + 15618.868534917354, + 15765.928427374833, + 15907.420996177998, + 16043.346241326837, + 16173.70416282136, + 16298.494760661551, + 16417.71803484743, + 16531.37398537899, + 16639.462612256222, + 16741.98391547914, + 16838.937895047726, + 16930.324550962, + 17016.143883221943, + 17096.395891827575, + 17171.08057677888, + 17240.197938075875, + 17303.74797571854, + 17361.730689706885, + 17414.146080040915, + 17460.99414672062, + 17502.274889745997, + 17537.98830911706, + 17568.1344048338, + 17592.713176896217, + 17611.72462530432, + 17625.1687500581, + 17633.04555115755, + 17635.355028602688, + 17632.097182393507, + 17623.272012529997, + 14128.072029599994, + 14325.647660395056, + 14517.6559675358, + 14704.096951022213, + 14884.970610854312, + 15060.276947032093, + 15230.015959555549, + 15394.187648424682, + 15552.792013639502, + 15705.829055199994, + 15853.298773106168, + 15995.201167358025, + 16131.536237955552, + 16262.303984898761, + 16387.50440818765, + 16507.137507822215, + 16621.203283802464, + 16729.70173612839, + 16832.632864799998, + 16929.99666981728, + 17021.793151180245, + 17108.02230888888, + 17188.684142943202, + 17263.7786533432, + 17333.305840088884, + 17397.26570318025, + 17455.65824261728, + 17508.483458399995, + 17555.74135052839, + 17597.43191900247, + 17633.55516382222, + 17664.11108498765, + 17689.099682498756, + 17708.52095635555, + 17722.374906558016, + 17730.661533106173, + 17733.380835999997, + 14336.9446024, + 14532.589279061729, + 14722.666632069137, + 14907.176661422223, + 15086.119367120984, + 15259.494749165433, + 15427.302807555552, + 15589.543542291356, + 15746.216953372837, + 15897.323040799996, + 16042.861804572836, + 16182.833244691363, + 16317.237361155556, + 16446.074153965434, + 16569.343623120993, + 16687.04576862222, + 16799.180590469135, + 16905.748088661727, + 17006.7482632, + 17102.181114083956, + 17192.04664131358, + 17276.34484488888, + 17355.07572480987, + 17428.239281076538, + 17495.835513688893, + 17557.864422646915, + 17614.326007950618, + 17665.2202696, + 17710.547207595064, + 17750.306821935807, + 17784.49911262222, + 17813.12407965432, + 17836.1817230321, + 17853.672042755556, + 17865.595038824693, + 17871.950711239504, + 17872.73906, + 14570.932763439998, + 14763.10172266172, + 14949.703358229137, + 15130.737670142218, + 15306.204658400982, + 15476.104323005426, + 15640.436663955548, + 15799.20168125135, + 15952.399374892833, + 16100.029744879994, + 16242.092791212834, + 16378.588513891355, + 16509.51691291555, + 16634.87798828543, + 16754.671740000987, + 16868.89816806222, + 16977.557272469134, + 17080.64905322173, + 17178.173510319994, + 17270.130643763947, + 17356.52045355357, + 17437.342939688882, + 17512.59810216987, + 17582.28594099654, + 17646.40645616889, + 17704.959647686905, + 17757.94551555062, + 17805.364059759995, + 17847.21528031506, + 17883.4991772158, + 17914.21575046222, + 17939.365000054317, + 17958.946925992095, + 17972.96152827555, + 17981.40880690469, + 17984.2887618795, + 17981.6013932, + 14243.770174649993, + 14447.078586405058, + 14644.819674505803, + 14836.993438952217, + 15023.599879744314, + 15204.638996882095, + 15380.110790365548, + 15550.015260194687, + 15714.352406369506, + 15873.122228889997, + 16026.324727756173, + 16173.959902968025, + 16316.02775452555, + 16452.528282428757, + 16583.46148667765, + 16708.827367272213, + 16828.625924212465, + 16942.857157498394, + 17051.521067130005, + 17154.61765310728, + 17252.146915430247, + 17344.10885409889, + 17430.50346911321, + 17511.330760473207, + 17586.590728178882, + 17656.283372230242, + 17720.40869262728, + 17778.966689369994, + 17831.95736245839, + 17879.38071189246, + 17921.23673767221, + 17957.525439797653, + 17988.246818268766, + 18013.40087308555, + 18032.987604248025, + 18047.00701175617, + 18055.459095609996, + 14459.52921517, + 14661.05132287173, + 14857.006106919138, + 15047.393567312221, + 15232.213704050988, + 15411.466517135437, + 15585.15200656556, + 15753.27017234136, + 15915.821014462843, + 16072.80453293, + 16224.220727742846, + 16370.06959890136, + 16510.351146405555, + 16645.06537025543, + 16774.212270450993, + 16897.79184699222, + 17015.804099879133, + 17128.249029111725, + 17235.126634689997, + 17336.43691661396, + 17432.179874883586, + 17522.355509498895, + 17606.963820459878, + 17686.004807766545, + 17759.47847141889, + 17827.384811416916, + 17889.72382776062, + 17946.49552045, + 17997.699889485062, + 18043.336934865798, + 18083.40665659223, + 18117.90905466432, + 18146.8441290821, + 18170.21187984556, + 18188.012306954693, + 18200.24541040951, + 18206.91119021, + 14705.913018106003, + 14904.21977851173, + 15096.95921526314, + 15284.13132836022, + 15465.736117802984, + 15641.773583591434, + 15812.243725725555, + 15977.146544205358, + 16136.482039030838, + 16290.250210201997, + 16438.45105771884, + 16581.084581581366, + 16718.15078178956, + 16849.64965834344, + 16975.581211242996, + 17095.945440488224, + 17210.74234607914, + 17319.971928015733, + 17423.634186298004, + 17521.729120925953, + 17614.25673189958, + 17701.21701921889, + 17782.609982883878, + 17858.43562289454, + 17928.69393925089, + 17993.38493195291, + 18052.508601000623, + 18106.064946394006, + 18154.053968133063, + 18196.4756662178, + 18233.33004064822, + 18264.61709142432, + 18290.3368185461, + 18310.48922201356, + 18325.07430182669, + 18334.0920579855, + 18337.54249049, + 14357.080036319996, + 14566.121229035058, + 14769.5950980958, + 14967.501643502217, + 15159.840865254315, + 15346.612763352095, + 15527.81733779555, + 15703.454588584687, + 15873.524515719506, + 16038.027119199998, + 16196.962399026177, + 16350.330355198024, + 16498.13098771555, + 16640.36429657876, + 16777.03028178765, + 16908.128943342213, + 17033.66028124246, + 17153.62429548839, + 17268.020986079995, + 17376.850353017286, + 17480.11239630025, + 17577.80711592889, + 17669.934511903208, + 17756.494584223205, + 17837.487332888883, + 17912.912757900245, + 17982.770859257278, + 18047.061636959996, + 18105.785091008394, + 18158.941221402463, + 18206.530028142224, + 18248.551511227648, + 18285.005670658764, + 18315.892506435557, + 18341.212018558024, + 18360.96420702617, + 18375.14907184, + 14579.725544559999, + 14787.125083301726, + 14988.957298389136, + 15185.222189822227, + 15375.919757600988, + 15561.05000172544, + 15740.612922195556, + 15914.608519011359, + 16083.036792172841, + 16245.89774168, + 16403.191367532843, + 16554.917669731363, + 16701.076648275557, + 16841.668303165432, + 16976.69263440099, + 17106.149641982218, + 17230.039325909136, + 17348.36168618173, + 17461.116722800005, + 17568.30443576395, + 17669.924825073587, + 17765.977890728893, + 17856.463632729876, + 17941.382051076544, + 18020.73314576889, + 18094.51691680692, + 18162.73336419062, + 18225.382487919996, + 18282.464287995062, + 18333.978764415802, + 18379.92591718222, + 18420.30574629433, + 18455.118251752105, + 18484.36343355555, + 18508.041291704692, + 18526.151826199508, + 18538.69503704, + 14838.504989391995, + 15042.949550981722, + 15241.826788917135, + 15435.136703198217, + 15622.879293824977, + 15805.054560797427, + 15981.662504115548, + 16152.70312377935, + 16318.176419788831, + 16478.082392143988, + 16632.421040844834, + 16781.19236589136, + 16924.396367283553, + 17062.03304502143, + 17194.102399104984, + 17320.604429534214, + 17441.539136309137, + 17556.906519429725, + 17666.706578895995, + 17770.939314707946, + 17869.604726865575, + 17962.70281536888, + 18050.233580217868, + 18132.197021412536, + 18208.593138952885, + 18279.421932838904, + 18344.683403070616, + 18404.377549647998, + 18458.504372571057, + 18507.063871839797, + 18550.056047454214, + 18587.480899414317, + 18619.338427720097, + 18645.628632371547, + 18666.351513368685, + 18681.507070711497, + 18691.09530439999, + 14468.001614609999, + 14682.775588285056, + 14891.982238305804, + 15095.621564672218, + 15293.693567384318, + 15486.198246442096, + 15673.135601845552, + 15854.505633594685, + 16030.3083416895, + 16200.543726129998, + 16365.21178691617, + 16524.31252404803, + 16677.845937525555, + 16825.812027348766, + 16968.210793517657, + 17105.04223603222, + 17236.30635489247, + 17362.003150098397, + 17482.132621649995, + 17596.694769547285, + 17705.689593790245, + 17809.11709437889, + 17906.977271313208, + 17999.27012459321, + 18085.995654218885, + 18167.153860190254, + 18242.74474250729, + 18312.768301170003, + 18377.224536178397, + 18436.113447532472, + 18489.435035232218, + 18537.189299277656, + 18579.376239668763, + 18615.99585640556, + 18647.048149488026, + 18672.533118916177, + 18692.450764690002, + 14697.533590570007, + 14910.81056035173, + 15118.520206479141, + 15320.662528952224, + 15517.237527770987, + 15708.245202935437, + 15893.685554445558, + 16073.558582301355, + 16247.86428650284, + 16416.60266705, + 16579.773723942842, + 16737.377457181366, + 16889.413866765557, + 17035.882952695436, + 17176.784714971, + 17312.119153592226, + 17441.886268559145, + 17566.086059871737, + 17684.71852753001, + 17797.78367153396, + 17905.281491883587, + 18007.211988578896, + 18103.575161619883, + 18194.371011006548, + 18279.5995367389, + 18359.260738816916, + 18433.35461724063, + 18501.881172010013, + 18564.840403125072, + 18622.23231058581, + 18674.056894392226, + 18720.314154544325, + 18761.00409104211, + 18796.126703885562, + 18825.681993074704, + 18849.66995860951, + 18868.090600490006, + 14968.708677298, + 15179.291040071726, + 15384.306079191141, + 15583.753794656226, + 15777.63418646699, + 15965.947254623437, + 16148.692999125558, + 16325.87141997336, + 16497.48251716684, + 16663.526290706, + 16824.002740590844, + 16978.911866821367, + 17128.253669397563, + 17272.028148319438, + 17410.235303586996, + 17542.875135200225, + 17669.947643159143, + 17791.452827463734, + 17907.390688114003, + 18017.761225109953, + 18122.564438451584, + 18221.800328138892, + 18315.468894171878, + 18403.57013655055, + 18486.1040552749, + 18563.07065034492, + 18634.469921760625, + 18700.30186952201, + 18760.56649362907, + 18815.26379408181, + 18864.393770880226, + 18907.956424024327, + 18945.951753514102, + 18978.379759349562, + 19005.240441530696, + 19026.533800057507, + 19042.25983493, + 14576.53490952, + 14797.041664155056, + 15011.981095135801, + 15221.353202462218, + 15425.157986134316, + 15623.395446152097, + 15816.06558251555, + 16003.168395224684, + 16184.703884279501, + 16360.672049679995, + 16531.072891426167, + 16695.906409518026, + 16855.172603955554, + 17008.871474738757, + 17157.00302186765, + 17299.567245342216, + 17436.56414516247, + 17567.993721328392, + 17693.855973839996, + 17814.150902697278, + 17928.87850790024, + 18038.038789448885, + 18141.631747343206, + 18239.657381583205, + 18332.115692168893, + 18419.006679100243, + 18500.330342377285, + 18576.086682, + 18646.275697968398, + 18710.89739028247, + 18769.95175894222, + 18823.438803947658, + 18871.358525298765, + 18913.710922995557, + 18950.495997038026, + 18981.71374742617, + 19007.364174160004, + 14812.953353200004, + 15032.10775402173, + 15245.694831189141, + 15453.714584702224, + 15656.167014560988, + 15853.052120765435, + 16044.369903315555, + 16230.120362211355, + 16410.303497452842, + 16584.919309039997, + 16753.96779697284, + 16917.448961251368, + 17075.362801875555, + 17227.70931884543, + 17374.48851216099, + 17515.70038182223, + 17651.344927829145, + 17781.422150181734, + 17905.932048880004, + 18024.87462392396, + 18138.249875313584, + 18246.05780304889, + 18348.29840712988, + 18444.971687556546, + 18536.07764432889, + 18621.616277446923, + 18701.587586910628, + 18775.99157272001, + 18844.828234875073, + 18908.097573375806, + 18965.799588222224, + 19017.934279414327, + 19064.501646952107, + 19105.501690835565, + 19140.9344110647, + 19170.79980763952, + 19195.097880560006, + 15096.524081823998, + 15313.244245781727, + 15524.397086085139, + 15729.982602734222, + 15930.000795728985, + 16124.451665069437, + 16313.335210755557, + 16496.65143278736, + 16674.400331164838, + 16846.581905887997, + 17013.19615695684, + 17174.243084371363, + 17329.722688131562, + 17479.634968237435, + 17623.979924688992, + 17762.75755748622, + 17895.96786662914, + 18023.610852117734, + 18145.686513952, + 18262.19485213195, + 18373.13586665758, + 18478.50955752889, + 18578.31592474588, + 18672.554968308537, + 18761.226688216888, + 18844.33108447092, + 18921.868157070625, + 18993.837906016004, + 19060.240331307068, + 19121.075432943806, + 19176.343210926225, + 19226.04366525433, + 19270.176795928102, + 19308.74260294756, + 19341.741086312693, + 19369.17224602351, + 19391.03608208, + 14624.021852056825, + 14847.07740110671, + 15064.565626502266, + 15276.486528243502, + 15482.840106330412, + 15683.626360763012, + 15878.845291541282, + 16068.496898665235, + 16252.581182134869, + 16431.098141950177, + 16604.04777811117, + 16771.430090617832, + 16933.245079470176, + 17089.492744668205, + 17240.173086211908, + 17385.28610410129, + 17524.83179833636, + 17658.8101689171, + 17787.221215843525, + 17910.064939115622, + 18027.341338733404, + 18139.05041469686, + 18245.192167006004, + 18345.76659566081, + 18440.77370066131, + 18530.213482007486, + 18614.085939699336, + 18692.391073736868, + 18765.12888412008, + 18832.29937084897, + 18893.902533923538, + 18949.93837334379, + 19000.40688910972, + 19045.30808122132, + 19084.64194967861, + 19118.40849448157, + 19146.607715630224, + 14863.502019285144, + 15085.269525947258, + 15301.46970895505, + 15512.10256830852, + 15717.168104007675, + 15916.666316052508, + 16110.597204443011, + 16298.960769179195, + 16481.757010261063, + 16658.985927688605, + 16830.64752146183, + 16996.74179158073, + 17157.26873804531, + 17312.22836085557, + 17461.62066001151, + 17605.445635513133, + 17743.703287360433, + 17876.39361555341, + 18003.516620092065, + 18125.072300976408, + 18241.060658206417, + 18351.48169178211, + 18456.335401703484, + 18555.62178797053, + 18649.34085058326, + 18737.49258954167, + 18820.077004845756, + 18897.094096495523, + 18968.543864490966, + 19034.42630883209, + 19094.7414295189, + 19149.48922655138, + 19198.669699929538, + 19242.282849653384, + 19280.32867572291, + 19312.807178138108, + 19339.71835689899, + 15152.583850296112, + 15372.032880660245, + 15585.914587370065, + 15794.228970425556, + 15996.976029826727, + 16194.15576557358, + 16385.76817766611, + 16571.813266104313, + 16752.291030888206, + 16927.201472017772, + 17096.54458949302, + 17260.320383313945, + 17418.52885348055, + 17571.169999992828, + 17718.243822850796, + 17859.750322054435, + 17995.689497603762, + 18126.06134949876, + 18250.865877739434, + 18370.10308232579, + 18483.772963257827, + 18591.87552053554, + 18694.410754158936, + 18791.37866412801, + 18882.779250442767, + 18968.61251310319, + 19048.878452109308, + 19123.57706746109, + 19192.708359158558, + 19256.27232720171, + 19314.268971590536, + 19366.69829232504, + 19413.560289405217, + 19454.854962831087, + 19490.582312602633, + 19520.74233871985, + 19545.335041182752, + 14682.679921050003, + 14908.919456645062, + 15129.591668585805, + 15344.696556872223, + 15554.23412150432, + 15758.204362482096, + 15956.607279805554, + 16149.442873474683, + 16336.711143489505, + 16518.412089849997, + 16694.545712556173, + 16865.11201160803, + 17030.110987005555, + 17189.542638748764, + 17343.406966837658, + 17491.703971272214, + 17634.43365205247, + 17771.596009178396, + 17903.191042649996, + 18029.218752467285, + 18149.679138630247, + 18264.572201138886, + 18373.897939993207, + 18477.656355193205, + 18575.847446738888, + 18668.47121463025, + 18755.527658867282, + 18837.016779449998, + 18912.938576378394, + 18983.293049652475, + 19048.080199272223, + 19107.300025237655, + 19160.95252754876, + 19209.037706205552, + 19251.55556120802, + 19288.506092556177, + 19319.88930025, + 14925.984832450007, + 15151.016664311735, + 15370.481172519141, + 15584.378357072226, + 15792.708217970989, + 15995.470755215436, + 16192.665968805557, + 16384.29385874136, + 16570.35442502284, + 16750.84766765, + 16925.773586622847, + 17095.132181941368, + 17258.923453605563, + 17417.14740161544, + 17569.804025970996, + 17716.893326672227, + 17858.415303719143, + 17994.369957111732, + 18124.757286850006, + 18249.57729293396, + 18368.82997536358, + 18482.515334138894, + 18590.63336925988, + 18693.184080726547, + 18790.167468538897, + 18881.583532696914, + 18967.432273200626, + 19047.713690050008, + 19122.427783245068, + 19191.57455278581, + 19255.153998672227, + 19313.166120904323, + 19365.6109194821, + 19412.488394405562, + 19453.798545674697, + 19489.54137328951, + 19519.716877250004, + 15221.951202970002, + 15444.80916811173, + 15662.099809599142, + 15873.82312743222, + 16079.979121610986, + 16280.567792135433, + 16475.589139005555, + 16665.043162221355, + 16848.92986178284, + 17027.249237689997, + 17200.00128994284, + 17367.186018541364, + 17528.80342348556, + 17684.853504775434, + 17835.336262410994, + 17980.251696392224, + 18119.59980671914, + 18253.380593391732, + 18381.594056410002, + 18504.240195773953, + 18621.319011483578, + 18732.83050353889, + 18838.77467193988, + 18939.151516686543, + 19033.961037778896, + 19123.20323521691, + 19206.878109000623, + 19284.98565913, + 19357.525885605064, + 19424.498788425808, + 19485.904367592222, + 19541.742623104325, + 19592.0135549621, + 19636.71716316556, + 19675.853447714693, + 19709.422408609506, + 19737.42404585, + 14786.436649199999, + 15018.408965755058, + 15244.813958655803, + 15465.651627902218, + 15680.921973494316, + 15890.624995432097, + 16094.76069371555, + 16293.329068344683, + 16486.3301193195, + 16673.763846639995, + 16855.63025030617, + 17031.929330318027, + 17202.661086675555, + 17367.825519378763, + 17527.422628427656, + 17681.45241382222, + 17829.91487556247, + 17972.81001364839, + 18110.137828079998, + 18241.898318857282, + 18368.09148598024, + 18488.717329448886, + 18603.775849263206, + 18713.267045423207, + 18817.190917928885, + 18915.54746678024, + 19008.33669197729, + 19095.55859352, + 19177.213171408395, + 19253.300425642465, + 19323.82035622222, + 19388.77296314765, + 19448.158246418763, + 19501.976206035553, + 19550.226841998025, + 19592.910154306166, + 19630.026142959992, + 15036.628028320007, + 15267.53729122173, + 15492.87923046914, + 15712.653846062225, + 15926.861138000988, + 16135.501106285436, + 16338.573750915553, + 16536.07907189136, + 16728.017069212838, + 16914.38774288, + 17095.19109289284, + 17270.427119251366, + 17440.095821955558, + 17604.197201005434, + 17762.731256400995, + 17915.697988142223, + 18063.09739622914, + 18204.92948066173, + 18341.19424144, + 18471.891678563956, + 18597.021792033578, + 18716.584581848892, + 18830.580048009873, + 18939.008190516546, + 19041.86900936889, + 19139.162504566917, + 19230.888676110622, + 19317.047524, + 19397.63904823507, + 19472.663248815803, + 19542.12012574222, + 19606.00967901432, + 19664.331908632103, + 19717.08681459556, + 19764.2743969047, + 19805.894655559514, + 19841.94759056, + 15344.990040736, + 15573.985807061723, + 15797.414249733141, + 16015.27536875022, + 16227.569164112982, + 16434.295635821432, + 16635.454783875553, + 16831.046608275352, + 17021.071109020835, + 17205.528286111996, + 17384.41813954884, + 17557.74066933136, + 17725.495875459557, + 17887.683757933428, + 18044.304316752987, + 18195.357551918216, + 18340.843463429137, + 18480.762051285725, + 18615.113315487997, + 18743.897256035947, + 18867.113872929578, + 18984.763166168887, + 19096.845135753872, + 19203.35978168454, + 19304.307103960888, + 19399.68710258292, + 19489.499777550616, + 19573.745128863997, + 19652.42315652306, + 19725.533860527805, + 19793.077240878218, + 19855.053297574323, + 19911.462030616094, + 19962.303440003554, + 20007.577525736684, + 20047.284287815506, + 20081.42372624, + 14887.805093969999, + 15125.510191485058, + 15357.647965345803, + 15584.218415552219, + 15805.221542104317, + 16020.657345002097, + 16230.52582424555, + 16434.826979834685, + 16633.560811769497, + 16826.727320049995, + 17014.32650467617, + 17196.358365648026, + 17372.822902965552, + 17543.720116628763, + 17709.050006637655, + 17868.812572992214, + 18023.00781569247, + 18171.63573473839, + 18314.696330129995, + 18452.18960186728, + 18584.115549950246, + 18710.47417437888, + 18831.265475153206, + 18946.489452273207, + 19056.146105738884, + 19160.235435550247, + 19258.757441707283, + 19351.712124209997, + 19439.09948305839, + 19520.919518252464, + 19597.172229792213, + 19667.857617677655, + 19732.975681908763, + 19792.526422485553, + 19846.509839408023, + 19894.925932676175, + 19937.77470228999, + 15144.882940810003, + 15381.66963475173, + 15612.889005039142, + 15838.541051672222, + 16058.625774650987, + 16273.143173975437, + 16482.093249645553, + 16685.476001661358, + 16883.29143002284, + 17075.539534729996, + 17262.22031578284, + 17443.333773181366, + 17618.87990692556, + 17788.85871701543, + 17953.270203450993, + 18112.114366232225, + 18265.391205359138, + 18413.10072083173, + 18555.24291265, + 18691.81778081395, + 18822.82532532358, + 18948.265546178893, + 19068.13844337988, + 19182.444016926544, + 19291.182266818894, + 19394.353193056915, + 19491.95679564062, + 19583.993074570004, + 19670.462029845065, + 19751.363661465803, + 19826.697969432225, + 19896.46495374432, + 19960.664614402103, + 20019.296951405555, + 20072.361964754688, + 20119.859654449505, + 20161.790020490003, + 15465.640595122002, + 15700.774162631724, + 15930.340406487137, + 16154.33932668822, + 16372.77092323498, + 16585.63519612743, + 16792.932145365554, + 16994.661770949355, + 17190.824072878837, + 17381.419051153996, + 17566.446705774844, + 17745.907036741362, + 17919.800044053558, + 18088.125727711427, + 18250.884087714985, + 18408.07512406422, + 18559.69883675914, + 18705.755225799727, + 18846.244291185998, + 18981.166032917947, + 19110.52045099558, + 19234.307545418887, + 19352.527316187876, + 19465.17976330254, + 19572.264886762896, + 19673.782686568917, + 19769.73316272062, + 19860.116315217998, + 19944.93214406106, + 20024.180649249804, + 20097.86183078422, + 20165.975688664323, + 20228.5222228901, + 20285.50143346155, + 20336.91332037869, + 20382.7578836415, + 20423.035123249996, + 14986.785255359999, + 15230.223133835058, + 15468.093688655803, + 15700.396919822218, + 15927.132827334315, + 16148.301411192093, + 16363.902671395554, + 16573.93660794468, + 16778.403220839504, + 16977.302510079993, + 17170.63447566617, + 17358.399117598026, + 17540.596435875555, + 17717.226430498762, + 17888.289101467653, + 18053.78444878222, + 18213.712472442465, + 18368.073172448392, + 18516.866548799997, + 18660.092601497283, + 18797.751330540243, + 18929.842735928883, + 19056.366817663205, + 19177.3235757432, + 19292.71301016889, + 19402.535120940243, + 19506.789908057286, + 19605.477371519995, + 19698.597511328393, + 19786.150327482468, + 19868.13581998222, + 19944.553988827654, + 20015.40483401876, + 20080.688355555554, + 20140.404553438017, + 20194.553427666164, + 20243.134978239996, + 15250.749569920004, + 15493.41369490173, + 15730.51049622914, + 15962.039973902225, + 16188.002127920985, + 16408.396958285437, + 16623.22446499555, + 16832.484648051355, + 17036.177507452838, + 17234.303043199994, + 17426.861255292843, + 17613.852143731365, + 17795.275708515557, + 17971.13194964543, + 18141.420867120993, + 18306.14246094222, + 18465.296731109138, + 18618.883677621732, + 18766.903300480004, + 18909.355599683957, + 19046.240575233584, + 19177.55822712889, + 19303.308555369877, + 19423.49155995654, + 19538.107240888887, + 19647.155598166923, + 19750.63663179063, + 19848.55034176, + 19940.896728075062, + 20027.675790735808, + 20108.887529742224, + 20184.531945094324, + 20254.609036792095, + 20319.118804835554, + 20378.0612492247, + 20431.43636995951, + 20479.24416704, + 15583.902866127999, + 15825.174234821727, + 16060.878279861136, + 16291.015001246222, + 16515.58439897698, + 16734.586473053434, + 16948.021223475553, + 17155.888650243352, + 17358.188753356833, + 17554.92153281599, + 17746.08698862084, + 17931.685120771363, + 18111.715929267553, + 18286.17941410943, + 18455.07557529699, + 18618.40441283022, + 18776.165926709138, + 18928.360116933727, + 19074.986983503997, + 19216.04652641995, + 19351.53874568158, + 19481.463641288887, + 19605.821213241874, + 19724.61146154054, + 19837.834386184888, + 19945.48998717492, + 20047.578264510623, + 20144.099218192, + 20235.052848219064, + 20320.439154591804, + 20400.25813731022, + 20474.50979637432, + 20543.194131784097, + 20606.311143539555, + 20663.86083164069, + 20715.84319608751, + 20762.25823688, + 15083.377133369997, + 15332.54779280506, + 15576.151128585805, + 15814.187140712222, + 16046.655829184314, + 16273.557194002095, + 16494.891235165553, + 16710.657952674686, + 16920.857346529505, + 17125.489416729997, + 17324.554163276174, + 17518.051586168025, + 17705.981685405553, + 17888.344460988763, + 18065.13991291765, + 18236.368041192218, + 18402.028845812467, + 18562.12232677839, + 18716.648484089998, + 18865.60731774729, + 19008.99882775025, + 19146.82301409889, + 19279.07987679321, + 19405.769415833205, + 19526.89163121888, + 19642.446522950246, + 19752.434091027284, + 19856.854335449996, + 19955.707256218393, + 20048.992853332464, + 20136.711126792223, + 20218.862076597652, + 20295.445702748766, + 20366.462005245558, + 20431.910984088026, + 20491.792639276173, + 20546.106970810004, + 15354.227915649999, + 15602.769471671727, + 15845.743704039138, + 16083.150612752228, + 16314.990197810992, + 16541.26245921544, + 16761.96739696556, + 16977.10501106136, + 17186.675301502844, + 17390.67826829, + 17589.113911422846, + 17781.982230901358, + 17969.283226725558, + 18151.016898895432, + 18327.183247410994, + 18497.78227227222, + 18662.813973479137, + 18822.27835103174, + 18976.175404930007, + 19124.505135173953, + 19267.267541763587, + 19404.462624698896, + 19536.09038397988, + 19662.150819606544, + 19782.643931578896, + 19897.569719896917, + 20006.92818456062, + 20110.71932557, + 20208.94314292507, + 20301.5996366258, + 20388.68880667222, + 20470.21065306433, + 20546.165175802107, + 20616.552374885556, + 20681.372250314696, + 20740.62480208951, + 20794.310030210007, + 15699.776853753996, + 15947.186023631722, + 16189.027869855132, + 16425.30239242422, + 16656.009591338978, + 16881.14946659943, + 17100.722018205553, + 17314.72724615735, + 17523.16515045483, + 17726.03573109799, + 17923.338988086834, + 18115.07492142136, + 18301.243531101554, + 18481.84481712743, + 18656.878779498984, + 18826.345418216217, + 18990.244733279138, + 19148.576724687726, + 19301.341392442, + 19448.53873654195, + 19590.168756987572, + 19726.23145377888, + 19856.726826915867, + 19981.654876398534, + 20101.015602226886, + 20214.80900440091, + 20323.035082920615, + 20425.693837785995, + 20522.785268997053, + 20614.309376553803, + 20700.266160456216, + 20780.655620704314, + 20855.477757298097, + 20924.732570237553, + 20988.42005952269, + 21046.5402251535, + 21099.09306712999, + 15177.580727999995, + 15432.484168395058, + 15681.820285135804, + 15925.589078222218, + 16163.790547654315, + 16396.424693432095, + 16623.49151555555, + 16844.991014024683, + 17060.923188839504, + 17271.28804, + 17476.085567506172, + 17675.315771358022, + 17868.97865155555, + 18057.074208098755, + 18239.602440987645, + 18416.563350222215, + 18587.956935802464, + 18753.783197728393, + 18914.042136, + 19068.733750617277, + 19217.858041580246, + 19361.415008888882, + 19499.404652543206, + 19631.826972543207, + 19758.681968888886, + 19879.969641580246, + 19995.689990617277, + 20105.843015999995, + 20210.42871772839, + 20309.447095802465, + 20402.898150222212, + 20490.781880987655, + 20573.09828809876, + 20649.84737155555, + 20721.029131358024, + 20786.643567506173, + 20846.690680000003, + 15455.317978, + 15709.736965061722, + 15958.588628469137, + 16201.872968222222, + 16439.589984320988, + 16671.73967676544, + 16898.322045555557, + 17119.337090691355, + 17334.784812172842, + 17544.66521, + 17748.97828417284, + 17947.724034691357, + 18140.90246155555, + 18328.51356476543, + 18510.55734432099, + 18687.033800222216, + 18857.942932469134, + 19023.284741061725, + 19183.059225999998, + 19337.26638728396, + 19485.906224913582, + 19628.97873888889, + 19766.48392920988, + 19898.421795876544, + 20024.79233888888, + 20145.595558246914, + 20260.831453950617, + 20370.500025999998, + 20474.601274395063, + 20573.1351991358, + 20666.101800222223, + 20753.50107765432, + 20835.333031432096, + 20911.597661555563, + 20982.294968024693, + 21047.424950839508, + 21106.987610000004, + 15813.262558000006, + 16066.80952906173, + 16314.789176469138, + 16557.201500222225, + 16794.046500320983, + 17025.324176765433, + 17251.034529555556, + 17471.17755869135, + 17685.75326417284, + 17894.761646, + 18098.20270417284, + 18296.07643869136, + 18488.382849555564, + 18675.121936765434, + 18856.293700320988, + 19031.898140222223, + 19201.935256469143, + 19366.40504906173, + 19525.307517999994, + 19678.642663283958, + 19826.41048491358, + 19968.610982888888, + 20105.244157209876, + 20236.310007876542, + 20361.808534888896, + 20481.739738246913, + 20596.10361795062, + 20704.900174000002, + 20808.129406395063, + 20905.791315135808, + 20997.885900222223, + 21084.413161654324, + 21165.3730994321, + 21240.765713555556, + 21310.591004024693, + 21374.84897083951, + 21433.53961400001, + 15269.39603925, + 15530.032260605058, + 15785.101158305804, + 16034.60273235222, + 16278.536982744317, + 16516.9039094821, + 16749.703512565553, + 16976.935791994685, + 17198.600747769506, + 17414.698379889996, + 17625.228688356176, + 17830.191673168032, + 18029.587334325555, + 18223.415671828763, + 18411.676685677656, + 18594.37037587222, + 18771.49674241247, + 18943.0557852984, + 19109.04750453, + 19269.471900107284, + 19424.328972030245, + 19573.618720298888, + 19717.34114491321, + 19855.496245873204, + 19988.084023178893, + 20115.10447683025, + 20236.557606827286, + 20352.44341317, + 20462.761895858395, + 20567.513054892475, + 20666.696890272222, + 20760.313401997657, + 20848.36259006876, + 20930.844454485563, + 21007.758995248023, + 21079.106212356164, + 21144.886105809994, + 15554.019756970007, + 15814.316175071732, + 16069.045269519143, + 16318.207040312223, + 16561.801487450986, + 16799.828610935438, + 17032.288410765555, + 17259.180886941354, + 17480.50603946284, + 17696.263868330003, + 17906.454373542845, + 18111.077555101365, + 18310.133413005566, + 18503.621947255437, + 18691.543157850992, + 18873.897044792226, + 19050.683608079144, + 19221.902847711735, + 19387.55476369, + 19547.639356013955, + 19702.15662468359, + 19851.10656969889, + 19994.48919105988, + 20132.304488766542, + 20264.552462818894, + 20391.233113216927, + 20512.346439960624, + 20627.89244305, + 20737.871122485067, + 20842.282478265814, + 20941.12651039223, + 21034.403218864325, + 21122.1126036821, + 21204.25466484556, + 21280.82940235469, + 21351.83681620952, + 21417.276906410003, + 15924.359978866003, + 16184.044751111727, + 16438.16219970314, + 16686.712324640223, + 16929.695125922983, + 17167.110603551435, + 17398.958757525557, + 17625.239587845354, + 17845.953094510834, + 18061.099277522, + 18270.678136878843, + 18474.689672581364, + 18673.133884629566, + 18866.010773023434, + 19053.32033776299, + 19235.062578848225, + 19411.237496279144, + 19581.845090055733, + 19746.885360178, + 19906.358306645954, + 20060.263929459587, + 20208.60222861889, + 20351.37320412388, + 20488.57685597454, + 20620.213184170887, + 20746.282188712925, + 20866.783869600626, + 20981.718226834, + 21091.085260413067, + 21194.88497033781, + 21293.11735660823, + 21385.782419224328, + 21472.8801581861, + 21554.41057349356, + 21630.37366514669, + 21700.769433145513, + 21765.597877490003, + 15358.823067119998, + 15625.192069435057, + 15885.993748095805, + 16141.228103102221, + 16390.895134454317, + 16634.994842152097, + 16873.52722619555, + 17106.492286584682, + 17333.8900233195, + 17555.720436399995, + 17771.983525826174, + 17982.679291598026, + 18187.807733715556, + 18387.368852178766, + 18581.362646987654, + 18769.78911814222, + 18952.64826564247, + 19129.940089488395, + 19301.664589679993, + 19467.82176621728, + 19628.411619100243, + 19783.434148328884, + 19932.889353903207, + 20076.7772358232, + 20215.097794088877, + 20347.851028700254, + 20475.03693965729, + 20596.65552696, + 20712.70679060839, + 20823.190730602466, + 20928.10734694221, + 21027.456639627657, + 21121.238608658765, + 21209.453254035547, + 21292.100575758017, + 21369.18057382618, + 21440.693248239993, + 15650.333252560004, + 15916.507101701729, + 16177.113627189143, + 16432.152829022227, + 16681.624707200986, + 16925.529261725438, + 17163.866492595553, + 17396.636399811356, + 17623.83898337284, + 17845.474243279994, + 18061.542179532844, + 18272.042792131364, + 18476.976081075554, + 18676.34204636543, + 18870.140688000993, + 19058.372005982223, + 19241.036000309145, + 19418.132670981726, + 19589.662018, + 19755.624041363957, + 19916.018741073585, + 20070.84611712889, + 20220.106169529874, + 20363.79889827653, + 20501.924303368898, + 20634.482384806914, + 20761.473142590617, + 20882.896576719995, + 20998.75268719507, + 21109.04147401581, + 21213.762937182226, + 21312.91707669432, + 21406.503892552093, + 21494.52338475556, + 21576.975553304692, + 21653.860398199507, + 21725.177919440008, + 16033.069116351999, + 16298.891689781725, + 16559.146939557137, + 16813.834865678225, + 17062.95546814498, + 17306.508746957436, + 17544.494702115557, + 17776.91333361936, + 18003.764641468835, + 18225.04862566399, + 18440.765286204845, + 18650.91462309136, + 18855.49663632355, + 19054.511325901425, + 19247.958691824995, + 19435.838734094224, + 19618.151452709135, + 19794.896847669723, + 19966.074918975995, + 20131.685666627953, + 20291.729090625588, + 20446.205190968885, + 20595.11396765787, + 20738.455420692535, + 20876.229550072898, + 21008.436355798913, + 21135.075837870616, + 21256.147996288, + 21371.652831051062, + 21481.590342159805, + 21585.96052961422, + 21684.763393414316, + 21777.998933560095, + 21865.667150051555, + 21947.7680428887, + 22024.301612071504, + 22095.2678576, + 15445.86181161, + 15717.963594885061, + 15984.498054505802, + 16245.465190472221, + 16500.865002784318, + 16750.697491442097, + 16994.962656445554, + 17233.66049779468, + 17466.791015489503, + 17694.354209529996, + 17916.35007991617, + 18132.778626648033, + 18343.639849725554, + 18548.933749148764, + 18748.660324917655, + 18942.81957703222, + 19131.41150549247, + 19314.436110298397, + 19491.893391449998, + 19663.78334894728, + 19830.105982790243, + 19990.861292978883, + 20146.04927951321, + 20295.669942393204, + 20439.723281618888, + 20578.209297190246, + 20711.127989107288, + 20838.47935737, + 20960.263401978398, + 21076.480122932477, + 21187.12952023222, + 21292.21159387766, + 21391.72634386877, + 21485.673770205558, + 21574.053872888027, + 21656.86665191617, + 21734.112107290002, + 15744.258464770004, + 16016.30974495173, + 16282.793701479142, + 16543.710334352225, + 16799.05964357099, + 17048.841629135437, + 17293.056291045556, + 17531.70362930136, + 17764.783643902843, + 17992.29633485, + 18214.241702142845, + 18430.61974578137, + 18641.43046576556, + 18846.67386209543, + 19046.349934771, + 19240.45868379222, + 19429.00010915914, + 19611.974210871736, + 19789.380988930003, + 19961.220443333958, + 20127.49257408359, + 20288.197381178892, + 20443.334864619883, + 20592.90502440655, + 20736.907860538893, + 20875.343373016924, + 21008.211561840628, + 21135.512427010006, + 21257.24596852507, + 21373.412186385813, + 21484.01108059223, + 21589.042651144333, + 21688.506898042106, + 21782.403821285563, + 21870.7334208747, + 21953.49569680952, + 22030.690649090004, + 16139.389970457998, + 16411.350345071725, + 16677.743396031135, + 16938.569123336223, + 17193.82752698698, + 17443.518606983434, + 17687.642363325558, + 17926.198796013356, + 18159.18790504684, + 18386.609690425998, + 18608.464152150842, + 18824.751290221368, + 19035.47110463756, + 19240.623595399436, + 19440.208762506994, + 19634.226605960223, + 19822.677125759146, + 20005.560321903733, + 20182.876194394, + 20354.624743229957, + 20520.805968411583, + 20681.419869938887, + 20836.466447811876, + 20985.945702030545, + 21129.85763259489, + 21268.202239504924, + 21400.979522760626, + 21528.189482362002, + 21649.832118309067, + 21765.90743060181, + 21876.415419240224, + 21981.356084224324, + 22080.7294255541, + 22174.535443229557, + 22262.774137250697, + 22345.445507617518, + 22422.54955433, + 15530.51227272, + 15808.34683695506, + 16080.614077535805, + 16347.313994462222, + 16608.446587734317, + 16864.011857352096, + 17114.009803315555, + 17358.440425624685, + 17597.303724279507, + 17830.599699279996, + 18058.328350626176, + 18280.48967831803, + 18497.08368235556, + 18708.110362738764, + 18913.569719467654, + 19113.46175254222, + 19307.786461962467, + 19496.543847728397, + 19679.73390984, + 19857.356648297282, + 20029.412063100244, + 20195.900154248884, + 20356.820921743212, + 20512.174365583203, + 20661.96048576888, + 20806.17928230025, + 20944.830755177285, + 21077.9149044, + 21205.4317299684, + 21327.38123188247, + 21443.76341014222, + 21554.578264747655, + 21659.825795698765, + 21759.506002995557, + 21853.618886638025, + 21942.164446626175, + 22025.14268296, + 15835.795393600003, + 16113.724104821731, + 16386.085492389142, + 16652.87955630223, + 16914.10629656099, + 17169.765713165438, + 17419.85780611556, + 17664.38257541136, + 17903.34002105284, + 18136.73014304, + 18364.552941372844, + 18586.808416051368, + 18803.496567075563, + 19014.617394445435, + 19220.170898160995, + 19420.157078222222, + 19614.575934629145, + 19803.42746738173, + 19986.71167648, + 20164.428561923956, + 20336.57812371358, + 20503.160361848888, + 20664.175276329883, + 20819.622867156548, + 20969.503134328897, + 21113.816077846914, + 21252.561697710626, + 21385.739993920004, + 21513.350966475075, + 21635.394615375808, + 21751.870940622226, + 21862.77994221433, + 21968.121620152106, + 22067.895974435563, + 22162.10300506469, + 22250.74271203951, + 22333.815095359998, + 16243.322541184, + 16521.420716981727, + 16793.951569125136, + 17060.91509761422, + 17322.311302448983, + 17578.14018362943, + 17828.401741155554, + 18073.095975027354, + 18312.222885244835, + 18545.782471807997, + 18773.77473471684, + 18996.19967397136, + 19213.057289571563, + 19424.347581517435, + 19630.070549808996, + 19830.226194446226, + 20024.81451542914, + 20213.835512757734, + 20397.289186431997, + 20575.175536451952, + 20747.49456281758, + 20914.246265528887, + 21075.43064458588, + 21231.047699988543, + 21381.097431736893, + 21525.579839830913, + 21664.49492427062, + 21797.842685055995, + 21925.623122187066, + 22047.836235663814, + 22164.48202548622, + 22275.560491654323, + 22381.071634168093, + 22481.01545302756, + 22575.391948232693, + 22664.201119783505, + 22747.442967679995, + 15612.774450449999, + 15896.341795645058, + 16174.341817185801, + 16446.774515072215, + 16713.639889304315, + 16974.937939882093, + 17230.668666805548, + 17480.83207007468, + 17725.428149689502, + 17964.45690564999, + 18197.91833795617, + 18425.81244660802, + 18648.139231605554, + 18864.898692948755, + 19076.09083063765, + 19281.715644672222, + 19481.773135052463, + 19676.263301778392, + 19865.18614484999, + 20048.541664267275, + 20226.32986003024, + 20398.55073213888, + 20565.204280593203, + 20726.2905053932, + 20881.809406538887, + 21031.76098403024, + 21176.145237867277, + 21314.96216805, + 21448.21177457839, + 21575.894057452464, + 21698.009016672215, + 21814.556652237647, + 21925.536964148756, + 22030.94995240555, + 22130.795617008014, + 22225.073957956163, + 22313.784975249993, + 15924.944039050002, + 16208.750181311729, + 16486.98899991914, + 16759.660494872223, + 17026.764666170984, + 17288.301513815437, + 17544.271037805553, + 17794.673238141357, + 18039.50811482284, + 18278.775667849994, + 18512.47589722284, + 18740.608802941362, + 18963.174385005557, + 19180.172643415433, + 19391.60357817099, + 19597.46718927222, + 19797.76347671914, + 19992.492440511724, + 20181.654080649998, + 20365.248397133953, + 20543.27538996358, + 20715.735059138886, + 20882.627404659874, + 21043.952426526546, + 21199.710124738885, + 21349.90049929692, + 21494.523550200618, + 21633.579277450004, + 21767.067681045064, + 21894.98876098581, + 22017.342517272224, + 22134.12894990432, + 22245.3480588821, + 22350.99984420556, + 22451.084305874698, + 22545.601443889514, + 22634.551258249998, + 16344.866828529997, + 16629.102805511724, + 16907.771458839135, + 17180.872788512217, + 17448.40679453098, + 17710.37347689543, + 17966.77283560555, + 18217.60487066135, + 18462.869582062838, + 18702.56696980999, + 18936.697033902834, + 19165.259774341357, + 19388.255191125554, + 19605.68328425543, + 19817.54405373098, + 20023.837499552217, + 20224.56362171914, + 20419.72242023173, + 20609.313895089992, + 20793.33804629395, + 20971.794873843573, + 21144.68437773888, + 21312.006557979872, + 21473.761414566536, + 21629.94894749888, + 21780.569156776914, + 21925.62204240062, + 22065.107604369998, + 22199.02584268506, + 22327.3767573458, + 22450.16034835222, + 22567.37661570431, + 22679.025559402096, + 22785.107179445553, + 22885.62147583469, + 22980.568448569506, + 23069.94809764999, + 15692.648344799998, + 15981.948470955056, + 16265.681273455804, + 16543.846752302223, + 16816.444907494315, + 17083.475739032096, + 17344.93924691555, + 17600.835431144682, + 17851.164291719502, + 18095.925828639993, + 18335.12004190617, + 18568.746931518028, + 18796.806497475554, + 19019.298739778762, + 19236.223658427654, + 19447.581253422217, + 19653.371524762475, + 19853.594472448392, + 20048.25009648, + 20237.33839685728, + 20420.859373580242, + 20598.813026648884, + 20771.199356063207, + 20938.018361823208, + 21099.270043928882, + 21254.954402380245, + 21405.071437177285, + 21549.62114832, + 21688.60353580839, + 21822.01859964247, + 21949.866339822216, + 22072.14675634765, + 22188.85984921876, + 22300.00561843555, + 22405.58406399802, + 22505.595185906168, + 22600.038984159994, + 16011.704401120007, + 16301.387974421728, + 16585.50422406914, + 16864.053150062227, + 17137.034752400985, + 17404.449031085434, + 17666.295986115554, + 17922.575617491355, + 18173.28792521284, + 18418.43290928, + 18658.010569692844, + 18892.020906451366, + 19120.46391955556, + 19343.339609005434, + 19560.64797480099, + 19772.389016942223, + 19978.56273542914, + 20179.169130261736, + 20374.208201439993, + 20563.67994896396, + 20747.584372833582, + 20925.92147304889, + 21098.691249609874, + 21265.893702516543, + 21427.52883176889, + 21583.59663736691, + 21734.097119310623, + 21879.030277600003, + 22018.396112235067, + 22152.194623215797, + 22280.425810542223, + 22403.08967421432, + 22520.1862142321, + 22631.715430595556, + 22737.677323304695, + 22838.071892359498, + 22932.899137760003, + 16444.022832496, + 16734.396610661726, + 17019.203065173137, + 17298.442196030224, + 17572.114003232982, + 17840.218486781432, + 18102.755646675556, + 18359.72548291535, + 18611.127995500836, + 18856.96318443199, + 19097.231049708837, + 19331.931591331362, + 19561.064809299554, + 19784.63070361343, + 20002.62927427299, + 20215.060521278217, + 20421.92444462914, + 20623.221044325728, + 20818.950320368, + 21009.11227275595, + 21193.706901489575, + 21372.734206568886, + 21546.19418799387, + 21714.086845764545, + 21876.412179880885, + 22033.17019034291, + 22184.36087715062, + 22329.984240304006, + 22470.040279803066, + 22604.528995647794, + 22733.45038783822, + 22856.804456374317, + 22974.591201256095, + 23086.810622483557, + 23193.462720056697, + 23294.547493975497, + 23390.064944239995, + 15770.133955769996, + 16065.166862885053, + 16354.6324463458, + 16638.530706152218, + 16916.861642304313, + 17189.625254802093, + 17456.82154364555, + 17718.450508834678, + 17974.512150369497, + 18225.006468249994, + 18469.93346247617, + 18709.293133048024, + 18943.085479965554, + 19171.310503228757, + 19393.968202837645, + 19611.058578792217, + 19822.581631092467, + 20028.53735973839, + 20228.92576472999, + 20423.746846067283, + 20613.000603750243, + 20796.68703777888, + 20974.806148153202, + 21147.357934873202, + 21314.342397938886, + 21475.75953735024, + 21631.60935310728, + 21781.891845209993, + 21926.60701365839, + 22065.754858452467, + 22199.335379592216, + 22327.348577077653, + 22449.794450908754, + 22566.67300108555, + 22677.98422760802, + 22783.728130476164, + 22883.904709689992, + 16096.07647981, + 16391.637484151724, + 16681.63116483914, + 16966.057521872222, + 17244.916555250984, + 17518.208264975434, + 17785.932651045554, + 18048.089713461355, + 18304.679452222834, + 18555.701867329997, + 18801.15695878284, + 19041.044726581364, + 19275.365170725556, + 19504.118291215425, + 19727.30408805099, + 19944.922561232223, + 20156.97371075914, + 20363.45753663173, + 20564.374038849997, + 20759.723217413957, + 20949.50507232358, + 21133.719603578887, + 21312.366811179876, + 21485.44669512655, + 21652.959255418886, + 21814.904492056918, + 21971.28240504062, + 22122.09299437, + 22267.336260045067, + 22407.012202065805, + 22541.12082043222, + 22669.662115144325, + 22792.6360862021, + 22910.042733605555, + 23021.88205735469, + 23128.154057449516, + 23228.858733889996, + 16540.790553081995, + 16837.302132431723, + 17128.246388127136, + 17413.62332016822, + 17693.43292855498, + 17967.67521328743, + 18236.350174365547, + 18499.45781178935, + 18756.998125558835, + 19008.97111567399, + 19255.376782134837, + 19496.21512494136, + 19731.486144093553, + 19961.189839591425, + 20185.326211434985, + 20403.895259624216, + 20616.896984159135, + 20824.33138503973, + 21026.198462265995, + 21222.49821583795, + 21413.230645755575, + 21598.39575201889, + 21777.99353462788, + 21952.02399358254, + 22120.48712888288, + 22283.382940528918, + 22440.711428520615, + 22592.472592857997, + 22738.666433541064, + 22879.2929505698, + 23014.352143944216, + 23143.844013664322, + 23267.768559730095, + 23386.125782141557, + 23498.91568089869, + 23606.138256001504, + 23707.793507449995, + 15845.231283359999, + 16145.996971435061, + 16441.195335855806, + 16730.826376622223, + 17014.890093734317, + 17293.3864871921, + 17566.315556995556, + 17833.67730314469, + 18095.47172563951, + 18351.698824480005, + 18602.35859966618, + 18847.451051198026, + 19086.97617907555, + 19320.933983298757, + 19549.324463867648, + 19772.147620782216, + 19989.403454042462, + 20201.091963648392, + 20407.21314959999, + 20607.767011897293, + 20802.75355054025, + 20992.17276552889, + 21176.02465686321, + 21354.30922454321, + 21527.026468568893, + 21694.17638894025, + 21855.75898565728, + 22011.774258719997, + 22162.22220812839, + 22307.10283388247, + 22446.416135982225, + 22580.16211442765, + 22708.34076921876, + 22830.952100355564, + 22947.996107838026, + 23059.472791666172, + 23165.382151840004, + 16178.060275120004, + 16479.498710501728, + 16775.36982222914, + 17065.67361030223, + 17350.41007472099, + 17629.579215485443, + 17903.181032595563, + 18171.215526051357, + 18433.682695852844, + 18690.582542000004, + 18941.915064492845, + 19187.680263331367, + 19427.878138515553, + 19662.50869004543, + 19891.57191792099, + 20115.067822142224, + 20332.996402709137, + 20545.357659621735, + 20752.151592880004, + 20953.378202483953, + 21149.03748843358, + 21339.1294507289, + 21523.654089369884, + 21702.611404356547, + 21876.00139568889, + 22043.82406336692, + 22206.079407390625, + 22362.76742776, + 22513.888124475066, + 22659.4414975358, + 22799.427546942225, + 22933.84627269433, + 23062.697674792107, + 23185.98175323556, + 23303.698508024703, + 23415.847939159514, + 23522.430046640005, + 16635.169990287995, + 16937.819370821722, + 17234.901427701134, + 17526.41616092622, + 17812.363570496982, + 18092.74365641343, + 18367.556418675547, + 18636.801857283353, + 18900.479972236833, + 19158.59076353599, + 19411.13423118084, + 19658.11037517136, + 19899.51919550755, + 20135.36069218943, + 20365.634865216987, + 20590.341714590217, + 20809.48124030913, + 21023.05344237373, + 21231.05832078399, + 21433.49587553995, + 21630.366106641577, + 21821.669014088882, + 22007.40459788188, + 22187.572858020536, + 22362.17379450489, + 22531.20740733491, + 22694.673696510625, + 22852.57266203199, + 23004.904303899064, + 23151.6686221118, + 23292.86561667022, + 23428.495287574322, + 23558.557634824097, + 23683.052658419554, + 23801.98035836069, + 23915.3407346475, + 24023.133787279996, + 15917.940327569997, + 16224.438796605056, + 16525.369941985802, + 16820.73376371222, + 17110.53026178431, + 17394.759436202094, + 17673.42128696555, + 17946.515814074686, + 18214.043017529504, + 18476.00289733, + 18732.39545347618, + 18983.220685968023, + 19228.47859480555, + 19468.169179988756, + 19702.29244151765, + 19930.848379392217, + 20153.836993612465, + 20371.258284178395, + 20583.112251089995, + 20789.398894347287, + 20990.118213950245, + 21185.27020989889, + 21374.854882193213, + 21558.87223083321, + 21737.32225581889, + 21910.20495715025, + 22077.52033482728, + 22239.268388849992, + 22395.449119218392, + 22546.062525932455, + 22691.108608992214, + 22830.58736839765, + 22964.49880414876, + 23092.84291624555, + 23215.61970468803, + 23332.829169476176, + 23444.471310610003, + 16257.655787050002, + 16564.971653471723, + 16866.720196239137, + 17162.90141535222, + 17453.51531081099, + 17738.56188261544, + 18018.041130765556, + 18291.953055261358, + 18560.297656102844, + 18823.07493329, + 19080.28488682285, + 19331.927516701362, + 19578.002822925555, + 19818.51080549543, + 20053.45146441099, + 20282.82479967222, + 20506.630811279138, + 20724.86949923173, + 20937.540863529994, + 21144.64490417396, + 21346.181621163585, + 21542.15101449889, + 21732.553084179886, + 21917.38783020655, + 22096.655252578887, + 22270.355351296912, + 22438.48812636062, + 22601.05357777, + 22758.05170552507, + 22909.482509625803, + 23055.345990072226, + 23195.642146864317, + 23330.370980002095, + 23459.532489485562, + 23583.1266753147, + 23701.153537489503, + 23813.61307601, + 16727.161144114005, + 17035.94832583173, + 17339.16818389514, + 17636.820718304225, + 17928.905929058987, + 18215.423816159437, + 18496.374379605557, + 18771.757619397355, + 19041.57353553484, + 19305.822128017997, + 19564.503396846838, + 19817.61734202137, + 20065.163963541563, + 20307.14326140744, + 20543.555235618987, + 20774.399886176223, + 20999.677213079147, + 21219.387216327737, + 21433.52989592201, + 21642.10525186195, + 21845.113284147577, + 22042.553992778885, + 22234.427377755885, + 22420.733439078547, + 22601.472176746887, + 22776.64359076091, + 22946.24768112063, + 23110.28444782601, + 23268.753890877066, + 23421.6560102738, + 23568.99080601622, + 23710.758278104327, + 23846.958426538105, + 23977.59125131756, + 24102.656752442694, + 24222.1549299135, + 24336.085783729995, + 15988.261088400002, + 16300.492338395059, + 16607.156264735808, + 16908.25286742222, + 17203.782146454316, + 17493.7441018321, + 17778.138733555556, + 18056.966041624684, + 18330.226026039505, + 18597.918686799996, + 18860.044023906175, + 19116.60203735803, + 19367.592727155556, + 19613.01609329876, + 19852.872135787657, + 20087.16085462222, + 20315.88224980247, + 20539.036321328396, + 20756.623069199995, + 20968.642493417286, + 21175.094593980248, + 21375.97937088889, + 21571.296824143206, + 21761.046953743207, + 21945.229759688893, + 22123.84524198025, + 22296.893400617282, + 22464.374235599997, + 22626.28774692839, + 22782.633934602472, + 22933.412798622223, + 23078.624338987654, + 23218.268555698764, + 23352.345448755557, + 23480.85501815802, + 23603.797263906166, + 23721.172185999996, + 16334.86301560001, + 16648.056313061734, + 16955.682286869145, + 17257.740937022223, + 17554.232263520986, + 17845.15626636544, + 18130.512945555558, + 18410.302301091357, + 18684.52433297284, + 18953.1790412, + 19216.266425772843, + 19473.78648669137, + 19725.739223955563, + 19972.124637565434, + 20212.942727520996, + 20448.193493822222, + 20677.876936469143, + 20901.993055461735, + 21120.541850800004, + 21333.523322483954, + 21540.93747051358, + 21742.784294888894, + 21939.063795609884, + 22129.775972676543, + 22314.920826088888, + 22494.49835584692, + 22668.508561950624, + 22836.95144440001, + 22999.827003195074, + 23157.135238335806, + 23308.87614982223, + 23455.049737654328, + 23595.656001832103, + 23730.694942355563, + 23860.166559224697, + 23984.070852439516, + 24102.407822000005, + 16816.764014560005, + 17131.68899746173, + 17441.04665670914, + 17744.836992302222, + 18043.060004240986, + 18335.71569252543, + 18622.80405715555, + 18904.32509813135, + 19180.27881545284, + 19450.665209119998, + 19715.484279132845, + 19974.73602549136, + 20228.420448195557, + 20476.537547245425, + 20719.08732264099, + 20956.069774382224, + 21187.48490246914, + 21413.332706901732, + 21633.613187679995, + 21848.326344803954, + 22057.472178273583, + 22261.050688088882, + 22459.061874249877, + 22651.505736756546, + 22838.38227560888, + 23019.69149080692, + 23195.433382350617, + 23365.60795024, + 23530.215194475062, + 23689.255115055807, + 23842.72771198222, + 23990.632985254328, + 24132.970934872097, + 24269.741560835562, + 24400.94486314469, + 24526.580841799514, + 24646.649496799993, + 16056.193565849999, + 16374.157596805058, + 16686.554304105804, + 16993.383687752223, + 17294.645747744315, + 17590.3404840821, + 17880.467896765553, + 18165.027985794684, + 18444.020751169504, + 18717.446192889995, + 18985.30431095617, + 19247.59510536803, + 19504.31857612556, + 19755.47472322876, + 20001.063546677655, + 20241.085046472217, + 20475.539222612468, + 20704.426075098396, + 20927.745603929994, + 21145.497809107284, + 21357.682690630245, + 21564.30024849889, + 21765.35048271321, + 21960.833393273206, + 22150.748980178883, + 22335.097243430253, + 22513.87818302729, + 22687.091798970003, + 22854.738091258398, + 23016.817059892466, + 23173.32870487222, + 23324.27302619765, + 23469.650023868762, + 23609.459697885555, + 23743.702048248026, + 23872.377074956177, + 23995.484778009995, + 16409.681960770005, + 16728.75268927173, + 17042.256094119144, + 17350.192175312226, + 17652.560932850985, + 17949.362366735437, + 18240.59647696556, + 18526.263263541354, + 18806.36272646284, + 19080.89486573, + 19349.85968134284, + 19613.257173301365, + 19871.08734160556, + 20123.35018625543, + 20370.045707250996, + 20611.173904592226, + 20846.73477827914, + 21076.728328311736, + 21301.154554689998, + 21520.01345741396, + 21733.305036483584, + 21941.029291898893, + 22143.186223659883, + 22339.77583176655, + 22530.798116218895, + 22716.253077016914, + 22896.14071416062, + 23070.461027650006, + 23239.21401748507, + 23402.399683665804, + 23560.01802619222, + 23712.069045064327, + 23858.5527402821, + 23999.469111845556, + 24134.818159754694, + 24264.599884009505, + 24388.814284609998, + 16903.978601626, + 17225.041385711727, + 17540.53684614314, + 17850.46498292022, + 18154.825796042984, + 18453.61928551143, + 18746.845451325553, + 19034.50429348535, + 19316.595811990836, + 19593.120006842, + 19864.07687803884, + 20129.466425581362, + 20389.288649469563, + 20643.543549703427, + 20892.23112628299, + 21135.351379208223, + 21372.90430847914, + 21604.889914095733, + 21831.308196057995, + 22052.159154365952, + 22267.442789019584, + 22477.15910001889, + 22681.30808736388, + 22879.889751054543, + 23072.904091090888, + 23260.351107472914, + 23442.230800200618, + 23618.543169274002, + 23789.288214693064, + 23954.46593645781, + 24114.07633456822, + 24268.119409024323, + 24416.595159826098, + 24559.50358697356, + 24696.84469046669, + 24828.618470305508, + 24954.824926489993, + 16063.594199908703, + 16382.195207035566, + 16695.22889050811, + 17002.695250326335, + 17304.59428649023, + 17600.925998999814, + 17891.690387855073, + 18176.887453056002, + 18456.517194602628, + 18730.57961249492, + 18999.074706732903, + 19262.002477316564, + 19519.362924245892, + 19771.156047520904, + 20017.381847141598, + 20258.04032310796, + 20493.131475420018, + 20722.655304077743, + 20946.611809081154, + 21165.00099043024, + 21377.822848125, + 21585.077382165444, + 21786.764592551568, + 21982.88447928337, + 22173.437042360845, + 22358.42228178402, + 22537.84019755286, + 22711.690789667384, + 22879.974058127576, + 23042.69000293345, + 23199.83862408501, + 23351.41992158224, + 23497.433895425154, + 23637.88054561375, + 23772.759872148024, + 23902.07187502797, + 24025.816554253597, + 16417.84775852084, + 16737.571535438336, + 17051.727988701517, + 17360.317118310373, + 17663.33892426491, + 17960.79340656513, + 18252.68056521102, + 18539.00040020259, + 18819.752911539847, + 19094.93809922278, + 19364.555963251398, + 19628.60650362569, + 19887.089720345655, + 20140.005613411297, + 20387.35418282263, + 20629.135428579633, + 20865.34935068232, + 21095.995949130687, + 21321.075223924723, + 21540.58717506445, + 21754.531802549853, + 21962.909106380925, + 22165.71908655769, + 22362.961743080123, + 22554.637075948252, + 22740.74508516204, + 22921.28577072152, + 23096.25913262667, + 23265.665170877506, + 23429.50388547402, + 23587.775276416207, + 23740.47934370408, + 23887.61608733762, + 24029.18550731686, + 24165.187603641763, + 24295.622376312353, + 24420.489825328612, + 16913.52169402267, + 17235.266456563313, + 17551.44389544964, + 17862.05401068164, + 18167.09680225932, + 18466.57227018268, + 18760.48041445172, + 19048.82123506643, + 19331.59473202683, + 19608.800905332904, + 19880.439754984665, + 20146.511280982104, + 20407.01548332521, + 20661.952362014006, + 20911.321917048477, + 21155.124148428626, + 21393.35905615446, + 21626.026640225966, + 21853.12690064315, + 22074.659837406016, + 22290.625450514563, + 22501.023739968783, + 22705.854705768692, + 22905.118347914264, + 23098.814666405535, + 23286.94366124247, + 23469.505332425095, + 23646.499679953395, + 23817.92670382737, + 23983.786404047023, + 24144.078780612363, + 24298.803833523372, + 24447.961562780067, + 24591.55196838244, + 24729.57505033049, + 24862.030808624215, + 24988.91924326363, + 16952.535791999995, + 17462.229497283945, + 17966.355878913582, + 18464.91493688889, + 18957.906671209872, + 19445.331081876546, + 19927.18816888889, + 20403.477932246908, + 20874.200371950617, + 21339.355487999994, + 21798.94328039507, + 22252.9637491358, + 22701.41689422222, + 23144.302715654314, + 23581.621213432096, + 24013.372387555544, + 24439.556238024692, + 24860.172764839503, + 25275.221967999998, + 25684.70384750617, + 26088.618403358025, + 26486.965635555556, + 26879.745544098776, + 27266.95812898765, + 27648.60339022221, + 28024.681327802467, + 28395.191941728397, + 28760.13523199999, + 29119.51119861728, + 29473.31984158024, + 29821.561160888876, + 30164.235156543215, + 30501.34182854321, + 30832.881176888888, + 31158.85320158025, + 31479.257902617286, + 31794.095279999994, + 17536.338274, + 18051.976418395057, + 18562.047239135805, + 19066.55073622222, + 19565.48690965432, + 20058.85575943211, + 20546.657285555557, + 21028.89148802469, + 21505.558366839516, + 21976.657922000002, + 22442.190153506177, + 22902.15506135803, + 23356.552645555556, + 23805.382906098755, + 24248.645842987655, + 24686.341456222217, + 25118.46974580248, + 25545.030711728396, + 25966.024353999997, + 26381.4506726173, + 26791.30966758026, + 27195.601338888893, + 27594.325686543216, + 27987.482710543212, + 28375.07241088889, + 28757.094787580252, + 29133.549840617285, + 29504.43757, + 29869.757975728397, + 30229.51105780247, + 30583.696816222226, + 30932.315250987656, + 31275.36636209876, + 31612.85014955557, + 31944.766613358028, + 32271.11575350618, + 32591.89757, + 18445.200271600006, + 18971.538406395062, + 19492.309217535814, + 20007.51270502223, + 20517.148868854318, + 21021.21770903211, + 21519.719225555556, + 22012.653418424685, + 22500.02028763951, + 22981.8198332, + 23458.052055106178, + 23928.716953358035, + 24393.81452795556, + 24853.344778898765, + 25307.307706187665, + 25755.703309822224, + 26198.531589802486, + 26635.792546128403, + 27067.4861788, + 27493.61248781729, + 27914.171473180253, + 28329.16313488889, + 28738.58747294321, + 29142.44448734321, + 29540.734178088893, + 29933.456545180245, + 30320.611588617292, + 30702.1993084, + 31078.2197045284, + 31448.672777002474, + 31813.55852582222, + 32172.87695098766, + 32526.62805249877, + 32874.81183035557, + 33217.42828455803, + 33554.47741510617, + 33885.959222 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC250A_MP.json b/examples/NyleC250A_MP.json new file mode 100644 index 0000000..0d2a8cf --- /dev/null +++ b/examples/NyleC250A_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.003154508333333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 63359.9999109, + 55039.999990899996, + 50089.999908, + 45549.9999828, + 37539.999949, + 32359.9998568, + 83029.9999074, + 75699.99988480001, + 70160.0000004, + 65419.999927799996, + 56179.9999512, + 50379.999975, + 110019.999796, + 103399.99996, + 97799.9998885, + 90999.9998314, + 78669.99989590001, + 71379.9999585, + 128169.999801, + 117074.441834, + 107269.99985800001, + 96279.9998616, + 77889.9999199, + 66470.00001080001 + ], + "input_power": [ + 10890.0, + 12230.0, + 13550.0, + 14580.0, + 15740.0, + 16720.0, + 11460.0, + 13760.0, + 15970.0, + 17790.0, + 20560.0, + 22500.0, + 10360.0, + 14660.0, + 18070.0, + 21230.0, + 25810.0, + 29010.0, + 8670.0, + 15050.0, + 18760.0, + 21870.0, + 26630.0, + 30020.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 9.927607736059246, + "volume": 3.6339936 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC250A_SP.json b/examples/NyleC250A_SP.json new file mode 100644 index 0000000..1b2ce38 --- /dev/null +++ b/examples/NyleC250A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 49766.08272935994, + 49224.72959075583, + 48682.338861248914, + 48142.25416380471, + 47607.70126227854, + 47081.788061415595, + 46567.504606850955, + 46067.72308510942, + 45585.197823605755, + 45122.56529064458, + 44682.34409542031, + 44266.934988017245, + 43878.62085940946, + 43519.56674146096, + 43191.81980692557, + 42897.30936944693, + 42637.846883558545, + 42415.125944683874, + 42230.72228913607, + 42086.093794118184, + 41982.5804777232, + 41921.40449893376, + 41903.670157622575, + 41930.36389455203, + 42002.35429137448, + 42120.39207063205, + 42285.110095756776, + 42497.023371070434, + 42756.5290417848, + 43063.90639400135, + 43419.31685471151, + 43822.80399179654, + 44274.293514027486, + 44773.59327106533, + 45320.39325346082, + 45914.26559265461, + 46554.66456097713, + 49473.73842666345, + 48930.7018339365, + 48391.69176944891, + 47859.90073373092, + 47338.40336820256, + 46830.156455173725, + 46337.998917844234, + 45864.65182030361, + 45412.718367531335, + 44984.68390539672, + 44582.915920658925, + 44209.66404096694, + 43867.060034859605, + 43557.117811765595, + 43281.73342200346, + 43042.68505678159, + 42841.63304819817, + 42680.119869241404, + 42559.570133789115, + 42481.29059660915, + 42446.470153359136, + 42456.179840586505, + 42511.37283572859, + 42612.88445711259, + 42761.432163955506, + 42957.61555636416, + 43201.91637533543, + 43494.69850275571, + 43836.20796140154, + 44226.57291493905, + 44665.80366792446, + 45153.792665803696, + 45690.314494912505, + 46275.02588247665, + 46907.46569661158, + 47587.054946322634, + 48313.09678150495, + 49877.35030354744, + 49335.507843840256, + 48792.480106575895, + 48251.62032059025, + 47716.16385560902, + 47189.22822224779, + 46673.813072011995, + 46172.80019729685, + 45688.95353138748, + 45224.91914845883, + 44783.2252635757, + 44366.2822326928, + 43976.38255265458, + 43615.7008611954, + 43286.29393693946, + 42990.10069940079, + 42728.94220898329, + 42504.52166698072, + 42318.42441557666, + 42172.11793784449, + 42066.95185774759, + 42004.157940139085, + 41984.850090761916, + 42010.02435624891, + 42080.55892412276, + 42197.21412279595, + 42360.63242157094, + 42571.338430639924, + 42829.738901084915, + 43136.122724877896, + 43490.66093488057, + 43893.40670484466, + 44344.29534941153, + 44843.144324112516, + 45389.653225368835, + 45983.40379049136, + 46623.859897681075, + 49575.58807920141, + 49032.07167987258, + 48492.45886044596, + 47959.95179844418, + 47437.63481227971, + 46928.47436125487, + 46435.319045561846, + 45960.899606282605, + 45507.828925389, + 45078.60202574278, + 44675.59607109544, + 44301.07036608844, + 43957.166356253016, + 43645.907628010274, + 43369.19990867112, + 43128.83106643639, + 42926.471110396684, + 42763.67219053252, + 42641.86859771425, + 42562.37676370199, + 42526.39526114589, + 42535.004803585776, + 42589.1682454514, + 42689.73058206228, + 42837.41894962787, + 43032.8426252475, + 43276.493026910226, + 43568.74371349502, + 43909.850384770776, + 44299.950881396115, + 44739.06518491951, + 45227.09541777944, + 45763.82584330398, + 46348.92286571129, + 46981.935030109205, + 47662.29302249558, + 48389.309669757895, + 50881.066224769886, + 50335.00675061884, + 49786.40784027634, + 49238.70917541162, + 48695.232578583826, + 48159.18201324183, + 47633.64358372448, + 47121.58553526033, + 46625.858253967905, + 46149.194266855506, + 45694.20824182128, + 45263.39698765336, + 44859.139454029544, + 44483.69673151754, + 44139.21205157493, + 43827.71078654912, + 43551.100449677375, + 43311.17069508685, + 43109.59331779446, + 42947.92225370696, + 42827.593579621134, + 42749.925513223425, + 42716.11841309017, + 42727.25477868756, + 42784.29925037168, + 42888.098609388406, + 43039.381777873474, + 43238.759818852515, + 43486.72593624091, + 43783.655474844, + 44129.805920356914, + 44525.31689936462, + 44970.21017934195, + 45464.38966865359, + 46007.641416554114, + 46599.63361318783, + 47239.91658958896, + 50494.016908406185, + 49946.30847225068, + 49401.37369170531, + 48862.50183722426, + 48332.86432015174, + 47815.51469272165, + 47313.3886480579, + 46829.30402017407, + 46365.96078397371, + 45925.941055250165, + 45511.709090686665, + 45125.611287856234, + 44769.87618522186, + 44446.61446213623, + 44157.81893884195, + 43905.36457647149, + 43691.00847704711, + 43516.389883481046, + 43383.03017957518, + 43292.33289002139, + 43245.58368040143, + 43243.950357186855, + 43288.48286773896, + 43380.113300309, + 43519.6558840381, + 43707.80698895713, + 43945.14512598698, + 44232.130946938145, + 44569.10724451118, + 44956.2989522964, + 45393.81314477398, + 45881.63903731395, + 46419.647986176155, + 47007.59348851031, + 47645.11118235603, + 48331.718846642616, + 49066.81640118944, + 51888.77902547941, + 51338.84919557096, + 50784.980809095665, + 50230.70000055618, + 49679.41504534491, + 49134.416359744195, + 48598.87650092619, + 48075.850166952885, + 47568.27419677614, + 47078.96757023763, + 46610.63140806892, + 46165.848971891384, + 45747.08566421629, + 45356.689028444714, + 44996.88874886756, + 44669.79665066566, + 44377.406699909625, + 44121.59500355999, + 43904.11980946702, + 43726.62150637088, + 43590.62262390165, + 43497.5278325792, + 43448.62394381319, + 43445.07990990325, + 43487.946824038765, + 43578.157920299025, + 43716.52857365319, + 43903.75629996014, + 44140.42075596869, + 44426.98373931752, + 44763.78918853517, + 45151.06318304002, + 45588.91394314017, + 46077.33183003373, + 46616.18934580861, + 47205.241133442505, + 47844.12397680307, + 51415.558232808966, + 50863.89431918946, + 50313.83203622372, + 49768.747747297726, + 49231.89995668723, + 48706.42930955784, + 48195.35859196509, + 47701.592730854245, + 47227.9187940605, + 46777.005990308884, + 46351.40566921425, + 45953.551321281324, + 45585.75857790468, + 45250.225211368685, + 44949.0311348476, + 44684.13840240558, + 44457.39120899655, + 44270.515890464354, + 44125.1209235426, + 44022.69692585478, + 43964.616655914295, + 43952.13501312432, + 43986.38903777786, + 44068.39791105784, + 44199.062955037, + 44379.16763267792, + 44609.37754783311, + 44890.24044524475, + 45222.18621054497, + 45605.5268702558, + 46040.45659178908, + 46527.051683446516, + 47065.27059441956, + 47654.95391478964, + 48295.82437552793, + 48987.48684849551, + 49729.42834644334, + 52900.26318624935, + 52346.82427169168, + 51788.002718450676, + 51227.41111386235, + 50668.54418615255, + 50114.778804436886, + 49569.37397872098, + 49035.47085990011, + 48516.09273975954, + 48014.14505097432, + 47532.41536710936, + 47073.573402619426, + 46640.171012849176, + 46234.64219403302, + 45859.30308329527, + 45516.35195865008, + 45207.869239001455, + 44935.81748414326, + 44702.041394759224, + 44508.267812422804, + 44356.10571959749, + 44247.04623963648, + 44182.46263678289, + 44163.610316169616, + 44191.62682381945, + 44267.5318466451, + 44392.227212448975, + 44566.49688992348, + 44791.00698865069, + 45066.305759102725, + 45392.82359264145, + 45770.87302151857, + 46200.64871887565, + 46682.22749874412, + 47215.5683160453, + 47800.51226659016, + 48436.78258707985, + 52340.074710179375, + 51784.70517766369, + 51229.72315018129, + 50678.59208404977, + 50134.657576476595, + 49601.14736555904, + 49081.171330284276, + 48577.72149052921, + 48093.6720070607, + 47631.77918153543, + 47194.68145649989, + 46784.89941539054, + 46404.83578253352, + 46056.77542314492, + 45742.88534333063, + 45465.21469008645, + 45225.694751298004, + 45026.13895574071, + 44868.2428730799, + 44753.58421387069, + 44683.62282955816, + 44659.70071247715, + 44683.04199585234, + 44754.752953798255, + 44875.8220013193, + 45047.11969430976, + 45269.398729553686, + 45543.29394472506, + 45869.32231838762, + 46247.88296999505, + 46679.25715989081, + 47163.6082893083, + 47700.98190037059, + 48291.30567609075, + 48934.38944037173, + 49629.92515800617, + 50377.48693467668, + 53915.290224185825, + 53358.71810850884, + 52795.27431029099, + 52228.65786970162, + 51662.44996779992, + 51100.11392653488, + 50544.9952087455, + 50000.321418160434, + 49469.20229939825, + 48954.629737967516, + 48459.477760266345, + 47986.502533583036, + 47538.34236609545, + 47117.5177068715, + 46726.431145868795, + 46367.367413934866, + 46042.493382807115, + 45753.85806511276, + 45503.392614368866, + 45292.91032498236, + 45124.10663225, + 44998.55911235844, + 44917.72748238406, + 44882.953600293244, + 44895.46146494207, + 44956.357216076656, + 45066.62913433276, + 45227.14764123612, + 45438.66529920228, + 45701.81681153667, + 46017.1190224345, + 46384.9709169809, + 46805.65362115077, + 47279.33040180895, + 47806.04666671002, + 48385.72996449855, + 49018.1899847088, + 53267.42603481999, + 52708.61404118113, + 52148.933326290906, + 51591.934439398625, + 51041.05007064332, + 50499.59505105392, + 49970.7663525493, + 49457.64308793801, + 48963.18651091855, + 48490.240016079275, + 48041.529138898346, + 47619.66155574382, + 47227.12708387357, + 46866.2976814353, + 46539.42744746659, + 46248.652621894835, + 45995.99158553734, + 45783.344860101206, + 45612.495108183415, + 45485.10713327076, + 45402.72787973993, + 45366.78643285744, + 45378.59401877961, + 45439.34400455266, + 45550.11189811264, + 45711.855348285426, + 45925.41414478686, + 46191.51021822245, + 46510.74764008767, + 46883.61262276783, + 47310.47351953805, + 47791.58082456336, + 48327.06717289854, + 48916.94734048832, + 49561.118244167206, + 50259.35894165963, + 51011.33063157975, + 54933.62869292732, + 54374.31387208277, + 53806.5933630987, + 53234.25265897776, + 52660.95939361259, + 52090.26334178547, + 51525.59641916882, + 50970.27268232464, + 50427.48832870491, + 49900.32169665153, + 49391.73326539599, + 48904.56565505998, + 48441.543626654704, + 48005.27408208141, + 47598.24606413117, + 47222.83075648484, + 46881.28148371318, + 46575.73371127675, + 46308.20504552612, + 46080.59523370136, + 45894.686163932805, + 45752.14186524037, + 45654.50850753388, + 45603.214401613, + 45599.56999916724, + 45644.76789277605, + 45739.8828159086, + 45885.87164292403, + 46083.573389071105, + 46333.70921048877, + 46636.88240420554, + 46993.57840813993, + 47404.16480110026, + 47868.891302784636, + 48387.889773781135, + 48961.174215567495, + 49588.6407705116, + 54197.46893756557, + 53635.49093978184, + 53071.345893797894, + 52508.67144179468, + 51950.987366842965, + 51401.695592903314, + 50864.080184826205, + 50341.30734835189, + 49836.42543011052, + 49352.3649176221, + 48891.938439296435, + 48457.84076443327, + 48052.648803222124, + 47678.821606742335, + 47338.70036696316, + 47034.50841674366, + 46768.35122983277, + 46542.216420869256, + 46357.97374538181, + 46217.37509978875, + 46122.05452139856, + 46073.52818840935, + 46073.1944199091, + 46122.33367587567, + 46222.108557176805, + 46373.56380557006, + 46577.62630370281, + 46835.105075112355, + 47146.69128422575, + 47512.958236360006, + 47934.36137772188, + 48411.23829540805, + 48943.80871740495, + 49532.174512588965, + 50176.319690726305, + 50876.11040247301, + 51631.29493937492, + 55387.38415794564, + 54826.979155942856, + 54257.47200814144, + 53682.686644473935, + 53106.32913576253, + 52531.987693719406, + 51963.13267094655, + 51403.11656093575, + 50855.17399806866, + 50322.4217576169, + 49807.85875574171, + 49314.36604949444, + 48844.706836816105, + 48401.52645653762, + 47987.35238837972, + 47604.59425295307, + 47255.54381175807, + 46942.37496718507, + 46667.14376251424, + 46431.78838191553, + 46238.12915044885, + 46087.86853406389, + 45982.59113960019, + 45923.76371478708, + 45912.73514824387, + 45950.73646947966, + 46038.88084889343, + 46178.16359777389, + 46369.462168299695, + 46613.53615353936, + 46911.02728745119, + 47262.45944488336, + 47668.238641573975, + 48128.6530341508, + 48643.87292013163, + 49213.95073792403, + 49838.82106682547, + 54611.79221217888, + 54048.49886900872, + 53482.44772149781, + 52917.31513334452, + 52356.65960913697, + 51803.921794353155, + 51262.424475361026, + 50735.37257941817, + 50225.853174672215, + 49736.83547016054, + 49271.17081581037, + 48831.59270243889, + 48420.71676175302, + 48041.040766349484, + 47694.944629715, + 47384.69040622605, + 47112.42229114893, + 46880.16662063984, + 46689.83187174489, + 46543.20866239985, + 46441.96975143053, + 46387.67003855255, + 46381.746564371264, + 46425.51851038193, + 46520.18719896974, + 46666.8360934096, + 46866.43079786639, + 47119.81905739477, + 47427.730757939236, + 47790.77792633419, + 48209.454730303805, + 48684.13747846217, + 49215.08462031317, + 49802.436746250576, + 50446.21658755801, + 51146.32901640891, + 51902.56104586659, + 55955.04418264505, + 55393.39176500643, + 54821.75469188845, + 54244.00490912725, + 53663.89650344871, + 53085.065702468586, + 52511.03087469265, + 51945.192529516244, + 51390.833317224766, + 50851.11802899336, + 50329.09359688707, + 49827.6890938608, + 49349.71573375917, + 48897.86687131689, + 48474.71800215823, + 48082.726762797545, + 47724.23293063894, + 47401.4584239764, + 47116.50730199369, + 46871.365764764436, + 46667.9021532523, + 46507.86694931041, + 46392.89277568214, + 46324.49439600048, + 46304.068714788336, + 46332.89477745847, + 46412.13377031346, + 46542.82902054574, + 46725.90599623756, + 46962.17230636123, + 47252.31770077847, + 47596.914070241386, + 47996.41544639145, + 48451.15800176037, + 48961.36004976938, + 49527.122044729826, + 50148.42658184267, + 55130.057185783764, + 54565.20294003857, + 53996.84121848021, + 53428.69675622122, + 52864.37642926403, + 52307.36925450082, + 51761.046389713854, + 51228.661133574926, + 50713.348925645885, + 50218.12734637839, + 49745.896117113916, + 49299.437100083844, + 48881.41429840933, + 48494.373856101396, + 48140.74405806091, + 47822.835330078684, + 47542.84023883523, + 47302.83349190106, + 47104.771937736376, + 46950.494565691326, + 46841.72250600592, + 46780.0590298099, + 46766.98954912303, + 46803.88161685476, + 46891.9849268045, + 47032.43131366142, + 47226.234753004675, + 47474.291361303076, + 47777.37939591538, + 48136.159255090315, + 48551.173477966186, + 49022.84674457146, + 49551.485875824124, + 50137.2798335323, + 50780.29972039377, + 51480.49877999627, + 52237.71239681726, + 56979.299320042686, + 56415.72902640522, + 55840.55014820746, + 55257.72108411898, + 54671.08237369904, + 54084.35669739678, + 53501.14887655126, + 52924.945873391254, + 52359.1167910355, + 51806.91287349254, + 51271.467505660774, + 50755.79621332847, + 50262.79666317369, + 49795.248662764374, + 49355.8141605583, + 48947.03724590312, + 48571.34414903625, + 48231.04324108521, + 47928.32503406697, + 47665.26218088864, + 47443.80947534716, + 47265.80385212917, + 47132.96438681127, + 47046.89229585988, + 47009.07093663123, + 47020.865807371476, + 47083.52454721666, + 47198.17693619246, + 47365.83489521461, + 47587.39248608858, + 47863.62591150976, + 48195.19351506335, + 48582.63578122439, + 49026.3753353578, + 49526.71694371836, + 50083.84751345058, + 50697.836092588914, + 56065.041583374594, + 55497.61414505664, + 54925.29670264834, + 54351.901084193894, + 53781.12125862737, + 53216.53333577267, + 52661.5955663436, + 52119.64834194369, + 51593.914195066434, + 51087.497799095116, + 50603.38596830293, + 50144.447657852834, + 49713.43396379772, + 49312.97812308022, + 48945.5955135329, + 48613.68365387818, + 48319.5222037282, + 48065.27296358521, + 47852.97987484103, + 47684.569019777446, + 47561.8486215662, + 47486.50904426863, + 47460.12279283614, + 47484.144513109866, + 47559.91099182084, + 47688.64115658995, + 47871.43607592794, + 48109.27895923535, + 48403.035156802616, + 48753.45215980995, + 49161.1596003275, + 49626.669251315245, + 50150.37502662294, + 50732.552980990324, + 51373.36131004683, + 52072.84035031187, + 52830.91257919453, + 58006.15376835665, + 57441.09993193726, + 56862.76862013565, + 56275.204684454686, + 55682.33511728702, + 55087.969051915155, + 54495.79776251151, + 53909.39466413832, + 53332.21531274754, + 52767.597405181245, + 52218.7607791711, + 51688.80741333875, + 51180.721427195655, + 50697.36908114313, + 50241.4987764723, + 49815.741055364124, + 49422.60860088958, + 49064.496237009334, + 48743.68092857392, + 48462.32178132372, + 48222.460041889, + 48026.01909778985, + 47874.80447743619, + 47770.50385012787, + 47714.68702605441, + 47708.805956295444, + 47754.19473282026, + 47852.06958848798, + 48003.528897047676, + 48209.55317313823, + 48471.00507228837, + 48788.62939091668, + 49163.05306633156, + 49594.7851767313, + 50084.21694120406, + 50631.62171972771, + 51237.15501317013, + 57002.26997077078, + 56432.58569447393, + 55856.58678514542, + 55278.17216376106, + 54701.12289218658, + 54129.10217317753, + 53565.65535037941, + 53014.209908327364, + 52478.07547244652, + 51960.44380905192, + 51464.38882534833, + 50992.86656943037, + 50548.7152302826, + 50134.65513777933, + 49753.28876268477, + 49407.100716652974, + 49098.45775222778, + 48829.60876284305, + 48602.684782822296, + 48419.698987378964, + 48282.54669261637, + 48193.00535552766, + 48152.73457399577, + 48163.276086793514, + 48226.05377358361, + 48342.3736549186, + 48513.42389224089, + 48740.27478788263, + 49023.87878506593, + 49365.070467902726, + 49764.566561394735, + 50222.965931433624, + 50740.74958480086, + 51318.28066916772, + 51955.80447309542, + 52653.4484260349, + 53411.222098327096, + 59035.36422735578, + 58469.2757937932, + 57888.19603228535, + 57296.25624716843, + 56697.46988366847, + 56095.732527901346, + 55494.821906872894, + 54898.39788847857, + 54310.00248150388, + 53733.05983562416, + 53170.876241404425, + 52626.640130299784, + 52103.42207465502, + 51604.1747877048, + 51131.73312357366, + 50688.814077275965, + 50278.01678471591, + 49901.82252268763, + 49562.59470887505, + 49262.57890185188, + 49003.902801081764, + 48788.57624691821, + 48618.49122060447, + 48495.421844273726, + 48421.02438094895, + 48396.837234543054, + 48424.28094985877, + 48504.65821258856, + 48639.15384931487, + 48828.83482750996, + 49074.65025553592, + 49377.43138264468, + 49737.89159897808, + 50156.626435567705, + 50634.11356433506, + 51170.712798091496, + 51766.666090538216, + 57941.58722493751, + 57369.97576446091, + 56790.58294134708, + 56207.394769503575, + 55624.27940372769, + 55044.98713970672, + 54473.150414017735, + 53912.2838041276, + 53365.784028393056, + 52836.929946060874, + 52328.88255726736, + 51844.68500303892, + 51387.26256529167, + 50959.42266683163, + 50563.85487135467, + 50203.13088344646, + 49879.70454858254, + 49595.91185312834, + 49353.97092433915, + 49155.98203035999, + 49003.92758022588, + 48899.67212386156, + 48844.9623520817, + 48841.42709659075, + 48890.57732998306, + 48993.806165742826, + 49152.38885824412, + 49367.48280275077, + 49640.1275354165, + 49971.24473328493, + 50361.63821428945, + 50811.99393725339, + 51322.880001889804, + 51894.74664880167, + 52527.92625948185, + 53222.633356312996, + 53978.96460256759, + 60066.68443334148, + 59500.02496069627, + 58916.61534580153, + 58320.673345826996, + 57716.29885883189, + 57107.4739237656, + 56498.062720467286, + 55891.81156966579, + 55292.348932979956, + 54703.18541291848, + 54127.713752879834, + 53569.20883715235, + 53030.82769091432, + 52515.6094802337, + 52026.47551206842, + 51566.229234266255, + 51137.55623556472, + 50743.02424559135, + 50385.08313486338, + 50066.06491478797, + 49788.183737662126, + 49553.53589667263, + 49364.09982589618, + 49221.73610029933, + 49128.18743573843, + 49085.0786889597, + 49093.91685759936, + 49156.09108018309, + 49272.87263612685, + 49445.41494573615, + 49674.75357020653, + 49961.80621162327, + 50307.37271296158, + 50712.13505808641, + 51176.65737175259, + 51701.38591960498, + 52286.649108177866, + 58882.83525937264, + 58309.639567720595, + 57727.15368316157, + 57139.45071253488, + 56550.48590356937, + 55964.09664488405, + 55384.00246598767, + 54813.80503727869, + 54256.988170045595, + 53716.917816466674, + 53196.84206961004, + 52699.89116343363, + 52229.07747278535, + 51787.29551340271, + 51377.32194191333, + 51001.815555834575, + 50663.3172935736, + 50364.25023442752, + 50106.91959858322, + 49893.512747117406, + 49726.099181996724, + 49606.630546077635, + 49536.94062310642, + 49518.745337719236, + 49553.642755442066, + 49643.11308269072, + 49788.51866677097, + 49991.10399587825, + 50251.99569909803, + 50572.20254640552, + 50952.61544866578, + 51394.00745763379, + 51897.03376595431, + 52462.23170716191, + 53090.0207556811, + 53780.70252682628, + 54534.46077680139, + 61099.86515914786, + 60533.112817902205, + 59947.80655836179, + 59348.2505905296, + 58738.6312652984, + 58123.017074450785, + 57505.35865065931, + 56889.488767486306, + 56279.12233938386, + 55677.85642169414, + 55089.17021064884, + 54516.42504336985, + 53962.86439786867, + 53431.61389304672, + 52925.68128869528, + 52447.95648549545, + 52001.21152501822, + 51588.10058972438, + 51211.160002964636, + 50872.808228979375, + 50575.34587289912, + 50320.95568074397, + 50111.70253942398, + 49949.53347673913, + 49836.27766137903, + 49773.64640292339, + 49763.233151841654, + 49806.51349949307, + 49904.84517812679, + 50059.4680608818, + 50271.50416178695, + 50541.95763576094, + 50871.71477861229, + 51261.544027039316, + 51712.09595863041, + 52223.90329186345, + 52797.38088610659, + 59825.85302410663, + 59251.42935348862, + 58666.164559029785, + 58074.218840501024, + 57479.63453856295, + 56886.336134766105, + 56298.13025155096, + 55718.705652247605, + 55151.633241076204, + 54600.366063146736, + 54068.239304458846, + 53558.4702919023, + 53074.15849325651, + 52618.28551719075, + 52193.71511326423, + 51803.19317192597, + 51449.34772451486, + 51134.68894325954, + 50861.60914127867, + 50632.3827725806, + 50449.1664320636, + 50313.99885551579, + 50228.800919615074, + 50195.375641929335, + 50215.408180916114, + 50290.465835922994, + 50421.998047187364, + 50611.33639583631, + 50859.69460388692, + 51168.16853424611, + 51537.73619071056, + 51969.25771796692, + 52463.4754015916, + 53021.01366805082, + 53642.37908470085, + 54327.960359787576, + 55078.02834244686, + 62134.65421414159, + 61568.30178719951, + 60981.546704176304, + 60378.77962790831, + 59764.27336212166, + 59142.18285143235, + 58516.54518134628, + 57891.279578259135, + 57270.18740945638, + 56656.95218311354, + 56055.1395482958, + 55468.197294958285, + 54899.455353945894, + 54352.12579699344, + 53829.302836725554, + 53333.96282665667, + 52868.964261191184, + 52437.04777562336, + 52040.83614613708, + 51682.83428980627, + 51365.42926459469, + 51090.890269355936, + 50861.36864383331, + 50678.897868660206, + 50545.39356535966, + 50462.65349634469, + 50432.35756491815, + 50456.067815272625, + 50535.228432490614, + 50671.165742544596, + 50865.08821229662, + 51118.086449498864, + 51431.13320279314, + 51805.083361711346, + 52240.67395667492, + 52738.52415899539, + 53299.135280874034, + 60770.476505702405, + 60195.1944075332, + 59607.47815392513, + 59011.57503758068, + 58411.614492092216, + 57811.60809194189, + 57215.4495525018, + 56626.91473003381, + 56049.66162168958, + 55487.23036551086, + 54943.04324042896, + 54420.40466626521, + 53922.50120373075, + 53452.40155442648, + 53013.0565608433, + 52607.29920636183, + 52237.84461525263, + 51907.29005267611, + 51618.11492468242, + 51372.68077821165, + 51173.231301093736, + 51021.89232204843, + 50920.67181068528, + 50871.45987750383, + 50876.028773893326, + 50936.032892133, + 51053.00876539181, + 51228.37506772857, + 51463.43261409203, + 51759.36436032071, + 52117.23540314305, + 52537.99298017724, + 53022.46646993139, + 53571.367391803484, + 54185.28940608122, + 54864.70831394236, + 55609.98205745426, + 63170.79644422185, + 62605.351326909135, + 62017.60985398778, + 61412.049141127536, + 60793.028444887896, + 60164.78916271823, + 59531.45483295785, + 58897.03113483566, + 58265.40588847074, + 57640.34905487179, + 57025.51273593743, + 56424.43117445613, + 55840.520754106205, + 55277.079999455804, + 54737.28957596288, + 54224.21228997543, + 53740.79308873098, + 53289.859060357245, + 52874.11943387153, + 52496.16557918112, + 52158.47100708315, + 51863.39136926447, + 51613.16445830195, + 51409.910207662135, + 51255.63069170161, + 51152.210125666716, + 51101.414865693645, + 51104.89340880833, + 51164.17639292674, + 51280.676596854544, + 51455.688940287306, + 51690.39048381066, + 51985.84042889963, + 52342.98011791941, + 52762.63303412504, + 53245.50480166131, + 53792.18318556276, + 61716.53872725559, + 61140.78105215512, + 60550.954089353545, + 59951.392224485055, + 59346.31198407357, + 58739.812035533025, + 58135.87318716711, + 57538.3583881693, + 56951.01272862302, + 56377.463439501546, + 55821.21989266801, + 55285.67360087525, + 54774.09821776609, + 54289.64953787319, + 53835.36549661899, + 53414.16617031589, + 53028.8537761659, + 52682.11267226126, + 52376.50935758375, + 52114.492472005106, + 51898.39279628692, + 51730.423252080494, + 51612.678901927226, + 51547.13694925815, + 51535.65673839432, + 51579.97975454643, + 51681.72962381531, + 51842.41211319131, + 52063.41513055487, + 52346.00872467611, + 52691.34508521511, + 53100.45854272188, + 53574.26556863605, + 54113.56477528729, + 54719.036915895, + 55391.24488456845, + 56130.63371630679, + 64208.03373182041, + 63644.01793188455, + 63055.76711507144, + 62447.844849884306, + 61824.69684571589, + 61190.65095284899, + 60549.91716245629, + 59906.587606600086, + 59264.636558232756, + 58627.9204311964, + 58000.177780223035, + 57385.02930093448, + 56785.97782984243, + 56206.40834434839, + 55649.587962743746, + 55118.665944209744, + 54616.67368881736, + 54146.52473752774, + 53711.01477219138, + 53312.82161554907, + 52954.50523123131, + 52638.50772375828, + 52367.15333854024, + 52142.64846187714, + 51967.081620958896, + 51842.42348386513, + 51770.52685956557, + 51753.1266979194, + 51791.84008967602, + 51888.16626647446, + 52043.486600843695, + 52259.06460620256, + 52536.04593685965, + 52875.45838801343, + 53278.21189575228, + 53745.09853705448, + 54276.79252978778, + 62663.86974839431, + 62088.03264618773, + 61496.44902335359, + 60893.54035845786, + 60283.610270956, + 59670.844521193656, + 59059.3110104062, + 58452.95978071871, + 57855.623015146324, + 57271.01503759391, + 56702.732312856235, + 56154.25344661788, + 55628.939185453324, + 55130.0324168268, + 54660.65816909247, + 54223.82361149434, + 53822.41805416623, + 53459.212948131826, + 53136.86188530462, + 52857.900598488064, + 52624.7469613754, + 52439.70098854959, + 52304.94483548365, + 52222.54279854035, + 52194.44131497224, + 52222.468962921856, + 52308.33646142156, + 52453.636670393345, + 52659.84459064941, + 52928.31736389148, + 53260.294272711355, + 53656.896740590564, + 54119.12833190051, + 54647.87475190244, + 55243.90384674744, + 55907.865603476566, + 56640.2921500203, + 65246.10499590156, + 64684.05513351182, + 64095.78663123518, + 63485.94951040817, + 62859.07593325699, + 62219.58020289771, + 61571.758763336504, + 60919.7901994689, + 60267.73523708075, + 59619.53674284749, + 58979.01972433451, + 58349.891329996986, + 57735.74084917996, + 57140.039712118414, + 56566.141489936956, + 56017.28189465034, + 55496.578779162795, + 55007.03213726888, + 54551.52410365256, + 54132.81895388782, + 53753.563104438676, + 53416.28511265855, + 53123.39567679122, + 52877.18763596985, + 52679.835970217784, + 52533.39780044816, + 52439.81238846383, + 52400.901136957546, + 52418.3675895119, + 52493.79743059954, + 52628.658485582506, + 52824.30072071324, + 53081.956243133594, + 53402.7393008755, + 53787.64628286063, + 54237.55571890054, + 54753.228279696625, + 63612.29666527918, + 63036.78958499683, + 62443.81665049638, + 61837.88643327536, + 61223.38964572103, + 60604.59914111055, + 59985.669913611004, + 59370.63909827913, + 58763.42597106171, + 58167.831948795334, + 57587.54058920635, + 57026.117590911024, + 56487.0107934155, + 55973.55017711564, + 55488.94786329726, + 55036.29811413609, + 54618.57733269744, + 54238.644062936866, + 53899.23898969942, + 53602.9849387202, + 53352.38687662411, + 53149.831910925786, + 52997.589290029864, + 52897.81040323074, + 52852.52878071276, + 52863.66009355001, + 52933.0021537065, + 53062.23491403598, + 53252.920468282195, + 53506.50305107861, + 53824.30903794851, + 54207.54694530532, + 54657.307430451925, + 55174.56329158136, + 55760.16946777631, + 56414.86303900937, + 57139.26322614298, + 66284.74619196229, + 65725.21349970966, + 65137.433582819416, + 64526.14291546139, + 63895.96011269517, + 63251.38593047019, + 62596.80326562589, + 61936.47715589143, + 61274.55477988575, + 60615.06545711782, + 59961.92064798634, + 59318.91395377987, + 58689.7211166769, + 58077.90001974559, + 57486.890686944134, + 56920.01528312046, + 56380.47811401233, + 55871.3656262476, + 55395.64640734359, + 54956.171185707724, + 54555.67283063724, + 54196.76635231917, + 53881.94890183037, + 53613.5997711377, + 53393.98039309761, + 53225.23434145665, + 53109.387330851125, + 53048.34721680717, + 53043.90399574068, + 53097.729804957606, + 53211.37892265362, + 53386.28776791419, + 53623.77490071482, + 53925.041021920646, + 54291.168973286745, + 54723.1237374581, + 55221.75243796943, + 64561.64361060354, + 63986.88930048101, + 63392.907701885626, + 62784.29447924657, + 62165.52743788277, + 61540.96652400303, + 60914.853824706064, + 60291.31356798039, + 59674.35212270434, + 59067.85799864611, + 58475.60184646383, + 57901.23645770535, + 57348.29676480849, + 56820.19984110072, + 56320.24490079961, + 55851.61329901248, + 55417.36853173637, + 55020.456235858386, + 54663.70418915527, + 54349.822310293814, + 54081.402658830506, + 53860.919435211734, + 53690.72898077373, + 53573.06977774262, + 53510.062449234276, + 53503.70975925456, + 53555.89661269907, + 53668.39005535325, + 53842.83927389242, + 54080.77559588181, + 54383.6124897764, + 54752.64556492107, + 55189.052571550594, + 55693.89340078945, + 56268.11008465206, + 56912.526796042766, + 57627.84984875557, + 67323.69031203212, + 66767.24063492945, + 66180.4701866973, + 65568.20189433884, + 64935.14082574703, + 64285.87418970474, + 63624.871335884716, + 62956.483754849505, + 62284.94507805142, + 61614.37107783281, + 60948.75966742573, + 60291.99090095215, + 59647.82697342384, + 59019.91222074244, + 58411.77311969942, + 57826.8182879761, + 57268.338484143744, + 56739.50660766333, + 56243.377698885764, + 55782.88893905173, + 55360.85965029185, + 54979.991295626576, + 54642.86747896608, + 54351.953945110625, + 54109.598579749974, + 53918.03140946414, + 53779.364601722766, + 53695.592464885274, + 53668.59144820105, + 53700.12014180933, + 53791.8192767392, + 53945.21172490951, + 54161.702499129075, + 54442.57875309641, + 54789.00978140004, + 55202.047019518235, + 55682.62404381916, + 65511.73175359337, + 64938.166261071434, + 64343.56994515773, + 63732.62556321309, + 63109.89801348806, + 62479.83433512315, + 61846.76370814875, + 61214.897453484955, + 60588.32903294178, + 59971.03404921914, + 59366.87024590676, + 58779.57750748419, + 58212.77785932082, + 57669.97546767593, + 57154.55663969861, + 56669.789823427804, + 56218.82560779236, + 55804.696722610934, + 55430.31803859201, + 55098.486567333915, + 54811.88146132489, + 54573.064013942996, + 54384.477659456, + 54248.447973021866, + 54167.18267068791, + 54142.77160939176, + 54177.18678696072, + 54272.282342111845, + 54429.79455445209, + 54651.34184447833, + 54938.42477357728, + 55292.42604402538, + 55714.610498989096, + 56206.125122524645, + 56767.99903957801, + 57401.14351598515, + 58106.35195847195, + 68362.66738467313, + 67809.88118015499, + 67224.65569627433, + 66611.90031286779, + 65976.40655066166, + 65322.84807127217, + 64655.78067720555, + 63979.64231185745, + 63298.75305951388, + 62617.31514535034, + 61939.412935432294, + 61269.012936715124, + 60609.96379704397, + 59965.996305153785, + 59340.72339066941, + 58737.640124105754, + 58160.12371686706, + 57611.433521248015, + 57094.711030432714, + 56612.97987849529, + 56169.145840399724, + 55765.99683199971, + 55406.20291003904, + 55092.31627215108, + 54826.77125685928, + 54611.88434357664, + 54449.85415260646, + 54342.76144514142, + 54292.56912326427, + 54301.12222994772, + 54370.14794905405, + 54501.25560533573, + 54695.93666443464, + 54955.564732882835, + 55281.3955581023, + 55674.567028404505, + 56136.099172991024, + 66462.379300007, + 65890.45197173172, + 65295.64818448148, + 64682.73778854887, + 64056.37277511611, + 63421.087276255355, + 62781.29756492861, + 62141.30205498765, + 61505.28130117418, + 60877.29799911969, + 60261.29698534563, + 59661.10523726319, + 59080.43187317344, + 58522.86815226725, + 57991.88747462543, + 57490.84538121861, + 57022.97955390715, + 56591.40981544157, + 56199.13812946179, + 55849.04860049795, + 55543.907473969906, + 55286.36313618733, + 55078.94611434977, + 54924.069076546606, + 54824.026831757095, + 54780.99632985036, + 54797.03666158536, + 54874.089058610836, + 55013.97689346549, + 55218.40567957767, + 55488.963071265876, + 55827.11886373826, + 56234.22499309273, + 56711.51553631735, + 57260.10671128967, + 57880.99687677742, + 58575.066532437864, + 69401.40447498004, + 68852.87681290266, + 68269.74640148874, + 67657.0090734082, + 67019.54280222076, + 66362.10770237603, + 65689.34602921347, + 65005.78217896236, + 64315.82268874178, + 63623.756236560825, + 62933.753641318246, + 62249.86786280276, + 61576.03400169294, + 60916.069299557115, + 60273.67313885349, + 59652.42704293018, + 59055.794676025085, + 58487.12184326608, + 57949.63649067065, + 57446.44870514637, + 56980.55071449046, + 56554.81688739016, + 56172.003733422396, + 55834.74990305419, + 55545.57618764203, + 55306.885519432646, + 55120.96297156243, + 54989.975758057575, + 54915.97323383415, + 54900.886894698226, + 54946.53037734556, + 55054.59945936173, + 55226.67205922228, + 55464.208236292565, + 55768.550190827686, + 56140.92226397285, + 56582.430937762845, + 67413.40149213553, + 66843.574973958, + 66248.98426055831, + 65634.48629516062, + 65004.820161878815, + 64364.60708571668, + 63718.35043256791, + 63070.43570921596, + 62425.130563334125, + 61786.584783485654, + 61158.83029912357, + 60545.78118059071, + 59951.23363911982, + 59378.86602683348, + 58832.238836744065, + 58314.79470275393, + 57829.85839965511, + 57380.636843129694, + 56970.21908974934, + 56601.57633697581, + 56277.5619231606, + 56000.911327545095, + 55774.24217026041, + 55600.05421232765, + 55480.72935565776, + 55418.531643051436, + 55415.60725819939, + 55473.98452568187, + 55595.57391096931, + 55782.16802042184, + 56035.44160128946, + 56356.95154171202, + 56748.13687071902, + 57210.31875823034, + 57744.700515055076, + 58352.367592892595, + 59034.287584331876, + 70439.6256845799, + 69895.9662472214, + 69315.49562881113, + 68703.29611485248, + 68064.33213173845, + 67403.4502467521, + 66725.37916806624, + 66034.7297447435, + 65335.99496673636, + 64633.5499648872, + 63931.652010928294, + 63234.440517481555, + 62545.937038059055, + 61870.045267062414, + 61210.551039783284, + 60571.12233240312, + 59955.3092619931, + 59366.544086514645, + 58808.141204818436, + 58283.29715664552, + 57795.090622626485, + 57346.48242428187, + 56940.3155240221, + 56579.31502514741, + 56266.08817184779, + 56003.12434920321, + 55792.79508318359, + 55637.35404064834, + 55538.93702934708, + 55499.56199791901, + 55521.12903589344, + 55605.4203736893, + 55754.10038261549, + 55968.71557487062, + 56250.69460354334, + 56601.34826261208, + 57021.869486945056, + 68364.61060880253, + 67797.3608457792, + 67203.41705062224, + 66587.72325948755, + 65955.10564942054, + 65310.272538356774, + 64657.814385121565, + 64002.20378942996, + 63347.795491887, + 62698.82637398752, + 62059.41545811621, + 61433.563907547614, + 60825.15502644612, + 60237.95425986594, + 59675.6091937511, + 59141.64955493564, + 58639.48721114325, + 58172.41617098762, + 57743.61258397211, + 57356.134740490124, + 57012.9230718249, + 56716.80015014932, + 56470.47068852634, + 56276.521540908594, + 56137.42170213866, + 56055.52230794893, + 56033.05663496186, + 56072.14010068928, + 56174.77026353328, + 56342.82682278557, + 56578.07161862801, + 56882.1486321319, + 57256.583985258585, + 57702.78594085929, + 58222.04490267508, + 58815.53341533687, + 59484.30616436534, + 71477.05215163271, + 70938.88523369284, + 70361.653741245, + 69750.5264126258, + 69110.55412706178, + 68446.6699046692, + 67763.68890645435, + 67066.30843431315, + 66359.10793103155, + 65646.54898028528, + 64932.975306639826, + 64222.61277555078, + 63519.56939336325, + 62827.835307312496, + 62151.28280552335, + 61493.666317010706, + 60858.622411679185, + 60249.669800323354, + 59670.209334627594, + 59123.52400716601, + 58612.77895140281, + 58141.02144169171, + 57711.1808932766, + 57326.06886229106, + 56988.37904575854, + 56700.68728159228, + 56465.45154859548, + 56285.01196646116, + 56161.59079577204, + 56097.292438001, + 56094.10343551043, + 56153.89247155276, + 56278.410370270234, + 56469.29009669491, + 56728.04675674879, + 57056.07759724349, + 57454.662005880884, + 69315.81596536408, + 68751.63220175658, + 68158.7824684399, + 67542.29789450137, + 66907.09174991839, + 66257.95944555782, + 65599.5785331769, + 64936.50870542226, + 64273.19179583056, + 63613.95177882833, + 62962.99476973184, + 62324.40902474741, + 61702.16494097098, + 61100.1150563885, + 60521.99404987561, + 59971.41874119801, + 59451.888091010995, + 58966.78320086, + 58519.367313180046, + 58112.78581129615, + 57750.06621942319, + 57434.11820266566, + 57167.73356701829, + 56953.586259365344, + 56794.23236748098, + 56692.110120029436, + 56649.53988656448, + 56668.72417752988, + 56751.74764425932, + 56900.57707897629, + 57117.06141479389, + 57402.93172571547, + 57759.80122663397, + 58189.16527333233, + 58692.40136248303, + 59270.769131648834, + 59925.41035928193, + 72513.40205083082, + 71981.36655943122, + 71407.96813832619, + 70798.46197868591, + 70157.98541257008, + 69491.55791292846, + 68804.08109360073, + 68100.33870931607, + 67384.9966556939, + 66662.6029692432, + 65937.58782736301, + 65214.26354834211, + 64496.82459135915, + 63789.347556482535, + 63095.791184670656, + 62419.99635777176, + 61765.68609852373, + 61136.46557055464, + 60535.8220783821, + 59967.1250674137, + 59433.62612394695, + 58938.45897516898, + 58484.63948915707, + 58075.06567487803, + 57712.51768218885, + 57399.65780183603, + 57139.03046545627, + 56933.062245575784, + 56784.06185561075, + 56694.220149867455, + 56665.610123541584, + 56700.18691271908, + 56799.787794375305, + 56966.132186375944, + 57200.82164747616, + 57505.33987732119, + 57881.052716445876, + 70266.82391370901, + 69706.20869298426, + 69114.9134643104, + 68498.05644970667, + 67860.6380120819, + 67207.54065523481, + 66543.52902385413, + 65873.2499035182, + 65201.23222069539, + 64531.8870427438, + 63869.50757791146, + 63218.26917533626, + 62582.22932504588, + 61965.32765795774, + 61371.38594587937, + 60804.10810150803, + 60267.08017843063, + 59763.770371124345, + 59297.52901495575, + 58871.588586181606, + 58489.06370194842, + 58152.95112029238, + 57866.12974013978, + 57631.360601306544, + 57451.286884498695, + 57328.433911311746, + 57265.20914423148, + 57263.902186633306, + 57326.68478278227, + 57455.61081783368, + 57652.61631783238, + 57919.51944971337, + 58258.02052130103, + 58669.70198131014, + 59156.02841934485, + 59718.34656589952, + 60357.88529235796, + 72628.47333468398, + 72097.15918693315, + 71524.22396105436, + 70914.93245409575, + 70274.43160399522, + 69607.75048958047, + 68919.80033056925, + 68215.37448756889, + 67499.14846207677, + 66775.67989648003, + 66049.40857405563, + 65324.65641897055, + 64605.62749628134, + 63896.408011934705, + 63200.96631276683, + 62523.15288650416, + 61866.700361762676, + 61235.223508048366, + 60632.21923575709, + 60061.0665961743, + 59525.026781475724, + 59027.243124726454, + 58570.741099881816, + 58158.42832178685, + 57793.09454617632, + 57477.4116696751, + 57213.93372979766, + 57005.09690494855, + 56853.219514421806, + 56760.502018401785, + 56729.0270179623, + 56760.75925506727, + 56857.545612570284, + 57021.11511421489, + 57253.07892463452, + 57554.93034935216, + 57928.04483478117, + 70372.4708504425, + 69812.28373372665, + 69221.19022804743, + 68604.318232424, + 67966.6777867655, + 67313.1610718707, + 66648.54240942853, + 65977.47826201745, + 65304.50723310596, + 64634.05006705242, + 63970.40964910487, + 63317.77100540143, + 62680.201302969814, + 62061.649849727844, + 61465.94809448291, + 60896.80962693254, + 60357.83017766385, + 59852.48761815403, + 59384.141960769986, + 58956.03535876843, + 58571.292106296074, + 58232.9186383894, + 57943.80353097468, + 57706.71750086808, + 57524.31340577558, + 57399.12624429323, + 57333.57315590658, + 57329.9534209913, + 57390.448460812695, + 57517.12183752617, + 57711.91925417663, + 57976.668554699216, + 58313.07972391868, + 58722.74488754961, + 59207.13831219667, + 59767.61640535396, + 60405.41771540599, + 104451.84149899543, + 104592.31104563392, + 104588.65304206475, + 104449.01404644092, + 104181.42275780477, + 103793.79001608893, + 103293.90880211568, + 102689.45423759687, + 101987.9835851346, + 101196.93624822075, + 100323.63377123685, + 99375.27983945464, + 98358.96027903527, + 97281.64305702988, + 96150.17828137956, + 94971.29820091552, + 93751.61720535807, + 92497.63182531807, + 91215.72073229578, + 89912.14473868159, + 88593.04679775584, + 87264.45200368814, + 85932.26759153843, + 84602.28293725649, + 83280.16955768205, + 81971.48111054403, + 80681.6533944619, + 79416.00434894463, + 78179.7340543913, + 76977.92473209082, + 75815.54074422142, + 74697.42859385176, + 73628.31692494007, + 72612.81652233475, + 71655.42031177356, + 70760.50335988431, + 69932.322874185, + 100457.49667744001, + 100396.19180824184, + 100212.59907827139, + 99914.74948426198, + 99510.55616383669, + 99007.81439550889, + 98414.20159868112, + 97737.2773336464, + 96984.48330158714, + 96163.143344576, + 95280.46344557492, + 94343.5317284364, + 93359.31845790241, + 92334.67603960448, + 91276.33902006454, + 90190.92408669407, + 89084.93006779451, + 87964.73793255704, + 86836.6107910627, + 85706.6938942824, + 84581.014634077, + 83465.48254319717, + 82365.88929528315, + 81287.90870486558, + 80237.09672736439, + 79218.8914590897, + 78238.61313724125, + 77301.4641399088, + 76412.5289860721, + 75576.77433560033, + 74799.04898925291, + 74084.08388867881, + 73436.49211641705, + 72860.76889589628, + 72361.29159143534, + 71942.3197082427, + 71607.99489241667 + ], + "input_power": [ + 13996.717462000002, + 14187.92333617284, + 14373.561886691361, + 14553.633113555556, + 14728.13701676543, + 14897.07359632099, + 15060.442852222224, + 15218.244784469136, + 15370.47939306173, + 15517.146678000001, + 15658.24663928395, + 15793.779276913589, + 15923.744590888891, + 16048.142581209877, + 16166.973247876549, + 16280.23659088889, + 16387.93261024692, + 16490.061305950618, + 16586.622678000003, + 16677.61672639506, + 16763.0434511358, + 16842.902852222218, + 16917.194929654317, + 16985.919683432097, + 17049.07711355555, + 17106.667220024698, + 17158.690002839514, + 17205.145462000004, + 17246.033597506175, + 17281.354409358024, + 17311.107897555554, + 17335.294062098765, + 17353.91290298766, + 17366.964420222226, + 17374.44861380247, + 17376.3654837284, + 17372.715030000003, + 14418.1536296, + 14603.502809728394, + 14783.28466620247, + 14957.499199022222, + 15126.146408187651, + 15289.226293698768, + 15446.738855555555, + 15598.684093758022, + 15745.062008306171, + 15885.872599199996, + 16021.115866439504, + 16150.791810024695, + 16274.900429955555, + 16393.4417262321, + 16506.415698854325, + 16613.822347822224, + 16715.661673135808, + 16811.933674795066, + 16902.6383528, + 16987.775707150617, + 17067.345737846914, + 17141.348444888892, + 17209.78382827654, + 17272.651888009877, + 17329.952624088895, + 17381.68603651358, + 17427.85212528396, + 17468.450890400003, + 17503.482331861735, + 17532.94644966914, + 17556.84324382223, + 17575.17271432099, + 17587.934861165435, + 17595.129684355554, + 17596.757183891365, + 17592.817359772846, + 17583.310212, + 14009.985601169994, + 14201.828451005056, + 14388.1039771858, + 14568.812179712218, + 14743.953058584313, + 14913.526613802094, + 15077.532845365546, + 15235.971753274684, + 15388.8433375295, + 15536.147598129994, + 15677.884535076168, + 15814.054148368026, + 15944.656438005548, + 16069.69140398876, + 16189.159046317653, + 16303.059364992216, + 16411.392360012465, + 16514.15803137839, + 16611.356379089993, + 16702.987403147275, + 16789.05110355024, + 16869.54748029888, + 16944.476533393205, + 17013.838262833204, + 17077.632668618888, + 17135.859750750238, + 17188.51950922728, + 17235.611944049997, + 17277.137055218394, + 17313.094842732466, + 17343.485306592214, + 17368.308446797648, + 17387.564263348762, + 17401.252756245547, + 17409.37392548802, + 17411.927771076163, + 17408.914293009995, + 14433.564225393997, + 14619.595383431726, + 14800.059217815135, + 14974.95572854422, + 15144.284915618982, + 15308.046779039432, + 15466.24131880555, + 15618.868534917354, + 15765.928427374833, + 15907.420996177998, + 16043.346241326837, + 16173.70416282136, + 16298.494760661551, + 16417.71803484743, + 16531.37398537899, + 16639.462612256222, + 16741.98391547914, + 16838.937895047726, + 16930.324550962, + 17016.143883221943, + 17096.395891827575, + 17171.08057677888, + 17240.197938075875, + 17303.74797571854, + 17361.730689706885, + 17414.146080040915, + 17460.99414672062, + 17502.274889745997, + 17537.98830911706, + 17568.1344048338, + 17592.713176896217, + 17611.72462530432, + 17625.1687500581, + 17633.04555115755, + 17635.355028602688, + 17632.097182393507, + 17623.272012529997, + 14128.072029599994, + 14325.647660395056, + 14517.6559675358, + 14704.096951022213, + 14884.970610854312, + 15060.276947032093, + 15230.015959555549, + 15394.187648424682, + 15552.792013639502, + 15705.829055199994, + 15853.298773106168, + 15995.201167358025, + 16131.536237955552, + 16262.303984898761, + 16387.50440818765, + 16507.137507822215, + 16621.203283802464, + 16729.70173612839, + 16832.632864799998, + 16929.99666981728, + 17021.793151180245, + 17108.02230888888, + 17188.684142943202, + 17263.7786533432, + 17333.305840088884, + 17397.26570318025, + 17455.65824261728, + 17508.483458399995, + 17555.74135052839, + 17597.43191900247, + 17633.55516382222, + 17664.11108498765, + 17689.099682498756, + 17708.52095635555, + 17722.374906558016, + 17730.661533106173, + 17733.380835999997, + 14570.932763439998, + 14763.10172266172, + 14949.703358229137, + 15130.737670142218, + 15306.204658400982, + 15476.104323005426, + 15640.436663955548, + 15799.20168125135, + 15952.399374892833, + 16100.029744879994, + 16242.092791212834, + 16378.588513891355, + 16509.51691291555, + 16634.87798828543, + 16754.671740000987, + 16868.89816806222, + 16977.557272469134, + 17080.64905322173, + 17178.173510319994, + 17270.130643763947, + 17356.52045355357, + 17437.342939688882, + 17512.59810216987, + 17582.28594099654, + 17646.40645616889, + 17704.959647686905, + 17757.94551555062, + 17805.364059759995, + 17847.21528031506, + 17883.4991772158, + 17914.21575046222, + 17939.365000054317, + 17958.946925992095, + 17972.96152827555, + 17981.40880690469, + 17984.2887618795, + 17981.6013932, + 14243.770174649993, + 14447.078586405058, + 14644.819674505803, + 14836.993438952217, + 15023.599879744314, + 15204.638996882095, + 15380.110790365548, + 15550.015260194687, + 15714.352406369506, + 15873.122228889997, + 16026.324727756173, + 16173.959902968025, + 16316.02775452555, + 16452.528282428757, + 16583.46148667765, + 16708.827367272213, + 16828.625924212465, + 16942.857157498394, + 17051.521067130005, + 17154.61765310728, + 17252.146915430247, + 17344.10885409889, + 17430.50346911321, + 17511.330760473207, + 17586.590728178882, + 17656.283372230242, + 17720.40869262728, + 17778.966689369994, + 17831.95736245839, + 17879.38071189246, + 17921.23673767221, + 17957.525439797653, + 17988.246818268766, + 18013.40087308555, + 18032.987604248025, + 18047.00701175617, + 18055.459095609996, + 14705.913018106003, + 14904.21977851173, + 15096.95921526314, + 15284.13132836022, + 15465.736117802984, + 15641.773583591434, + 15812.243725725555, + 15977.146544205358, + 16136.482039030838, + 16290.250210201997, + 16438.45105771884, + 16581.084581581366, + 16718.15078178956, + 16849.64965834344, + 16975.581211242996, + 17095.945440488224, + 17210.74234607914, + 17319.971928015733, + 17423.634186298004, + 17521.729120925953, + 17614.25673189958, + 17701.21701921889, + 17782.609982883878, + 17858.43562289454, + 17928.69393925089, + 17993.38493195291, + 18052.508601000623, + 18106.064946394006, + 18154.053968133063, + 18196.4756662178, + 18233.33004064822, + 18264.61709142432, + 18290.3368185461, + 18310.48922201356, + 18325.07430182669, + 18334.0920579855, + 18337.54249049, + 14357.080036319996, + 14566.121229035058, + 14769.5950980958, + 14967.501643502217, + 15159.840865254315, + 15346.612763352095, + 15527.81733779555, + 15703.454588584687, + 15873.524515719506, + 16038.027119199998, + 16196.962399026177, + 16350.330355198024, + 16498.13098771555, + 16640.36429657876, + 16777.03028178765, + 16908.128943342213, + 17033.66028124246, + 17153.62429548839, + 17268.020986079995, + 17376.850353017286, + 17480.11239630025, + 17577.80711592889, + 17669.934511903208, + 17756.494584223205, + 17837.487332888883, + 17912.912757900245, + 17982.770859257278, + 18047.061636959996, + 18105.785091008394, + 18158.941221402463, + 18206.530028142224, + 18248.551511227648, + 18285.005670658764, + 18315.892506435557, + 18341.212018558024, + 18360.96420702617, + 18375.14907184, + 14838.504989391995, + 15042.949550981722, + 15241.826788917135, + 15435.136703198217, + 15622.879293824977, + 15805.054560797427, + 15981.662504115548, + 16152.70312377935, + 16318.176419788831, + 16478.082392143988, + 16632.421040844834, + 16781.19236589136, + 16924.396367283553, + 17062.03304502143, + 17194.102399104984, + 17320.604429534214, + 17441.539136309137, + 17556.906519429725, + 17666.706578895995, + 17770.939314707946, + 17869.604726865575, + 17962.70281536888, + 18050.233580217868, + 18132.197021412536, + 18208.593138952885, + 18279.421932838904, + 18344.683403070616, + 18404.377549647998, + 18458.504372571057, + 18507.063871839797, + 18550.056047454214, + 18587.480899414317, + 18619.338427720097, + 18645.628632371547, + 18666.351513368685, + 18681.507070711497, + 18691.09530439999, + 14468.001614609999, + 14682.775588285056, + 14891.982238305804, + 15095.621564672218, + 15293.693567384318, + 15486.198246442096, + 15673.135601845552, + 15854.505633594685, + 16030.3083416895, + 16200.543726129998, + 16365.21178691617, + 16524.31252404803, + 16677.845937525555, + 16825.812027348766, + 16968.210793517657, + 17105.04223603222, + 17236.30635489247, + 17362.003150098397, + 17482.132621649995, + 17596.694769547285, + 17705.689593790245, + 17809.11709437889, + 17906.977271313208, + 17999.27012459321, + 18085.995654218885, + 18167.153860190254, + 18242.74474250729, + 18312.768301170003, + 18377.224536178397, + 18436.113447532472, + 18489.435035232218, + 18537.189299277656, + 18579.376239668763, + 18615.99585640556, + 18647.048149488026, + 18672.533118916177, + 18692.450764690002, + 14968.708677298, + 15179.291040071726, + 15384.306079191141, + 15583.753794656226, + 15777.63418646699, + 15965.947254623437, + 16148.692999125558, + 16325.87141997336, + 16497.48251716684, + 16663.526290706, + 16824.002740590844, + 16978.911866821367, + 17128.253669397563, + 17272.028148319438, + 17410.235303586996, + 17542.875135200225, + 17669.947643159143, + 17791.452827463734, + 17907.390688114003, + 18017.761225109953, + 18122.564438451584, + 18221.800328138892, + 18315.468894171878, + 18403.57013655055, + 18486.1040552749, + 18563.07065034492, + 18634.469921760625, + 18700.30186952201, + 18760.56649362907, + 18815.26379408181, + 18864.393770880226, + 18907.956424024327, + 18945.951753514102, + 18978.379759349562, + 19005.240441530696, + 19026.533800057507, + 19042.25983493, + 14576.53490952, + 14797.041664155056, + 15011.981095135801, + 15221.353202462218, + 15425.157986134316, + 15623.395446152097, + 15816.06558251555, + 16003.168395224684, + 16184.703884279501, + 16360.672049679995, + 16531.072891426167, + 16695.906409518026, + 16855.172603955554, + 17008.871474738757, + 17157.00302186765, + 17299.567245342216, + 17436.56414516247, + 17567.993721328392, + 17693.855973839996, + 17814.150902697278, + 17928.87850790024, + 18038.038789448885, + 18141.631747343206, + 18239.657381583205, + 18332.115692168893, + 18419.006679100243, + 18500.330342377285, + 18576.086682, + 18646.275697968398, + 18710.89739028247, + 18769.95175894222, + 18823.438803947658, + 18871.358525298765, + 18913.710922995557, + 18950.495997038026, + 18981.71374742617, + 19007.364174160004, + 15096.524081823998, + 15313.244245781727, + 15524.397086085139, + 15729.982602734222, + 15930.000795728985, + 16124.451665069437, + 16313.335210755557, + 16496.65143278736, + 16674.400331164838, + 16846.581905887997, + 17013.19615695684, + 17174.243084371363, + 17329.722688131562, + 17479.634968237435, + 17623.979924688992, + 17762.75755748622, + 17895.96786662914, + 18023.610852117734, + 18145.686513952, + 18262.19485213195, + 18373.13586665758, + 18478.50955752889, + 18578.31592474588, + 18672.554968308537, + 18761.226688216888, + 18844.33108447092, + 18921.868157070625, + 18993.837906016004, + 19060.240331307068, + 19121.075432943806, + 19176.343210926225, + 19226.04366525433, + 19270.176795928102, + 19308.74260294756, + 19341.741086312693, + 19369.17224602351, + 19391.03608208, + 14624.021852056825, + 14847.07740110671, + 15064.565626502266, + 15276.486528243502, + 15482.840106330412, + 15683.626360763012, + 15878.845291541282, + 16068.496898665235, + 16252.581182134869, + 16431.098141950177, + 16604.04777811117, + 16771.430090617832, + 16933.245079470176, + 17089.492744668205, + 17240.173086211908, + 17385.28610410129, + 17524.83179833636, + 17658.8101689171, + 17787.221215843525, + 17910.064939115622, + 18027.341338733404, + 18139.05041469686, + 18245.192167006004, + 18345.76659566081, + 18440.77370066131, + 18530.213482007486, + 18614.085939699336, + 18692.391073736868, + 18765.12888412008, + 18832.29937084897, + 18893.902533923538, + 18949.93837334379, + 19000.40688910972, + 19045.30808122132, + 19084.64194967861, + 19118.40849448157, + 19146.607715630224, + 15152.583850296112, + 15372.032880660245, + 15585.914587370065, + 15794.228970425556, + 15996.976029826727, + 16194.15576557358, + 16385.76817766611, + 16571.813266104313, + 16752.291030888206, + 16927.201472017772, + 17096.54458949302, + 17260.320383313945, + 17418.52885348055, + 17571.169999992828, + 17718.243822850796, + 17859.750322054435, + 17995.689497603762, + 18126.06134949876, + 18250.865877739434, + 18370.10308232579, + 18483.772963257827, + 18591.87552053554, + 18694.410754158936, + 18791.37866412801, + 18882.779250442767, + 18968.61251310319, + 19048.878452109308, + 19123.57706746109, + 19192.708359158558, + 19256.27232720171, + 19314.268971590536, + 19366.69829232504, + 19413.560289405217, + 19454.854962831087, + 19490.582312602633, + 19520.74233871985, + 19545.335041182752, + 14682.679921050003, + 14908.919456645062, + 15129.591668585805, + 15344.696556872223, + 15554.23412150432, + 15758.204362482096, + 15956.607279805554, + 16149.442873474683, + 16336.711143489505, + 16518.412089849997, + 16694.545712556173, + 16865.11201160803, + 17030.110987005555, + 17189.542638748764, + 17343.406966837658, + 17491.703971272214, + 17634.43365205247, + 17771.596009178396, + 17903.191042649996, + 18029.218752467285, + 18149.679138630247, + 18264.572201138886, + 18373.897939993207, + 18477.656355193205, + 18575.847446738888, + 18668.47121463025, + 18755.527658867282, + 18837.016779449998, + 18912.938576378394, + 18983.293049652475, + 19048.080199272223, + 19107.300025237655, + 19160.95252754876, + 19209.037706205552, + 19251.55556120802, + 19288.506092556177, + 19319.88930025, + 15221.951202970002, + 15444.80916811173, + 15662.099809599142, + 15873.82312743222, + 16079.979121610986, + 16280.567792135433, + 16475.589139005555, + 16665.043162221355, + 16848.92986178284, + 17027.249237689997, + 17200.00128994284, + 17367.186018541364, + 17528.80342348556, + 17684.853504775434, + 17835.336262410994, + 17980.251696392224, + 18119.59980671914, + 18253.380593391732, + 18381.594056410002, + 18504.240195773953, + 18621.319011483578, + 18732.83050353889, + 18838.77467193988, + 18939.151516686543, + 19033.961037778896, + 19123.20323521691, + 19206.878109000623, + 19284.98565913, + 19357.525885605064, + 19424.498788425808, + 19485.904367592222, + 19541.742623104325, + 19592.0135549621, + 19636.71716316556, + 19675.853447714693, + 19709.422408609506, + 19737.42404585, + 14786.436649199999, + 15018.408965755058, + 15244.813958655803, + 15465.651627902218, + 15680.921973494316, + 15890.624995432097, + 16094.76069371555, + 16293.329068344683, + 16486.3301193195, + 16673.763846639995, + 16855.63025030617, + 17031.929330318027, + 17202.661086675555, + 17367.825519378763, + 17527.422628427656, + 17681.45241382222, + 17829.91487556247, + 17972.81001364839, + 18110.137828079998, + 18241.898318857282, + 18368.09148598024, + 18488.717329448886, + 18603.775849263206, + 18713.267045423207, + 18817.190917928885, + 18915.54746678024, + 19008.33669197729, + 19095.55859352, + 19177.213171408395, + 19253.300425642465, + 19323.82035622222, + 19388.77296314765, + 19448.158246418763, + 19501.976206035553, + 19550.226841998025, + 19592.910154306166, + 19630.026142959992, + 15344.990040736, + 15573.985807061723, + 15797.414249733141, + 16015.27536875022, + 16227.569164112982, + 16434.295635821432, + 16635.454783875553, + 16831.046608275352, + 17021.071109020835, + 17205.528286111996, + 17384.41813954884, + 17557.74066933136, + 17725.495875459557, + 17887.683757933428, + 18044.304316752987, + 18195.357551918216, + 18340.843463429137, + 18480.762051285725, + 18615.113315487997, + 18743.897256035947, + 18867.113872929578, + 18984.763166168887, + 19096.845135753872, + 19203.35978168454, + 19304.307103960888, + 19399.68710258292, + 19489.499777550616, + 19573.745128863997, + 19652.42315652306, + 19725.533860527805, + 19793.077240878218, + 19855.053297574323, + 19911.462030616094, + 19962.303440003554, + 20007.577525736684, + 20047.284287815506, + 20081.42372624, + 14887.805093969999, + 15125.510191485058, + 15357.647965345803, + 15584.218415552219, + 15805.221542104317, + 16020.657345002097, + 16230.52582424555, + 16434.826979834685, + 16633.560811769497, + 16826.727320049995, + 17014.32650467617, + 17196.358365648026, + 17372.822902965552, + 17543.720116628763, + 17709.050006637655, + 17868.812572992214, + 18023.00781569247, + 18171.63573473839, + 18314.696330129995, + 18452.18960186728, + 18584.115549950246, + 18710.47417437888, + 18831.265475153206, + 18946.489452273207, + 19056.146105738884, + 19160.235435550247, + 19258.757441707283, + 19351.712124209997, + 19439.09948305839, + 19520.919518252464, + 19597.172229792213, + 19667.857617677655, + 19732.975681908763, + 19792.526422485553, + 19846.509839408023, + 19894.925932676175, + 19937.77470228999, + 15465.640595122002, + 15700.774162631724, + 15930.340406487137, + 16154.33932668822, + 16372.77092323498, + 16585.63519612743, + 16792.932145365554, + 16994.661770949355, + 17190.824072878837, + 17381.419051153996, + 17566.446705774844, + 17745.907036741362, + 17919.800044053558, + 18088.125727711427, + 18250.884087714985, + 18408.07512406422, + 18559.69883675914, + 18705.755225799727, + 18846.244291185998, + 18981.166032917947, + 19110.52045099558, + 19234.307545418887, + 19352.527316187876, + 19465.17976330254, + 19572.264886762896, + 19673.782686568917, + 19769.73316272062, + 19860.116315217998, + 19944.93214406106, + 20024.180649249804, + 20097.86183078422, + 20165.975688664323, + 20228.5222228901, + 20285.50143346155, + 20336.91332037869, + 20382.7578836415, + 20423.035123249996, + 14986.785255359999, + 15230.223133835058, + 15468.093688655803, + 15700.396919822218, + 15927.132827334315, + 16148.301411192093, + 16363.902671395554, + 16573.93660794468, + 16778.403220839504, + 16977.302510079993, + 17170.63447566617, + 17358.399117598026, + 17540.596435875555, + 17717.226430498762, + 17888.289101467653, + 18053.78444878222, + 18213.712472442465, + 18368.073172448392, + 18516.866548799997, + 18660.092601497283, + 18797.751330540243, + 18929.842735928883, + 19056.366817663205, + 19177.3235757432, + 19292.71301016889, + 19402.535120940243, + 19506.789908057286, + 19605.477371519995, + 19698.597511328393, + 19786.150327482468, + 19868.13581998222, + 19944.553988827654, + 20015.40483401876, + 20080.688355555554, + 20140.404553438017, + 20194.553427666164, + 20243.134978239996, + 15583.902866127999, + 15825.174234821727, + 16060.878279861136, + 16291.015001246222, + 16515.58439897698, + 16734.586473053434, + 16948.021223475553, + 17155.888650243352, + 17358.188753356833, + 17554.92153281599, + 17746.08698862084, + 17931.685120771363, + 18111.715929267553, + 18286.17941410943, + 18455.07557529699, + 18618.40441283022, + 18776.165926709138, + 18928.360116933727, + 19074.986983503997, + 19216.04652641995, + 19351.53874568158, + 19481.463641288887, + 19605.821213241874, + 19724.61146154054, + 19837.834386184888, + 19945.48998717492, + 20047.578264510623, + 20144.099218192, + 20235.052848219064, + 20320.439154591804, + 20400.25813731022, + 20474.50979637432, + 20543.194131784097, + 20606.311143539555, + 20663.86083164069, + 20715.84319608751, + 20762.25823688, + 15083.377133369997, + 15332.54779280506, + 15576.151128585805, + 15814.187140712222, + 16046.655829184314, + 16273.557194002095, + 16494.891235165553, + 16710.657952674686, + 16920.857346529505, + 17125.489416729997, + 17324.554163276174, + 17518.051586168025, + 17705.981685405553, + 17888.344460988763, + 18065.13991291765, + 18236.368041192218, + 18402.028845812467, + 18562.12232677839, + 18716.648484089998, + 18865.60731774729, + 19008.99882775025, + 19146.82301409889, + 19279.07987679321, + 19405.769415833205, + 19526.89163121888, + 19642.446522950246, + 19752.434091027284, + 19856.854335449996, + 19955.707256218393, + 20048.992853332464, + 20136.711126792223, + 20218.862076597652, + 20295.445702748766, + 20366.462005245558, + 20431.910984088026, + 20491.792639276173, + 20546.106970810004, + 15699.776853753996, + 15947.186023631722, + 16189.027869855132, + 16425.30239242422, + 16656.009591338978, + 16881.14946659943, + 17100.722018205553, + 17314.72724615735, + 17523.16515045483, + 17726.03573109799, + 17923.338988086834, + 18115.07492142136, + 18301.243531101554, + 18481.84481712743, + 18656.878779498984, + 18826.345418216217, + 18990.244733279138, + 19148.576724687726, + 19301.341392442, + 19448.53873654195, + 19590.168756987572, + 19726.23145377888, + 19856.726826915867, + 19981.654876398534, + 20101.015602226886, + 20214.80900440091, + 20323.035082920615, + 20425.693837785995, + 20522.785268997053, + 20614.309376553803, + 20700.266160456216, + 20780.655620704314, + 20855.477757298097, + 20924.732570237553, + 20988.42005952269, + 21046.5402251535, + 21099.09306712999, + 15177.580727999995, + 15432.484168395058, + 15681.820285135804, + 15925.589078222218, + 16163.790547654315, + 16396.424693432095, + 16623.49151555555, + 16844.991014024683, + 17060.923188839504, + 17271.28804, + 17476.085567506172, + 17675.315771358022, + 17868.97865155555, + 18057.074208098755, + 18239.602440987645, + 18416.563350222215, + 18587.956935802464, + 18753.783197728393, + 18914.042136, + 19068.733750617277, + 19217.858041580246, + 19361.415008888882, + 19499.404652543206, + 19631.826972543207, + 19758.681968888886, + 19879.969641580246, + 19995.689990617277, + 20105.843015999995, + 20210.42871772839, + 20309.447095802465, + 20402.898150222212, + 20490.781880987655, + 20573.09828809876, + 20649.84737155555, + 20721.029131358024, + 20786.643567506173, + 20846.690680000003, + 15813.262558000006, + 16066.80952906173, + 16314.789176469138, + 16557.201500222225, + 16794.046500320983, + 17025.324176765433, + 17251.034529555556, + 17471.17755869135, + 17685.75326417284, + 17894.761646, + 18098.20270417284, + 18296.07643869136, + 18488.382849555564, + 18675.121936765434, + 18856.293700320988, + 19031.898140222223, + 19201.935256469143, + 19366.40504906173, + 19525.307517999994, + 19678.642663283958, + 19826.41048491358, + 19968.610982888888, + 20105.244157209876, + 20236.310007876542, + 20361.808534888896, + 20481.739738246913, + 20596.10361795062, + 20704.900174000002, + 20808.129406395063, + 20905.791315135808, + 20997.885900222223, + 21084.413161654324, + 21165.3730994321, + 21240.765713555556, + 21310.591004024693, + 21374.84897083951, + 21433.53961400001, + 15269.39603925, + 15530.032260605058, + 15785.101158305804, + 16034.60273235222, + 16278.536982744317, + 16516.9039094821, + 16749.703512565553, + 16976.935791994685, + 17198.600747769506, + 17414.698379889996, + 17625.228688356176, + 17830.191673168032, + 18029.587334325555, + 18223.415671828763, + 18411.676685677656, + 18594.37037587222, + 18771.49674241247, + 18943.0557852984, + 19109.04750453, + 19269.471900107284, + 19424.328972030245, + 19573.618720298888, + 19717.34114491321, + 19855.496245873204, + 19988.084023178893, + 20115.10447683025, + 20236.557606827286, + 20352.44341317, + 20462.761895858395, + 20567.513054892475, + 20666.696890272222, + 20760.313401997657, + 20848.36259006876, + 20930.844454485563, + 21007.758995248023, + 21079.106212356164, + 21144.886105809994, + 15924.359978866003, + 16184.044751111727, + 16438.16219970314, + 16686.712324640223, + 16929.695125922983, + 17167.110603551435, + 17398.958757525557, + 17625.239587845354, + 17845.953094510834, + 18061.099277522, + 18270.678136878843, + 18474.689672581364, + 18673.133884629566, + 18866.010773023434, + 19053.32033776299, + 19235.062578848225, + 19411.237496279144, + 19581.845090055733, + 19746.885360178, + 19906.358306645954, + 20060.263929459587, + 20208.60222861889, + 20351.37320412388, + 20488.57685597454, + 20620.213184170887, + 20746.282188712925, + 20866.783869600626, + 20981.718226834, + 21091.085260413067, + 21194.88497033781, + 21293.11735660823, + 21385.782419224328, + 21472.8801581861, + 21554.41057349356, + 21630.37366514669, + 21700.769433145513, + 21765.597877490003, + 15358.823067119998, + 15625.192069435057, + 15885.993748095805, + 16141.228103102221, + 16390.895134454317, + 16634.994842152097, + 16873.52722619555, + 17106.492286584682, + 17333.8900233195, + 17555.720436399995, + 17771.983525826174, + 17982.679291598026, + 18187.807733715556, + 18387.368852178766, + 18581.362646987654, + 18769.78911814222, + 18952.64826564247, + 19129.940089488395, + 19301.664589679993, + 19467.82176621728, + 19628.411619100243, + 19783.434148328884, + 19932.889353903207, + 20076.7772358232, + 20215.097794088877, + 20347.851028700254, + 20475.03693965729, + 20596.65552696, + 20712.70679060839, + 20823.190730602466, + 20928.10734694221, + 21027.456639627657, + 21121.238608658765, + 21209.453254035547, + 21292.100575758017, + 21369.18057382618, + 21440.693248239993, + 16033.069116351999, + 16298.891689781725, + 16559.146939557137, + 16813.834865678225, + 17062.95546814498, + 17306.508746957436, + 17544.494702115557, + 17776.91333361936, + 18003.764641468835, + 18225.04862566399, + 18440.765286204845, + 18650.91462309136, + 18855.49663632355, + 19054.511325901425, + 19247.958691824995, + 19435.838734094224, + 19618.151452709135, + 19794.896847669723, + 19966.074918975995, + 20131.685666627953, + 20291.729090625588, + 20446.205190968885, + 20595.11396765787, + 20738.455420692535, + 20876.229550072898, + 21008.436355798913, + 21135.075837870616, + 21256.147996288, + 21371.652831051062, + 21481.590342159805, + 21585.96052961422, + 21684.763393414316, + 21777.998933560095, + 21865.667150051555, + 21947.7680428887, + 22024.301612071504, + 22095.2678576, + 15445.86181161, + 15717.963594885061, + 15984.498054505802, + 16245.465190472221, + 16500.865002784318, + 16750.697491442097, + 16994.962656445554, + 17233.66049779468, + 17466.791015489503, + 17694.354209529996, + 17916.35007991617, + 18132.778626648033, + 18343.639849725554, + 18548.933749148764, + 18748.660324917655, + 18942.81957703222, + 19131.41150549247, + 19314.436110298397, + 19491.893391449998, + 19663.78334894728, + 19830.105982790243, + 19990.861292978883, + 20146.04927951321, + 20295.669942393204, + 20439.723281618888, + 20578.209297190246, + 20711.127989107288, + 20838.47935737, + 20960.263401978398, + 21076.480122932477, + 21187.12952023222, + 21292.21159387766, + 21391.72634386877, + 21485.673770205558, + 21574.053872888027, + 21656.86665191617, + 21734.112107290002, + 16139.389970457998, + 16411.350345071725, + 16677.743396031135, + 16938.569123336223, + 17193.82752698698, + 17443.518606983434, + 17687.642363325558, + 17926.198796013356, + 18159.18790504684, + 18386.609690425998, + 18608.464152150842, + 18824.751290221368, + 19035.47110463756, + 19240.623595399436, + 19440.208762506994, + 19634.226605960223, + 19822.677125759146, + 20005.560321903733, + 20182.876194394, + 20354.624743229957, + 20520.805968411583, + 20681.419869938887, + 20836.466447811876, + 20985.945702030545, + 21129.85763259489, + 21268.202239504924, + 21400.979522760626, + 21528.189482362002, + 21649.832118309067, + 21765.90743060181, + 21876.415419240224, + 21981.356084224324, + 22080.7294255541, + 22174.535443229557, + 22262.774137250697, + 22345.445507617518, + 22422.54955433, + 15530.51227272, + 15808.34683695506, + 16080.614077535805, + 16347.313994462222, + 16608.446587734317, + 16864.011857352096, + 17114.009803315555, + 17358.440425624685, + 17597.303724279507, + 17830.599699279996, + 18058.328350626176, + 18280.48967831803, + 18497.08368235556, + 18708.110362738764, + 18913.569719467654, + 19113.46175254222, + 19307.786461962467, + 19496.543847728397, + 19679.73390984, + 19857.356648297282, + 20029.412063100244, + 20195.900154248884, + 20356.820921743212, + 20512.174365583203, + 20661.96048576888, + 20806.17928230025, + 20944.830755177285, + 21077.9149044, + 21205.4317299684, + 21327.38123188247, + 21443.76341014222, + 21554.578264747655, + 21659.825795698765, + 21759.506002995557, + 21853.618886638025, + 21942.164446626175, + 22025.14268296, + 16243.322541184, + 16521.420716981727, + 16793.951569125136, + 17060.91509761422, + 17322.311302448983, + 17578.14018362943, + 17828.401741155554, + 18073.095975027354, + 18312.222885244835, + 18545.782471807997, + 18773.77473471684, + 18996.19967397136, + 19213.057289571563, + 19424.347581517435, + 19630.070549808996, + 19830.226194446226, + 20024.81451542914, + 20213.835512757734, + 20397.289186431997, + 20575.175536451952, + 20747.49456281758, + 20914.246265528887, + 21075.43064458588, + 21231.047699988543, + 21381.097431736893, + 21525.579839830913, + 21664.49492427062, + 21797.842685055995, + 21925.623122187066, + 22047.836235663814, + 22164.48202548622, + 22275.560491654323, + 22381.071634168093, + 22481.01545302756, + 22575.391948232693, + 22664.201119783505, + 22747.442967679995, + 15612.774450449999, + 15896.341795645058, + 16174.341817185801, + 16446.774515072215, + 16713.639889304315, + 16974.937939882093, + 17230.668666805548, + 17480.83207007468, + 17725.428149689502, + 17964.45690564999, + 18197.91833795617, + 18425.81244660802, + 18648.139231605554, + 18864.898692948755, + 19076.09083063765, + 19281.715644672222, + 19481.773135052463, + 19676.263301778392, + 19865.18614484999, + 20048.541664267275, + 20226.32986003024, + 20398.55073213888, + 20565.204280593203, + 20726.2905053932, + 20881.809406538887, + 21031.76098403024, + 21176.145237867277, + 21314.96216805, + 21448.21177457839, + 21575.894057452464, + 21698.009016672215, + 21814.556652237647, + 21925.536964148756, + 22030.94995240555, + 22130.795617008014, + 22225.073957956163, + 22313.784975249993, + 16344.866828529997, + 16629.102805511724, + 16907.771458839135, + 17180.872788512217, + 17448.40679453098, + 17710.37347689543, + 17966.77283560555, + 18217.60487066135, + 18462.869582062838, + 18702.56696980999, + 18936.697033902834, + 19165.259774341357, + 19388.255191125554, + 19605.68328425543, + 19817.54405373098, + 20023.837499552217, + 20224.56362171914, + 20419.72242023173, + 20609.313895089992, + 20793.33804629395, + 20971.794873843573, + 21144.68437773888, + 21312.006557979872, + 21473.761414566536, + 21629.94894749888, + 21780.569156776914, + 21925.62204240062, + 22065.107604369998, + 22199.02584268506, + 22327.3767573458, + 22450.16034835222, + 22567.37661570431, + 22679.025559402096, + 22785.107179445553, + 22885.62147583469, + 22980.568448569506, + 23069.94809764999, + 15692.648344799998, + 15981.948470955056, + 16265.681273455804, + 16543.846752302223, + 16816.444907494315, + 17083.475739032096, + 17344.93924691555, + 17600.835431144682, + 17851.164291719502, + 18095.925828639993, + 18335.12004190617, + 18568.746931518028, + 18796.806497475554, + 19019.298739778762, + 19236.223658427654, + 19447.581253422217, + 19653.371524762475, + 19853.594472448392, + 20048.25009648, + 20237.33839685728, + 20420.859373580242, + 20598.813026648884, + 20771.199356063207, + 20938.018361823208, + 21099.270043928882, + 21254.954402380245, + 21405.071437177285, + 21549.62114832, + 21688.60353580839, + 21822.01859964247, + 21949.866339822216, + 22072.14675634765, + 22188.85984921876, + 22300.00561843555, + 22405.58406399802, + 22505.595185906168, + 22600.038984159994, + 16444.022832496, + 16734.396610661726, + 17019.203065173137, + 17298.442196030224, + 17572.114003232982, + 17840.218486781432, + 18102.755646675556, + 18359.72548291535, + 18611.127995500836, + 18856.96318443199, + 19097.231049708837, + 19331.931591331362, + 19561.064809299554, + 19784.63070361343, + 20002.62927427299, + 20215.060521278217, + 20421.92444462914, + 20623.221044325728, + 20818.950320368, + 21009.11227275595, + 21193.706901489575, + 21372.734206568886, + 21546.19418799387, + 21714.086845764545, + 21876.412179880885, + 22033.17019034291, + 22184.36087715062, + 22329.984240304006, + 22470.040279803066, + 22604.528995647794, + 22733.45038783822, + 22856.804456374317, + 22974.591201256095, + 23086.810622483557, + 23193.462720056697, + 23294.547493975497, + 23390.064944239995, + 15770.133955769996, + 16065.166862885053, + 16354.6324463458, + 16638.530706152218, + 16916.861642304313, + 17189.625254802093, + 17456.82154364555, + 17718.450508834678, + 17974.512150369497, + 18225.006468249994, + 18469.93346247617, + 18709.293133048024, + 18943.085479965554, + 19171.310503228757, + 19393.968202837645, + 19611.058578792217, + 19822.581631092467, + 20028.53735973839, + 20228.92576472999, + 20423.746846067283, + 20613.000603750243, + 20796.68703777888, + 20974.806148153202, + 21147.357934873202, + 21314.342397938886, + 21475.75953735024, + 21631.60935310728, + 21781.891845209993, + 21926.60701365839, + 22065.754858452467, + 22199.335379592216, + 22327.348577077653, + 22449.794450908754, + 22566.67300108555, + 22677.98422760802, + 22783.728130476164, + 22883.904709689992, + 16540.790553081995, + 16837.302132431723, + 17128.246388127136, + 17413.62332016822, + 17693.43292855498, + 17967.67521328743, + 18236.350174365547, + 18499.45781178935, + 18756.998125558835, + 19008.97111567399, + 19255.376782134837, + 19496.21512494136, + 19731.486144093553, + 19961.189839591425, + 20185.326211434985, + 20403.895259624216, + 20616.896984159135, + 20824.33138503973, + 21026.198462265995, + 21222.49821583795, + 21413.230645755575, + 21598.39575201889, + 21777.99353462788, + 21952.02399358254, + 22120.48712888288, + 22283.382940528918, + 22440.711428520615, + 22592.472592857997, + 22738.666433541064, + 22879.2929505698, + 23014.352143944216, + 23143.844013664322, + 23267.768559730095, + 23386.125782141557, + 23498.91568089869, + 23606.138256001504, + 23707.793507449995, + 15845.231283359999, + 16145.996971435061, + 16441.195335855806, + 16730.826376622223, + 17014.890093734317, + 17293.3864871921, + 17566.315556995556, + 17833.67730314469, + 18095.47172563951, + 18351.698824480005, + 18602.35859966618, + 18847.451051198026, + 19086.97617907555, + 19320.933983298757, + 19549.324463867648, + 19772.147620782216, + 19989.403454042462, + 20201.091963648392, + 20407.21314959999, + 20607.767011897293, + 20802.75355054025, + 20992.17276552889, + 21176.02465686321, + 21354.30922454321, + 21527.026468568893, + 21694.17638894025, + 21855.75898565728, + 22011.774258719997, + 22162.22220812839, + 22307.10283388247, + 22446.416135982225, + 22580.16211442765, + 22708.34076921876, + 22830.952100355564, + 22947.996107838026, + 23059.472791666172, + 23165.382151840004, + 16635.169990287995, + 16937.819370821722, + 17234.901427701134, + 17526.41616092622, + 17812.363570496982, + 18092.74365641343, + 18367.556418675547, + 18636.801857283353, + 18900.479972236833, + 19158.59076353599, + 19411.13423118084, + 19658.11037517136, + 19899.51919550755, + 20135.36069218943, + 20365.634865216987, + 20590.341714590217, + 20809.48124030913, + 21023.05344237373, + 21231.05832078399, + 21433.49587553995, + 21630.366106641577, + 21821.669014088882, + 22007.40459788188, + 22187.572858020536, + 22362.17379450489, + 22531.20740733491, + 22694.673696510625, + 22852.57266203199, + 23004.904303899064, + 23151.6686221118, + 23292.86561667022, + 23428.495287574322, + 23558.557634824097, + 23683.052658419554, + 23801.98035836069, + 23915.3407346475, + 24023.133787279996, + 15917.940327569997, + 16224.438796605056, + 16525.369941985802, + 16820.73376371222, + 17110.53026178431, + 17394.759436202094, + 17673.42128696555, + 17946.515814074686, + 18214.043017529504, + 18476.00289733, + 18732.39545347618, + 18983.220685968023, + 19228.47859480555, + 19468.169179988756, + 19702.29244151765, + 19930.848379392217, + 20153.836993612465, + 20371.258284178395, + 20583.112251089995, + 20789.398894347287, + 20990.118213950245, + 21185.27020989889, + 21374.854882193213, + 21558.87223083321, + 21737.32225581889, + 21910.20495715025, + 22077.52033482728, + 22239.268388849992, + 22395.449119218392, + 22546.062525932455, + 22691.108608992214, + 22830.58736839765, + 22964.49880414876, + 23092.84291624555, + 23215.61970468803, + 23332.829169476176, + 23444.471310610003, + 16727.161144114005, + 17035.94832583173, + 17339.16818389514, + 17636.820718304225, + 17928.905929058987, + 18215.423816159437, + 18496.374379605557, + 18771.757619397355, + 19041.57353553484, + 19305.822128017997, + 19564.503396846838, + 19817.61734202137, + 20065.163963541563, + 20307.14326140744, + 20543.555235618987, + 20774.399886176223, + 20999.677213079147, + 21219.387216327737, + 21433.52989592201, + 21642.10525186195, + 21845.113284147577, + 22042.553992778885, + 22234.427377755885, + 22420.733439078547, + 22601.472176746887, + 22776.64359076091, + 22946.24768112063, + 23110.28444782601, + 23268.753890877066, + 23421.6560102738, + 23568.99080601622, + 23710.758278104327, + 23846.958426538105, + 23977.59125131756, + 24102.656752442694, + 24222.1549299135, + 24336.085783729995, + 15988.261088400002, + 16300.492338395059, + 16607.156264735808, + 16908.25286742222, + 17203.782146454316, + 17493.7441018321, + 17778.138733555556, + 18056.966041624684, + 18330.226026039505, + 18597.918686799996, + 18860.044023906175, + 19116.60203735803, + 19367.592727155556, + 19613.01609329876, + 19852.872135787657, + 20087.16085462222, + 20315.88224980247, + 20539.036321328396, + 20756.623069199995, + 20968.642493417286, + 21175.094593980248, + 21375.97937088889, + 21571.296824143206, + 21761.046953743207, + 21945.229759688893, + 22123.84524198025, + 22296.893400617282, + 22464.374235599997, + 22626.28774692839, + 22782.633934602472, + 22933.412798622223, + 23078.624338987654, + 23218.268555698764, + 23352.345448755557, + 23480.85501815802, + 23603.797263906166, + 23721.172185999996, + 16816.764014560005, + 17131.68899746173, + 17441.04665670914, + 17744.836992302222, + 18043.060004240986, + 18335.71569252543, + 18622.80405715555, + 18904.32509813135, + 19180.27881545284, + 19450.665209119998, + 19715.484279132845, + 19974.73602549136, + 20228.420448195557, + 20476.537547245425, + 20719.08732264099, + 20956.069774382224, + 21187.48490246914, + 21413.332706901732, + 21633.613187679995, + 21848.326344803954, + 22057.472178273583, + 22261.050688088882, + 22459.061874249877, + 22651.505736756546, + 22838.38227560888, + 23019.69149080692, + 23195.433382350617, + 23365.60795024, + 23530.215194475062, + 23689.255115055807, + 23842.72771198222, + 23990.632985254328, + 24132.970934872097, + 24269.741560835562, + 24400.94486314469, + 24526.580841799514, + 24646.649496799993, + 16056.193565849999, + 16374.157596805058, + 16686.554304105804, + 16993.383687752223, + 17294.645747744315, + 17590.3404840821, + 17880.467896765553, + 18165.027985794684, + 18444.020751169504, + 18717.446192889995, + 18985.30431095617, + 19247.59510536803, + 19504.31857612556, + 19755.47472322876, + 20001.063546677655, + 20241.085046472217, + 20475.539222612468, + 20704.426075098396, + 20927.745603929994, + 21145.497809107284, + 21357.682690630245, + 21564.30024849889, + 21765.35048271321, + 21960.833393273206, + 22150.748980178883, + 22335.097243430253, + 22513.87818302729, + 22687.091798970003, + 22854.738091258398, + 23016.817059892466, + 23173.32870487222, + 23324.27302619765, + 23469.650023868762, + 23609.459697885555, + 23743.702048248026, + 23872.377074956177, + 23995.484778009995, + 16903.978601626, + 17225.041385711727, + 17540.53684614314, + 17850.46498292022, + 18154.825796042984, + 18453.61928551143, + 18746.845451325553, + 19034.50429348535, + 19316.595811990836, + 19593.120006842, + 19864.07687803884, + 20129.466425581362, + 20389.288649469563, + 20643.543549703427, + 20892.23112628299, + 21135.351379208223, + 21372.90430847914, + 21604.889914095733, + 21831.308196057995, + 22052.159154365952, + 22267.442789019584, + 22477.15910001889, + 22681.30808736388, + 22879.889751054543, + 23072.904091090888, + 23260.351107472914, + 23442.230800200618, + 23618.543169274002, + 23789.288214693064, + 23954.46593645781, + 24114.07633456822, + 24268.119409024323, + 24416.595159826098, + 24559.50358697356, + 24696.84469046669, + 24828.618470305508, + 24954.824926489993, + 16063.594199908703, + 16382.195207035566, + 16695.22889050811, + 17002.695250326335, + 17304.59428649023, + 17600.925998999814, + 17891.690387855073, + 18176.887453056002, + 18456.517194602628, + 18730.57961249492, + 18999.074706732903, + 19262.002477316564, + 19519.362924245892, + 19771.156047520904, + 20017.381847141598, + 20258.04032310796, + 20493.131475420018, + 20722.655304077743, + 20946.611809081154, + 21165.00099043024, + 21377.822848125, + 21585.077382165444, + 21786.764592551568, + 21982.88447928337, + 22173.437042360845, + 22358.42228178402, + 22537.84019755286, + 22711.690789667384, + 22879.974058127576, + 23042.69000293345, + 23199.83862408501, + 23351.41992158224, + 23497.433895425154, + 23637.88054561375, + 23772.759872148024, + 23902.07187502797, + 24025.816554253597, + 16913.52169402267, + 17235.266456563313, + 17551.44389544964, + 17862.05401068164, + 18167.09680225932, + 18466.57227018268, + 18760.48041445172, + 19048.82123506643, + 19331.59473202683, + 19608.800905332904, + 19880.439754984665, + 20146.511280982104, + 20407.01548332521, + 20661.952362014006, + 20911.321917048477, + 21155.124148428626, + 21393.35905615446, + 21626.026640225966, + 21853.12690064315, + 22074.659837406016, + 22290.625450514563, + 22501.023739968783, + 22705.854705768692, + 22905.118347914264, + 23098.814666405535, + 23286.94366124247, + 23469.505332425095, + 23646.499679953395, + 23817.92670382737, + 23983.786404047023, + 24144.078780612363, + 24298.803833523372, + 24447.961562780067, + 24591.55196838244, + 24729.57505033049, + 24862.030808624215, + 24988.91924326363, + 16952.535791999995, + 17462.229497283945, + 17966.355878913582, + 18464.91493688889, + 18957.906671209872, + 19445.331081876546, + 19927.18816888889, + 20403.477932246908, + 20874.200371950617, + 21339.355487999994, + 21798.94328039507, + 22252.9637491358, + 22701.41689422222, + 23144.302715654314, + 23581.621213432096, + 24013.372387555544, + 24439.556238024692, + 24860.172764839503, + 25275.221967999998, + 25684.70384750617, + 26088.618403358025, + 26486.965635555556, + 26879.745544098776, + 27266.95812898765, + 27648.60339022221, + 28024.681327802467, + 28395.191941728397, + 28760.13523199999, + 29119.51119861728, + 29473.31984158024, + 29821.561160888876, + 30164.235156543215, + 30501.34182854321, + 30832.881176888888, + 31158.85320158025, + 31479.257902617286, + 31794.095279999994, + 18445.200271600006, + 18971.538406395062, + 19492.309217535814, + 20007.51270502223, + 20517.148868854318, + 21021.21770903211, + 21519.719225555556, + 22012.653418424685, + 22500.02028763951, + 22981.8198332, + 23458.052055106178, + 23928.716953358035, + 24393.81452795556, + 24853.344778898765, + 25307.307706187665, + 25755.703309822224, + 26198.531589802486, + 26635.792546128403, + 27067.4861788, + 27493.61248781729, + 27914.171473180253, + 28329.16313488889, + 28738.58747294321, + 29142.44448734321, + 29540.734178088893, + 29933.456545180245, + 30320.611588617292, + 30702.1993084, + 31078.2197045284, + 31448.672777002474, + 31813.55852582222, + 32172.87695098766, + 32526.62805249877, + 32874.81183035557, + 33217.42828455803, + 33554.47741510617, + 33885.959222 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 8.791381193505783, + "volume": 3.028328 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC25A_SP.json b/examples/NyleC25A_SP.json new file mode 100644 index 0000000..9281606 --- /dev/null +++ b/examples/NyleC25A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 5063.173345923648, + 5059.266474674143, + 5056.185389702652, + 5053.832862613901, + 5052.11285529101, + 5050.930519895504, + 5050.19219886731, + 5049.805424924743, + 5049.678921064528, + 5049.72260056178, + 5049.847566970027, + 5049.966114121175, + 5049.991726125559, + 5049.839077371879, + 5049.424032527259, + 5048.663646537218, + 5047.476164625661, + 5045.781022294916, + 5043.498845325683, + 5040.551449777079, + 5036.861841986619, + 5032.354218570207, + 5026.95396642216, + 5020.587662715183, + 5013.183074900389, + 5004.669160707279, + 4994.9760681437665, + 4984.0351354961585, + 4971.778891329156, + 4958.141054485869, + 4943.056534087795, + 4926.461429534841, + 4908.293030505312, + 4888.489816955903, + 4866.991459121724, + 4843.738817516268, + 4818.673942931438, + 5099.708934963425, + 5099.0533386200805, + 5099.099189941947, + 5099.759788912532, + 5100.949625793716, + 5102.584381125802, + 5104.580925727478, + 5106.857320695838, + 5109.332817406368, + 5111.927857512965, + 5114.564072947914, + 5117.164285921904, + 5119.6525089240295, + 5121.953944721767, + 5123.994986361005, + 5125.703217166036, + 5127.0074107395385, + 5127.8375309626035, + 5128.124731994707, + 5127.801358273734, + 5126.800944515965, + 5125.058215716081, + 5122.509087147171, + 5119.0906643606995, + 5114.741243186564, + 5109.400309733018, + 5103.008540386762, + 5095.507801812858, + 5086.841150954791, + 5076.952835034431, + 5065.788291552046, + 5053.294148286324, + 5039.418223294328, + 5024.109524911529, + 5007.318251751804, + 4988.995792707424, + 4969.094726949049, + 5070.558764706364, + 5066.567889754278, + 5063.404282874146, + 5060.970460460873, + 5059.17012918777, + 5057.908186006547, + 5057.090718147316, + 5056.6250031185755, + 5056.419508707247, + 5056.38389297862, + 5056.429004276417, + 5056.466881222726, + 5056.41075271807, + 5056.175037941337, + 5055.675346349834, + 5054.828477679268, + 5053.552421943733, + 5051.766359435737, + 5049.390660726172, + 5046.346886664338, + 5042.557788377937, + 5037.947307273064, + 5032.440575034217, + 5025.963913624289, + 5018.444835284578, + 5009.812042534772, + 4999.995428172973, + 4988.92607527567, + 4976.536257197755, + 4962.759437572521, + 4947.5302703116495, + 4930.7845996052465, + 4912.459459921785, + 4892.493076008163, + 4870.8248628896645, + 4847.395425869975, + 4822.146560531187, + 5106.449784263218, + 5105.707352322595, + 5105.667880545676, + 5106.244453945223, + 5107.351347812422, + 5108.904027716837, + 5110.819149506455, + 5113.014559307635, + 5115.409293525161, + 5117.923578842191, + 5120.478832220313, + 5122.9976608994775, + 5125.403862398076, + 5127.622424512854, + 5129.579525318993, + 5131.202533170055, + 5132.420006698012, + 5133.161694813221, + 5133.358536704447, + 5132.942661838866, + 5131.84738996203, + 5130.0072310978985, + 5127.357885548848, + 5123.836243895618, + 5119.380386997382, + 5113.9295859917, + 5107.424302294522, + 5099.806187600222, + 5091.018083881534, + 5081.004023389643, + 5069.709228654072, + 5057.0801124828, + 5043.064277962169, + 5027.610518456937, + 5010.668817610254, + 4992.190349343677, + 4972.127477857148, + 5137.5446358722, + 5132.8003593771255, + 5128.897363595417, + 5125.735868033667, + 5123.217282476857, + 5121.2442069883755, + 5119.720431910013, + 5118.55093786195, + 5117.6418957427695, + 5116.900666729456, + 5116.235802277394, + 5115.557044120366, + 5114.775324270557, + 5113.802765018537, + 5112.552678933291, + 5110.939568862201, + 5108.879127931041, + 5106.2882395439965, + 5103.084977383626, + 5099.188605410928, + 5094.519577865261, + 5088.999539264408, + 5082.551324404545, + 5075.098958360235, + 5066.567656484457, + 5056.883824408582, + 5045.975058042374, + 5033.770143574016, + 5020.199057470065, + 5005.1929664755, + 4988.684227613676, + 4970.606388186369, + 4950.894185773745, + 4929.483548234361, + 4906.3115937051925, + 4881.316630601594, + 4854.438157617333, + 5167.723710431227, + 5166.202106400938, + 5165.397751338301, + 5165.221795519622, + 5165.586579499605, + 5166.405634111356, + 5167.593680466388, + 5169.066629954595, + 5170.74158424428, + 5172.536835282152, + 5174.371865293309, + 5176.167346781252, + 5177.845142527886, + 5179.328305593506, + 5180.541079316801, + 5181.408897314894, + 5181.858383483256, + 5181.817351995806, + 5181.2148073048165, + 5179.980944141004, + 5178.0471475134445, + 5175.345992709647, + 5171.811245295493, + 5167.377861115284, + 5161.9819862916975, + 5155.56095722584, + 5148.053300597183, + 5139.398733363628, + 5129.538162761466, + 5118.4136863053855, + 5105.968591788453, + 5092.147357282174, + 5076.895651136422, + 5060.16033197949, + 5041.889448718057, + 5022.032240537197, + 5000.539136900421, + 5205.458202430467, + 5199.964964579611, + 5195.328237776337, + 5191.445944638917, + 5188.217198064005, + 5185.542301226672, + 5183.322747580381, + 5181.461220856989, + 5179.861595066762, + 5178.428934498356, + 5177.069493718841, + 5175.690717573661, + 5174.201241186694, + 5172.510889960178, + 5170.530679574778, + 5168.172815989555, + 5165.350695441958, + 5161.9789044478475, + 5157.97321980147, + 5153.25060857548, + 5147.72922812094, + 5141.328426067287, + 5133.968740322379, + 5125.571899072469, + 5116.060820782202, + 5105.359614194624, + 5093.393578331188, + 5080.089202491742, + 5065.374166254524, + 5049.177339476194, + 5031.428782291777, + 5012.059745114739, + 4991.002668636903, + 4968.191183828525, + 4943.560111938241, + 4917.045464493092, + 4888.584443298522, + 5230.0863459039365, + 5227.789446181731, + 5226.225301602885, + 5225.303127707228, + 5224.933330313007, + 5225.027505516847, + 5225.498439693796, + 5226.260109497279, + 5227.227681859139, + 5228.3175139895975, + 5229.447153377304, + 5230.535337789271, + 5231.501995270954, + 5232.268244146159, + 5232.75639301713, + 5232.889940764492, + 5232.593576547279, + 5231.79317980291, + 5230.415820247212, + 5228.389757874421, + 5225.6444429571575, + 5222.110516046436, + 5217.719807971699, + 5212.405339840749, + 5206.101323039821, + 5198.743159233536, + 5190.267440364906, + 5180.611948655368, + 5169.715656604719, + 5157.518726991208, + 5143.962512871414, + 5128.989557580384, + 5112.543594731517, + 5094.569548216641, + 5075.013532205962, + 5053.8228511481, + 5030.945999770058, + 5274.2951276782715, + 5268.056946581821, + 5262.691724559966, + 5258.095087342659, + 5254.163850938226, + 5250.79602163342, + 5247.890795993378, + 5245.348560861639, + 5243.070893360137, + 5240.960560889216, + 5238.921521127612, + 5236.858922032459, + 5234.6791018393005, + 5232.289589062058, + 5229.599102493074, + 5226.517551203078, + 5222.9560345412065, + 5218.826842134994, + 5214.043453890363, + 5208.520539991646, + 5202.173960901576, + 5194.920767361278, + 5186.679200390289, + 5177.368691286522, + 5166.909861626319, + 5155.224523264389, + 5142.235678333872, + 5127.867519246279, + 5112.045428691546, + 5094.695979637987, + 5075.746935332329, + 5055.127249299685, + 5032.767065343585, + 5008.597717545944, + 4982.551730267085, + 4954.56281814572, + 4924.565886098965, + 5293.534049278188, + 5290.46523215922, + 5288.145893731067, + 5286.4833147970885, + 5285.38596643906, + 5284.763510017139, + 5284.526797169914, + 5284.587869814325, + 5284.859960145755, + 5285.2574906379605, + 5285.696074043112, + 5286.092513391761, + 5286.364801992891, + 5286.4321234338395, + 5286.214851580385, + 5285.634550576677, + 5284.6139748452815, + 5283.077069087154, + 5280.948968281648, + 5278.155997686534, + 5274.625672837963, + 5270.28669955048, + 5265.068973917053, + 5258.903582309024, + 5251.722801376154, + 5243.460098046601, + 5234.050129526901, + 5223.428743302025, + 5211.532977135303, + 5198.30105906851, + 5183.672407421762, + 5167.587630793632, + 5149.988528061054, + 5130.818088379386, + 5110.020491182365, + 5087.541106182141, + 5063.326493369252, + 5344.051141915335, + 5337.07161360645, + 5330.982710091979, + 5325.677760213539, + 5321.051283091145, + 5316.998988123219, + 5313.417774986582, + 5310.205733636444, + 5307.262144306421, + 5304.48747750853, + 5301.783394033188, + 5299.052744949202, + 5296.199571603795, + 5293.129105622568, + 5289.747768909535, + 5285.963173647112, + 5281.684122296105, + 5276.820607595724, + 5271.283812563573, + 5264.986110495661, + 5257.841064966403, + 5249.76342982859, + 5240.669149213439, + 5230.475357530552, + 5219.100379467928, + 5206.463729991974, + 5192.486114347488, + 5177.08942805768, + 5160.196756924142, + 5141.7323770268795, + 5121.621754724284, + 5099.791546653165, + 5076.169599728707, + 5050.684951144517, + 5023.26782837259, + 4993.849649163313, + 4962.363021545489, + 5358.063246153427, + 5354.225391830251, + 5351.154957117086, + 5348.757288080839, + 5346.938921066801, + 5345.60758269868, + 5344.672189878567, + 5344.042849786969, + 5343.630859882765, + 5343.34870790327, + 5343.110071864165, + 5342.829820059552, + 5342.424011061924, + 5341.809893722173, + 5340.905907169583, + 5339.631680811863, + 5337.908034335084, + 5335.656977703756, + 5332.801711160745, + 5329.266625227358, + 5324.977300703271, + 5319.860508666575, + 5313.844210473763, + 5306.857557759705, + 5298.830892437704, + 5289.695746699421, + 5279.38484301496, + 5267.832094132792, + 5254.972603079804, + 5240.742663161272, + 5225.079757960882, + 5207.922561340698, + 5189.210937441218, + 5168.8859406813, + 5146.889815758248, + 5123.165997647704, + 5097.659111603779, + 5414.722042443979, + 5407.004340878797, + 5400.196147520637, + 5394.188494322801, + 5388.873603516976, + 5384.144887613262, + 5379.896949400154, + 5376.025581944544, + 5372.427768591725, + 5369.001682965387, + 5365.64668896763, + 5362.26334077893, + 5358.7533828582, + 5355.019749942701, + 5350.96656704814, + 5346.499149468598, + 5341.524002776567, + 5335.948822822928, + 5329.682495736967, + 5322.63509792637, + 5314.717896077222, + 5305.843347154001, + 5295.925098399598, + 5284.877987335283, + 5272.618041760745, + 5259.0624797540595, + 5244.129709671712, + 5227.739330148576, + 5209.812130097929, + 5190.270088711455, + 5169.036375459219, + 5146.035350089702, + 5121.19256262978, + 5094.43475338472, + 5065.6898529382115, + 5034.886982152308, + 5001.956452167489, + 5423.670429131707, + 5419.065919694265, + 5415.247988157796, + 5412.120045852721, + 5409.586694387884, + 5407.553725650498, + 5405.928121806211, + 5404.618055299037, + 5403.532888851411, + 5402.583175464151, + 5401.6806584165, + 5400.738271266064, + 5399.670137848882, + 5398.3915722793745, + 5396.819078950357, + 5394.870352533066, + 5392.464277977108, + 5389.520930510519, + 5385.9615756397025, + 5381.708669149493, + 5376.685857103097, + 5370.817975842145, + 5364.031051986637, + 5356.25230243501, + 5347.41013436406, + 5337.434145229015, + 5326.255122763479, + 5313.805044979469, + 5300.01708016741, + 5284.825586896099, + 5268.166114012754, + 5249.975400642971, + 5230.191376190784, + 5208.753160338573, + 5185.601063047181, + 5160.676584555775, + 5133.922415382001, + 5446.4350417731, + 5438.390057195337, + 5431.263367433106, + 5424.9449832431665, + 5419.326105660648, + 5414.299125999114, + 5409.7576258505005, + 5405.596377085159, + 5401.71134185183, + 5397.999672577656, + 5394.359711968188, + 5390.690993007359, + 5386.89423895752, + 5382.8713633594, + 5378.525470032147, + 5373.760853073301, + 5368.482996858795, + 5362.598576042978, + 5356.01545555857, + 5348.642690616719, + 5340.390526706959, + 5331.1703995972175, + 5320.894935333842, + 5309.477950241554, + 5296.834450923494, + 5282.8806342611815, + 5267.53388741456, + 5250.712787821954, + 5232.337103200096, + 5212.327791544113, + 5190.607001127532, + 5167.098070502277, + 5141.725528498686, + 5114.415094225464, + 5085.093677069762, + 5053.689376697077, + 5020.131483051349, + 5453.184658574717, + 5448.239928900511, + 5444.090685843603, + 5440.639480550578, + 5437.790054446445, + 5435.447339234587, + 5433.517456896815, + 5431.9077196933085, + 5430.5266301626725, + 5429.283881121887, + 5428.090355666361, + 5426.858127169868, + 5425.50045928462, + 5423.931805941183, + 5422.067811348561, + 5419.825309994134, + 5417.1223266437, + 5413.87807634144, + 5410.012964409933, + 5405.4485864501785, + 5400.107728341556, + 5393.914366241839, + 5386.793666587229, + 5378.671986092285, + 5369.476871750006, + 5359.137060831768, + 5347.582480887348, + 5334.744249744936, + 5320.55467551109, + 5304.947256570819, + 5287.856681587464, + 5269.218829502829, + 5248.970769537071, + 5227.050761188775, + 5203.398254234911, + 5177.953888730856, + 5150.659495010377, + 5486.303693569123, + 5477.850570626752, + 5470.32705699682, + 5463.621887744289, + 5457.624988212541, + 5452.227474023338, + 5447.32165107687, + 5442.8010155516895, + 5438.560253904772, + 5434.495242871489, + 5430.503049465611, + 5426.481930979296, + 5422.331334983126, + 5417.951899326056, + 5413.245452135451, + 5408.115011817084, + 5402.464787055114, + 5396.200176812108, + 5389.227770329017, + 5381.4553471252175, + 5372.791876998459, + 5363.147520024912, + 5352.433626559128, + 5340.56273723407, + 5327.44858296109, + 5313.006084929955, + 5297.151354608807, + 5279.801693744219, + 5260.875594361126, + 5240.29273876291, + 5217.973999531294, + 5193.8414395264535, + 5167.818311886922, + 5139.829060029665, + 5109.799317650025, + 5077.655908721759, + 5043.326847497003, + 5490.352157817668, + 5484.982877253314, + 5480.420550252627, + 5476.566653409583, + 5473.323853596529, + 5470.596007964236, + 5468.288163941863, + 5466.306559236971, + 5464.558621835508, + 5462.952970001846, + 5461.399412278732, + 5459.80894748733, + 5458.093764727193, + 5456.167243376278, + 5453.943953090926, + 5451.339653805914, + 5448.271295734371, + 5444.6570193678745, + 5440.416155476349, + 5435.469225108164, + 5429.737939590054, + 5423.145200527178, + 5415.615099803091, + 5407.072919579734, + 5397.445132297439, + 5386.659400674974, + 5374.644577709466, + 5361.330706676466, + 5346.64902112993, + 5330.531944902189, + 5312.913092103983, + 5293.727267124457, + 5272.910464631157, + 5250.399869570004, + 5226.133857165368, + 5200.051992919954, + 5172.095032614926, + 5558.7920265982875, + 5549.6058120808175, + 5541.370525673989, + 5533.972605554455, + 5527.299680177258, + 5521.240568275853, + 5515.6852788620945, + 5510.525011226217, + 5505.652154936881, + 5500.96028984112, + 5496.344186064395, + 5491.699804010533, + 5486.924294361798, + 5481.915998078818, + 5476.574446400639, + 5470.80036084471, + 5464.495653206864, + 5457.563425561346, + 5449.907970260791, + 5441.434769936243, + 5432.05049749714, + 5421.663016131314, + 5410.181379305006, + 5397.51583076285, + 5383.577804527882, + 5368.279924901537, + 5351.53600646364, + 5333.261054072441, + 5313.371262864558, + 5291.784018255031, + 5268.41789593728, + 5243.192661883147, + 5216.029272342852, + 5186.849873845023, + 5155.577803196697, + 5122.137587483286, + 5086.454944068632, + 5558.1050588185635, + 5551.972393012037, + 5546.668273803634, + 5542.092243050859, + 5538.14503288959, + 5534.728565734132, + 5531.745954277169, + 5529.101501489801, + 5526.700700621501, + 5524.450235200175, + 5522.257979032098, + 5520.032996201973, + 5517.685541072876, + 5515.127058286296, + 5512.270182762109, + 5509.028739698619, + 5505.317744572491, + 5501.053403138827, + 5496.153111431086, + 5490.535455761165, + 5484.120212719348, + 5476.828349174302, + 5468.58202227312, + 5459.304579441266, + 5448.920558382638, + 5437.355687079483, + 5424.536883792507, + 5410.392257060767, + 5394.851105701751, + 5377.843918811322, + 5359.302375763758, + 5339.159346211724, + 5317.348890086309, + 5293.80625759696, + 5268.467889231577, + 5241.271415756393, + 5212.155658216108, + 5632.183039841603, + 5622.26564147409, + 5613.32170770823, + 5605.235379832343, + 5597.891989413159, + 5591.178058295804, + 5584.981298603808, + 5579.190612739089, + 5573.696093381979, + 5568.389023491192, + 5563.161876303867, + 5557.908315335503, + 5552.5231943800445, + 5546.902557509797, + 5540.9436390754845, + 5534.54486370623, + 5527.605846309544, + 5520.027392071354, + 5511.711496455969, + 5502.561345206103, + 5492.48131434288, + 5481.376970165811, + 5469.155069252803, + 5455.723558460181, + 5440.991574922646, + 5424.869446053316, + 5407.268689543694, + 5388.102013363705, + 5367.283315761648, + 5344.72768526423, + 5320.351400676558, + 5294.071931082148, + 5265.807935842898, + 5235.47926459911, + 5203.006957269504, + 5168.313244051167, + 5131.321545419611, + 5626.925825744252, + 5620.030662477695, + 5613.986856215469, + 5608.692014078606, + 5604.044933466515, + 5599.945602057033, + 5596.2951978063775, + 5592.996088949174, + 5589.951833998432, + 5587.067181745585, + 5584.248071260443, + 5581.4016318912345, + 5578.436183264569, + 5575.261235285469, + 5571.787488137341, + 5567.92683228201, + 5563.592348459697, + 5558.698307689002, + 5553.160171266949, + 5546.894590768941, + 5539.819408048802, + 5531.8536552387295, + 5522.917554749348, + 5512.932519269654, + 5501.821151767069, + 5489.507245487384, + 5475.915783954824, + 5460.972940971986, + 5444.606080619883, + 5426.743757257913, + 5407.315715523883, + 5386.25289033399, + 5363.487406882853, + 5338.9525806434485, + 5312.582917367213, + 5284.31411308391, + 5254.083054101762, + 5706.472798611788, + 5695.825702042271, + 5686.175824258208, + 5677.405009659605, + 5669.396292924863, + 5662.033899010785, + 5655.203243152583, + 5648.790930863846, + 5642.6847579365885, + 5636.773710441199, + 5630.94796472649, + 5625.09888741965, + 5619.119035426288, + 5612.902155930389, + 5606.343186394358, + 5599.338254558988, + 5591.784678443482, + 5583.580966345424, + 5574.626816840813, + 5564.823118784045, + 5554.071951307907, + 5542.276583823593, + 5529.341476020696, + 5515.172277867203, + 5499.675829609504, + 5482.760161772388, + 5464.334495159042, + 5444.309240851053, + 5422.596000208409, + 5399.1075648695, + 5373.7579167510985, + 5346.462228048396, + 5317.136861234981, + 5285.6993690628215, + 5252.068494562318, + 5216.164171042233, + 5177.9075220897585, + 5696.811219207177, + 5689.153948160137, + 5682.372061895378, + 5676.361232797466, + 5671.018323529348, + 5666.241387032383, + 5661.929666526325, + 5657.983595509328, + 5654.304797757934, + 5650.7960873271095, + 5647.361468550191, + 5643.90613603894, + 5640.3364746835005, + 5636.560059652423, + 5632.485656392643, + 5628.023220629527, + 5623.0838983668045, + 5617.580025886637, + 5611.4251297495475, + 5604.533926794503, + 5596.822324138827, + 5588.207419178277, + 5578.60749958698, + 5567.942043317495, + 5556.131718600743, + 5543.098383946074, + 5528.765088141217, + 5513.056070252321, + 5495.896759623921, + 5477.213775878951, + 5456.934928918748, + 5434.989218923039, + 5411.306836349972, + 5385.819161936059, + 5358.4587666962625, + 5329.159411923878, + 5297.856049190672, + 5781.657435224169, + 5770.281704023658, + 5759.928163485204, + 5750.476361120489, + 5741.807034719595, + 5733.802112351, + 5726.3447123615915, + 5719.319143376643, + 5712.610904299831, + 5706.106684313241, + 5699.694362877346, + 5693.2630097310175, + 5686.702884891542, + 5679.905438654586, + 5672.763311594224, + 5665.170334562935, + 5657.021528691587, + 5648.213105389454, + 5638.642466344202, + 5628.208203521907, + 5616.810099167038, + 5604.3491258024615, + 5590.727446229447, + 5575.848413527664, + 5559.616571055173, + 5541.9376524484405, + 5522.718581622338, + 5501.867472770123, + 5479.293630363462, + 5454.907549152426, + 5428.620914165462, + 5400.346600709434, + 5369.99867436961, + 5337.492391009643, + 5302.744196771599, + 5265.671728075924, + 5226.193811621488, + 5767.758066822401, + 5759.338579571807, + 5751.81972225321, + 5745.095232514687, + 5739.060038282729, + 5733.610257762221, + 5728.643199436448, + 5724.057362067098, + 5719.752434694244, + 5715.62929663638, + 5711.590017490375, + 5707.537857131523, + 5703.377265713496, + 5699.01388366838, + 5694.354541706639, + 5689.3072608171715, + 5683.781252267236, + 5677.686917602529, + 5670.935848647102, + 5663.440827503451, + 5655.115826552436, + 5645.8760084533415, + 5635.637726143827, + 5624.3185228399825, + 5611.837132036257, + 5598.113477505536, + 5583.0686732990835, + 5566.625023746567, + 5548.706023456065, + 5529.236357314037, + 5508.14190048535, + 5485.349718413261, + 5460.788066819457, + 5434.3863917039735, + 5406.075329345305, + 5375.786706300282, + 5343.453539404202, + 5857.73314899668, + 5845.629424659155, + 5834.574080553094, + 5824.44436730185, + 5815.118725807182, + 5806.476787249249, + 5798.399373086612, + 5790.768495056225, + 5783.46735517344, + 5776.3803457320155, + 5769.393049304106, + 5762.392238740261, + 5755.265877169448, + 5747.903117998997, + 5740.194304914669, + 5732.030971880622, + 5723.305843139396, + 5713.912833211947, + 5703.747046897616, + 5692.704779274153, + 5680.683515697707, + 5667.5819318028225, + 5653.299893502444, + 5637.738456987919, + 5620.799868728985, + 5602.387565473792, + 5582.406174248868, + 5560.761512359178, + 5537.360587388044, + 5512.111597197216, + 5484.923929926828, + 5455.708163995416, + 5424.37606809992, + 5390.8406012156765, + 5355.015912596428, + 5316.8173417742955, + 5276.161418559835, + 5839.763263207566, + 5830.580953227766, + 5822.325735701408, + 5814.8894135401215, + 5808.164979933908, + 5802.046618351198, + 5796.429702538799, + 5791.210796521935, + 5786.287654604206, + 5781.55922136764, + 5776.925631672637, + 5772.28821065802, + 5767.549473740998, + 5762.613126617174, + 5757.384065260565, + 5751.768375923579, + 5745.673335137028, + 5739.00740971011, + 5731.680256730441, + 5723.602723564017, + 5714.686847855254, + 5704.845857526948, + 5693.994170780311, + 5682.047396094935, + 5668.922332228835, + 5654.5369682183955, + 5638.810483378438, + 5621.663247302144, + 5603.016819861127, + 5582.793951205374, + 5560.918581763296, + 5537.315842241667, + 5511.912053625714, + 5484.6347271789955, + 5455.412564443549, + 5424.175457239725, + 5390.8544876663445, + 5934.6962062498405, + 5921.864708192269, + 5910.108997628357, + 5899.304028293142, + 5889.325944200059, + 5880.05207964094, + 5871.36095918603, + 5863.132297683954, + 5855.247000261743, + 5847.587162324833, + 5840.036069557057, + 5832.478197920641, + 5824.79921365622, + 5816.885973282822, + 5808.626523597874, + 5799.910101677201, + 5790.627134875036, + 5780.669240824003, + 5769.929227435123, + 5758.301092897825, + 5745.680025679935, + 5731.962404527669, + 5717.045798465654, + 5700.828966796914, + 5683.211859102864, + 5664.095615243324, + 5643.382565356519, + 5620.976229859063, + 5596.781319445975, + 5570.703735090678, + 5542.650568044977, + 5512.530099839091, + 5480.251802281641, + 5445.726337459633, + 5408.865557738489, + 5369.5825057620095, + 5327.791414452415, + 5912.823769982938, + 5902.87753264566, + 5893.886067655039, + 5885.739243186212, + 5878.328117692739, + 5871.544939906554, + 5865.28314883802, + 5859.437373775871, + 5853.903434287258, + 5848.578340217721, + 5843.360291691213, + 5838.148679110063, + 5832.844083155033, + 5827.348274785244, + 5821.564215238251, + 5815.396056029984, + 5808.749138954795, + 5801.529996085411, + 5793.646349772978, + 5785.007112647025, + 5775.522387615496, + 5765.1034678647175, + 5753.662836859437, + 5741.114168342779, + 5727.3723263362745, + 5712.353365139867, + 5695.974529331876, + 5678.154253769048, + 5658.812163586501, + 5637.869074197767, + 5615.246991294767, + 5590.869110847847, + 5564.659819105717, + 5536.544692595519, + 5506.450498122764, + 5474.305192771389, + 5440.037923903707, + 6012.542940306789, + 5998.9834658691, + 5986.528403880073, + 5975.050411186419, + 5964.423334913246, + 5954.522212464075, + 5945.223271520815, + 5936.4039300437735, + 5927.942796271662, + 5919.719668721587, + 5911.615536189066, + 5903.512577747998, + 5895.294162750701, + 5886.844850827865, + 5878.050391888605, + 5868.797726120427, + 5858.974983989233, + 5848.4714862393275, + 5837.1777438934105, + 5824.985458252582, + 5811.787520896351, + 5797.47801368261, + 5781.952208747663, + 5765.106568506208, + 5746.8387456513365, + 5727.047583154553, + 5705.633114265749, + 5682.496562513228, + 5657.54034170368, + 5630.668055922203, + 5601.784499532282, + 5570.795657175812, + 5537.608703773093, + 5502.132004522802, + 5464.275114902045, + 5423.948780666299, + 5381.064937849466, + 5986.936615771375, + 5976.224848345757, + 5966.49675053175, + 5957.640255768022, + 5949.544487771658, + 5942.099760538145, + 5935.197578341351, + 5928.730635733563, + 5922.592817545441, + 5916.679198886077, + 5910.886045142934, + 5905.110811981896, + 5899.2521453472345, + 5893.209881461619, + 5886.885046826117, + 5880.1798582202155, + 5872.997722701765, + 5865.243237607057, + 5856.822190550736, + 5847.641559425892, + 5837.6095124039775, + 5826.635407934871, + 5814.629794746826, + 5801.504411846518, + 5787.172188519006, + 5771.547244327756, + 5754.544889114626, + 5736.081622999882, + 5716.075136382189, + 5694.444309938608, + 5671.109214624594, + 5645.991111673997, + 5619.012452599098, + 5590.096879190524, + 5559.169223517372, + 5526.155507927059, + 5490.98294504547, + 6091.269751493248, + 6076.981675938356, + 6063.8278554799235, + 6051.678650076333, + 6040.405609964385, + 6029.8814756592565, + 6019.980177954555, + 6010.576837922247, + 6001.547766912735, + 5992.770466554797, + 5984.123628755628, + 5975.487135700797, + 5966.742059854309, + 5957.77066395853, + 5948.456401034252, + 5938.683914380654, + 5928.339037575318, + 5917.308794474224, + 5905.481399211755, + 5892.746256200678, + 5878.993960132188, + 5864.116295975846, + 5848.006238979646, + 5830.557954669946, + 5811.666798851534, + 5791.22931760758, + 5769.14324729965, + 5745.307514567736, + 5719.622236330198, + 5691.988719783803, + 5662.309462403723, + 5630.4881519435385, + 5596.4296664352005, + 5560.040074189096, + 5521.226633793982, + 5479.897794117031, + 5435.963194303801, + 6062.098896198334, + 6050.6194978509075, + 6040.153883751796, + 6030.588052603201, + 6021.8091933857395, + 6013.705685358419, + 6006.167098058653, + 5999.084191302249, + 5992.348915183406, + 5985.854410074744, + 5979.495006627254, + 5973.1662257703565, + 5966.764778711848, + 5960.188566937936, + 5953.336682213212, + 5946.109406580697, + 5938.408212361777, + 5930.135762156269, + 5921.195908842354, + 5911.493695576647, + 5900.935355794132, + 5889.428313208221, + 5876.881181810701, + 5863.203765871777, + 5848.307059940034, + 5832.103248842475, + 5814.505707684486, + 5795.429001849868, + 5774.7888870008155, + 5752.502309077916, + 5728.487404300159, + 5702.663499164929, + 5674.951110448033, + 5645.271945203634, + 5613.548900764353, + 5579.7060647411445, + 5543.668715023421, + 6170.873107137564, + 6155.855383651348, + 6142.002975602193, + 6129.183946060152, + 6117.267548373699, + 6106.124226169702, + 6095.625613353425, + 6085.644534108535, + 6076.055002897092, + 6066.7322244595625, + 6057.552593814809, + 6048.393696260094, + 6039.134307371085, + 6029.654393001831, + 6019.835109284792, + 6009.55880263084, + 5998.709009729221, + 5987.1704575476015, + 5974.829063332032, + 5961.57193460697, + 5947.287369175275, + 5931.864855118191, + 5915.195070795381, + 5897.169884844899, + 5877.682356183189, + 5856.626734005111, + 5833.898457783902, + 5809.394157271233, + 5783.011652497142, + 5754.649953770078, + 5724.209261676884, + 5691.590967082813, + 5656.69765113151, + 5619.433085245014, + 5579.702231123785, + 5537.411240746648, + 5492.467456370866, + 6138.3077738918755, + 6126.058145686569, + 6114.853633738035, + 6104.578302012002, + 6095.117404752618, + 6086.357386482429, + 6078.185882002368, + 6070.491716391781, + 6063.164905008394, + 6056.096653488364, + 6049.1793577462095, + 6042.306603974879, + 6035.373168645707, + 6028.275018508426, + 6020.909310591164, + 6013.17439220047, + 6004.969800921258, + 5996.1962646168795, + 5986.755701429047, + 5976.551219777908, + 5965.487118361975, + 5953.4688861581935, + 5940.403202421875, + 5926.197936686767, + 5910.762148764976, + 5894.006088747038, + 5875.841197001872, + 5856.180104176809, + 5834.936631197577, + 5812.025789268291, + 5787.363779871475, + 5760.867994768044, + 5732.457015997331, + 5702.050615877035, + 5669.569757003308, + 5634.936592250633, + 5598.07446477196, + 6251.349541570658, + 6235.600701261983, + 6221.049454423759, + 6207.561567237725, + 6195.003996164026, + 6183.2448879412095, + 6172.1535795862155, + 6161.600598394388, + 6151.457661939465, + 6141.59767807359, + 6131.8947449273055, + 6122.224150909544, + 6112.462374707655, + 6102.487085287364, + 6092.177141892812, + 6081.41259404654, + 6070.074681549476, + 6058.045834480965, + 6045.20967319873, + 6031.45100833891, + 6016.655840816038, + 6000.711361823043, + 5983.505952831257, + 5964.929185590408, + 5944.871822128629, + 5923.225814752447, + 5899.884306046786, + 5874.741628874981, + 5847.693306378757, + 5818.636051978234, + 5787.46776937194, + 5754.087552536798, + 5718.3956857281355, + 5680.293643479667, + 5639.684090603525, + 5596.470882190218, + 5550.559063608677, + 6215.560478482661, + 6202.537523380804, + 6190.592233915925, + 6179.6067393172825, + 6169.464359092556, + 6160.049603027821, + 6151.248171187546, + 6142.946953914604, + 6135.034031830257, + 6127.398675834183, + 6119.931347104443, + 6112.523697097511, + 6105.068567548252, + 6097.459990469933, + 6089.593188154209, + 6081.364573171163, + 6072.67174836924, + 6063.413506875322, + 6053.489832094655, + 6042.801897710907, + 6031.252067686137, + 6018.743896260812, + 6005.182127953777, + 5990.47269756231, + 5974.522730162049, + 5957.240541107063, + 5938.535636029801, + 5918.318710841122, + 5896.501651730289, + 5872.997535164945, + 5847.720627891144, + 5820.58638693334, + 5791.511459594392, + 5760.413683455531, + 5727.212086376439, + 5691.826886495128, + 5654.179492228082, + 6332.69565612607, + 6316.21380802677, + 6300.963049124116, + 6286.806848711516, + 6273.6098663608, + 6261.237951922191, + 6249.55814552431, + 6238.43867757417, + 6227.7489687571915, + 6217.359630037193, + 6207.142462656394, + 6196.970458135406, + 6186.7177982732555, + 6176.259855147346, + 6165.4731911134895, + 6154.235558805914, + 6142.42590113722, + 6129.924351298425, + 6116.612232758933, + 6102.372059266561, + 6087.087534847519, + 6070.643553806412, + 6052.9262007262505, + 6033.822750468443, + 6013.221668172788, + 5991.012609257503, + 5967.08641941918, + 5941.335134632836, + 5913.651981151867, + 5883.931375508085, + 5852.068924511676, + 5817.961425251253, + 5781.5068650938165, + 5742.604421684755, + 5701.154462947887, + 5657.0585470853885, + 5610.219422577878, + 6293.854306603951, + 6280.0544294642705, + 6267.365984713522, + 6255.669166844496, + 6244.84536062841, + 6234.777141114853, + 6225.348273631845, + 6216.44371378577, + 6207.94960746144, + 6199.753290822046, + 6191.7432903092, + 6183.809322642889, + 6175.842294821526, + 6167.734304121888, + 6159.378638099188, + 6150.66977458701, + 6141.503381697357, + 6131.7763178206205, + 6121.386631625595, + 6110.233562059468, + 6098.217538347841, + 6085.240179994691, + 6071.2042967824245, + 6056.01388877182, + 6039.574146302066, + 6021.791449990758, + 6002.573370733876, + 5981.8286697058165, + 5959.46729835936, + 5935.400398425685, + 5909.540301914376, + 5881.800531113429, + 5852.095798589218, + 5820.342007186523, + 5786.456250028533, + 5750.356810516823, + 5711.963162331373, + 6414.908119139937, + 6397.690950204819, + 6381.73958388534, + 6366.915192586584, + 6353.08013899206, + 6340.097976063662, + 6327.833447041691, + 6316.152485444841, + 6304.922215070203, + 6294.010949993278, + 6283.288194567964, + 6272.624643426545, + 6261.892181479725, + 6250.963883916582, + 6239.714016204618, + 6228.018034089721, + 6215.7525835961815, + 6202.795501026689, + 6189.0258129623235, + 6174.323736262583, + 6158.570678065349, + 6141.649235786909, + 6123.443197121951, + 6103.837540043551, + 6082.718432803201, + 6059.973233930779, + 6035.4904922345695, + 6009.159946801255, + 5980.872526995914, + 5950.520352462028, + 5917.996733121475, + 5883.1961691745355, + 5846.014351099883, + 5806.348159654592, + 5764.095665874154, + 5719.156131072423, + 5671.4300068416915, + 6373.1866218916175, + 6358.605729470236, + 6345.171253561493, + 6332.761453921711, + 6321.255780585626, + 6310.534873866383, + 6300.480564355503, + 6290.975872922931, + 6281.905010716984, + 6273.153379164406, + 6264.607569970322, + 6256.155365118263, + 6247.685736870159, + 6239.088847766341, + 6230.256050625524, + 6221.079888544851, + 6211.454094899836, + 6201.273593344416, + 6190.434497810897, + 6178.834112510026, + 6166.3709319309055, + 6152.944640841072, + 6138.456114286435, + 6122.807417591327, + 6105.901806358458, + 6087.643726468953, + 6067.938814082326, + 6046.693895636498, + 6023.816987847791, + 5999.217297710914, + 5972.805222498983, + 5944.492349763506, + 5914.191457334419, + 5881.816513320005, + 5847.282676107006, + 5810.506294360508, + 5771.404907024045, + 6497.983665950999, + 6480.028441057851, + 6463.374949892128, + 6447.8820679706, + 6433.409861088439, + 6419.819585319236, + 6406.97368701495, + 6394.735802805962, + 6382.970759601044, + 6371.544574587366, + 6360.324455230503, + 6349.17879927442, + 6337.977194741497, + 6326.590419932497, + 6314.890443426582, + 6302.750424081329, + 6290.044711032702, + 6276.648843695071, + 6262.439551761194, + 6247.294755202238, + 6231.09356426777, + 6213.716279485751, + 6195.044391662544, + 6174.96058188291, + 6153.34872151001, + 6130.093872185404, + 6105.082285829046, + 6078.201404639304, + 6049.339861092934, + 6018.3874779450925, + 5985.235268229332, + 5949.7754352576085, + 5911.90137262028, + 5871.507664186093, + 5828.490084102216, + 5782.745596794186, + 5734.172356965964, + 6453.554854984119, + 6438.188355934562, + 6424.004474893099, + 6410.879536879581, + 6398.691057192282, + 6387.317741407864, + 6376.639485381399, + 6366.537375246342, + 6356.893687414558, + 6347.591888576311, + 6338.51663570027, + 6329.553776033477, + 6320.590347101418, + 6311.514576707929, + 6302.215882935281, + 6292.584874144126, + 6282.51334897353, + 6271.894296340937, + 6260.621895442216, + 6248.591515751607, + 6235.699717021782, + 6221.844249283772, + 6206.92405284705, + 6190.839258299454, + 6173.491186507241, + 6154.782348615065, + 6134.616446045962, + 6112.898370501403, + 6089.534203961223, + 6064.431218683664, + 6037.497877205371, + 6008.643832341408, + 5977.779927185202, + 5944.818195108605, + 5909.67185976186, + 5872.25533507361, + 5832.4842252508915, + 6581.919098900596, + 6563.222660850175, + 6545.865105331769, + 6529.70301097382, + 6514.5941466831855, + 6500.397471645123, + 6486.973135323278, + 6474.182477459704, + 6461.888028074853, + 6449.953507467567, + 6438.243826215101, + 6426.625085173098, + 6414.9645754756175, + 6403.130778535089, + 6390.993366042368, + 6378.423199966698, + 6365.292332555722, + 6351.4740063354875, + 6336.842654110428, + 6321.273898963391, + 6304.6445542556185, + 6286.8326236267485, + 6267.71730099482, + 6247.178970556275, + 6225.099206785945, + 6201.360774437076, + 6175.847628541295, + 6148.444914408649, + 6119.038967627565, + 6087.517314064878, + 6053.768669865823, + 6017.682941454032, + 5979.151225531537, + 5938.065809078767, + 5894.32016935456, + 5847.808973896132, + 5798.428080519128, + 6534.956503522534, + 6518.7993083957235, + 6503.862150144206, + 6490.019419051372, + 6477.146695679023, + 6465.12075086736, + 6453.819545734968, + 6443.122231678857, + 6432.909150374404, + 6423.061833775417, + 6413.463004114076, + 6403.996573900986, + 6394.54764592513, + 6385.002513253902, + 6375.248659233084, + 6365.17475748688, + 6354.67067191786, + 6343.627456707035, + 6331.9373563137615, + 6319.493805475854, + 6306.191429209476, + 6291.92604280923, + 6276.594651848081, + 6260.095452177433, + 6242.327829927047, + 6223.192361505118, + 6202.590813598219, + 6180.426143171336, + 6156.602497467849, + 6131.025214009533, + 6103.600820596566, + 6074.2370353075175, + 6042.8427664993815, + 6009.3281128075105, + 5973.604363145701, + 5935.5839967061065, + 5895.180682959328, + 6666.7112873326605, + 6647.270056848702, + 6629.206075394143, + 6612.373624709109, + 6596.628176812126, + 6581.826394000132, + 6567.826128848457, + 6554.486424210822, + 6541.667513219355, + 6529.230819284587, + 6517.038956095436, + 6504.9557276192345, + 6492.846128101713, + 6480.576342066978, + 6468.013744317558, + 6455.026899934384, + 6441.48556427677, + 6427.260682982439, + 6412.224391967507, + 6396.250017426494, + 6379.212075832321, + 6360.986273936301, + 6341.4495087681535, + 6320.479867635998, + 6297.95662812634, + 6273.760258104103, + 6247.772415712591, + 6219.875949373533, + 6189.954897787028, + 6157.89448993159, + 6123.581145064129, + 6086.902472719957, + 6047.747272712782, + 6006.005535134709, + 5961.568440356256, + 5914.328359026311, + 5864.178852072206, + 6617.38913215051, + 6600.435653394761, + 6584.740847753264, + 6570.177170772935, + 6556.61826827911, + 6543.93897637551, + 6532.015321444276, + 6520.724520145917, + 6509.94497941937, + 6499.556296481952, + 6489.439258829396, + 6479.475844235812, + 6469.549220753741, + 6459.543746714084, + 6449.344970726173, + 6438.839631677728, + 6427.915658734869, + 6416.462171342108, + 6404.369479222375, + 6391.52908237697, + 6377.833671085627, + 6363.177125906446, + 6347.454517675955, + 6330.562107509058, + 6312.39734679907, + 6292.858877217711, + 6271.846530715078, + 6249.261329519707, + 6225.005486138477, + 6198.9824033567265, + 6171.096674238139, + 6141.254082124846, + 6109.361600637332, + 6075.327393674518, + 6039.060815413709, + 6000.472410310603, + 5959.473913099309, + 6752.357167593743, + 6732.167143322953, + 6713.393952271751, + 6695.889579291933, + 6679.507199513711, + 6664.101178345688, + 6649.527071474885, + 6635.641624866686, + 6622.3027747649085, + 6609.369647691744, + 6596.702560447813, + 6584.163020112102, + 6571.613724042032, + 6558.918559873378, + 6545.942605520356, + 6532.552129175562, + 6518.614589309995, + 6503.998634673051, + 6488.574104292529, + 6472.212027474619, + 6454.784623803928, + 6436.165303143436, + 6416.228665634551, + 6394.850501697052, + 6371.907792029142, + 6347.278707607408, + 6320.842609686841, + 6292.480049800839, + 6262.072769761182, + 6229.503701658056, + 6194.656967860049, + 6157.417881014162, + 6117.672944045769, + 6075.309850158655, + 6030.217482835007, + 5982.285915835414, + 5931.40641319885, + 6700.8503725143355, + 6683.09452447537, + 6666.637203161357, + 6651.348929382749, + 6637.101414228411, + 6623.767559065602, + 6611.22145553998, + 6599.338385575602, + 6587.9948213749185, + 6577.068425418798, + 6566.438050466479, + 6555.98373955563, + 6545.586726002301, + 6535.129433400944, + 6524.495475624401, + 6513.56965682394, + 6502.237971429199, + 6490.387604148238, + 6477.906929967493, + 6464.6855141518245, + 6450.6141122444715, + 6435.584670067086, + 6419.490323719708, + 6402.225399580792, + 6383.6854143071705, + 6363.767074834096, + 6342.368278375203, + 6319.388112422544, + 6294.7268547465555, + 6268.28597339608, + 6239.968126698355, + 6209.677163259013, + 6177.318121962108, + 6142.7972319700575, + 6106.021912723724, + 6066.900773942313, + 6025.343615623491, + 6761.925950380548, + 6741.652461401807, + 6722.800279055815, + 6705.221132984348, + 6688.767943107606, + 6673.294819624168, + 6658.657063011035, + 6644.711164023584, + 6631.314803695604, + 6618.326853339283, + 6605.607374545202, + 6593.0176191823475, + 6580.420029398112, + 6567.678237618261, + 6554.657066546987, + 6541.222529166871, + 6527.241828738893, + 6512.583358802436, + 6497.116703175269, + 6480.712635953579, + 6463.243121511939, + 6444.58131450333, + 6424.601559859124, + 6403.179392789099, + 6380.191538781427, + 6355.515913602684, + 6329.0316232978375, + 6300.61896419027, + 6270.159422881744, + 6237.535676252438, + 6202.631591460915, + 6165.332225944143, + 6125.523827417496, + 6083.093833874736, + 6037.930873588039, + 5989.924765107959, + 5938.966517263477, + 6710.187245078006, + 6692.341847530283, + 6675.799480036497, + 6660.430448436204, + 6646.106248847385, + 6632.6995676663955, + 6620.084281568016, + 6608.135457505398, + 6596.729352710123, + 6585.743414692142, + 6575.056281239835, + 6564.5477804199445, + 6554.098930577657, + 6543.591940336512, + 6532.910208598486, + 6521.93832454393, + 6510.5620676316175, + 6498.668407598694, + 6486.145504460721, + 6472.882708511653, + 6458.770560323857, + 6443.7007907480765, + 6427.566320913477, + 6410.261262227606, + 6391.680916376417, + 6371.721775324267, + 6350.281521313905, + 6327.2590268664935, + 6302.554354781569, + 6276.068758137081, + 6247.704680289379, + 6217.365754873229, + 6184.95680580175, + 6150.383847266514, + 6113.554083737451, + 6074.375909962917, + 6032.75891096965, + 10091.757620032953, + 10041.347560178941, + 9994.379580812694, + 9950.628848632108, + 9909.87172061348, + 9871.885744011503, + 9836.449656359282, + 9803.343385468323, + 9772.348049428498, + 9743.24595660812, + 9715.820605653871, + 9689.856685490862, + 9665.140075322575, + 9641.457844630891, + 9618.598253176115, + 9596.350750996939, + 9574.505978410447, + 9552.855766012126, + 9531.193134675868, + 9509.312295553957, + 9487.008650077087, + 9464.078789954336, + 9440.320497173187, + 9415.532743999533, + 9389.515692977657, + 9362.07069693023, + 9333.00029895835, + 9302.108232441486, + 9269.199421037536, + 9234.07997868275, + 9196.557209591829, + 9156.439608257846, + 9113.536859452286, + 9067.659838225016, + 9018.62060990431, + 8966.232430096848, + 8910.309744687718, + 10072.670109101788, + 10021.184522825179, + 9973.031536241406, + 9928.01696397455, + 9885.947810927144, + 9846.632272280083, + 9809.879733492697, + 9775.500770302684, + 9743.307148726139, + 9713.111825057591, + 9684.728945869934, + 9657.973848014484, + 9632.663058620927, + 9608.614295097379, + 9585.646465130343, + 9563.579666684733, + 9542.235188003822, + 9521.43550760934, + 9501.00429430138, + 9480.766407158428, + 9460.547895537391, + 9440.175999073575, + 9419.47914768067, + 9398.286961550772, + 9376.43025115438, + 9353.741017240374, + 9330.052450836076, + 9305.198933247164, + 9279.016036057734, + 9251.340521130265, + 9222.01034060566, + 9190.86463690322, + 9157.743742720617, + 9122.489181033943, + 9084.943665097693, + 9044.951098444755, + 9002.356574886415 + ], + "input_power": [ + 2965.187816, + 3007.0537257283945, + 3050.445218469136, + 3095.3622942222223, + 3141.804952987654, + 3189.7731947654324, + 3239.2670195555556, + 3290.2864273580244, + 3342.8314181728397, + 3396.901992, + 3452.4981488395074, + 3509.6198886913585, + 3568.267211555555, + 3628.4401174320974, + 3690.1386063209875, + 3753.362678222222, + 3818.112333135802, + 3884.3875710617276, + 3952.188391999999, + 4021.514795950618, + 4092.366782913581, + 4164.744352888888, + 4238.6475058765445, + 4314.0762418765435, + 4391.030560888888, + 4469.510462913581, + 4549.515947950617, + 4631.0470159999995, + 4714.10366706173, + 4798.685901135803, + 4884.79371822222, + 4972.4271183209885, + 5061.586101432098, + 5152.270667555558, + 5244.480816691357, + 5338.216548839506, + 5433.477863999998, + 3166.5105320000002, + 3212.1668701728386, + 3259.3487913580248, + 3308.056295555555, + 3358.2893827654316, + 3410.0480529876545, + 3463.332306222222, + 3518.1421424691353, + 3574.4775617283954, + 3632.3385639999997, + 3691.7251492839514, + 3752.6373175802473, + 3815.075068888889, + 3879.0384032098755, + 3944.5273205432104, + 4011.5418208888877, + 4080.081904246914, + 4150.147570617283, + 4221.738819999999, + 4294.855652395063, + 4369.4980678024685, + 4445.666066222221, + 4523.359647654322, + 4602.5788120987645, + 4683.323559555555, + 4765.593890024692, + 4849.389803506172, + 4934.711299999999, + 5021.558379506173, + 5109.931042024692, + 5199.829287555554, + 5291.2531160987655, + 5384.202527654322, + 5478.677522222223, + 5574.678099802469, + 5672.204260395061, + 5771.256003999998, + 2964.567062810001, + 3006.397151382839, + 3049.752822968026, + 3094.634077565556, + 3141.0409151754316, + 3188.973335797655, + 3238.431339432223, + 3289.414926079135, + 3341.9240957383963, + 3395.95884841, + 3451.519184093952, + 3508.605102790248, + 3567.2166044988894, + 3627.353689219876, + 3689.0163569532106, + 3752.204607698889, + 3816.918441456914, + 3883.1578582272846, + 3950.9228580100007, + 4020.213440805063, + 4091.0296066124693, + 4163.371355432222, + 4237.238687264323, + 4312.631602108766, + 4389.550099965556, + 4467.994180834693, + 4547.963844716173, + 4629.45909161, + 4712.479921516176, + 4797.026334434692, + 4883.098330365555, + 4970.695909308767, + 5059.819071264322, + 5150.467816232224, + 5242.64214421247, + 5336.342055205062, + 5431.56754921, + 3165.987508610001, + 3211.6002154939506, + 3258.7385053902476, + 3307.4023782988893, + 3357.591834219876, + 3409.306873153211, + 3462.547495098889, + 3517.313700056913, + 3573.605488027285, + 3631.4228590099997, + 3690.7658130050627, + 3751.63435001247, + 3814.0284700322222, + 3877.9481730643197, + 3943.393459108765, + 4010.3643281655554, + 4078.8607802346924, + 4148.882815316173, + 4220.430433409999, + 4293.503634516174, + 4368.102418634691, + 4444.226785765554, + 4521.876735908768, + 4601.052269064322, + 4681.753385232222, + 4763.98008441247, + 4847.732366605061, + 4933.010231809999, + 5019.813680027285, + 5108.1427112569145, + 5197.997325498887, + 5289.37752275321, + 5382.283303019877, + 5476.71466629889, + 5572.671612590247, + 5670.1541418939505, + 5769.162254209998, + 2958.9959989999998, + 3000.503697172839, + 3043.536978358025, + 3088.095842555556, + 3134.180289765431, + 3181.7903199876546, + 3230.9259332222223, + 3281.5871294691356, + 3333.7739087283962, + 3387.4862709999998, + 3442.724216283951, + 3499.4877445802485, + 3557.7768558888893, + 3617.5915502098755, + 3678.931827543211, + 3741.797687888889, + 3806.189131246915, + 3872.106157617285, + 3939.5487669999998, + 4008.516959395063, + 4079.01073480247, + 4151.030093222222, + 4224.575034654322, + 4299.645559098765, + 4376.241666555554, + 4454.363357024693, + 4534.010630506173, + 4615.183486999999, + 4697.881926506174, + 4782.105949024692, + 4867.855554555554, + 4955.130743098767, + 5043.931514654321, + 5134.257869222224, + 5226.109806802469, + 5319.4873273950625, + 5414.390430999997, + 3161.2960130000006, + 3206.51603828395, + 3253.2616465802475, + 3301.532837888889, + 3351.329612209876, + 3402.65196954321, + 3455.4999098888893, + 3509.873433246913, + 3565.772539617284, + 3623.197229, + 3682.1475013950626, + 3742.6233568024695, + 3804.6247952222234, + 3868.1518166543206, + 3933.2044210987656, + 3999.7826085555557, + 4067.8863790246933, + 4137.515732506174, + 4208.670668999999, + 4281.351188506174, + 4355.557291024692, + 4431.288976555555, + 4508.546245098767, + 4587.329096654321, + 4667.637531222221, + 4749.47154880247, + 4832.831149395062, + 4917.716332999999, + 5004.127099617285, + 5092.063449246913, + 5181.525381888889, + 5272.512897543212, + 5365.025996209876, + 5459.06467788889, + 5554.628942580248, + 5651.71879028395, + 5750.334220999997, + 2953.453222010001, + 2994.6385297828397, + 3037.349420568025, + 3081.585894365556, + 3127.3479511754313, + 3174.635590997655, + 3223.4488138322226, + 3273.787619679136, + 3325.6520085383954, + 3379.04198041, + 3433.957535293952, + 3490.398673190248, + 3548.3653940988897, + 3607.8576980198764, + 3668.875584953211, + 3731.4190548988886, + 3795.488107856915, + 3861.0827438272845, + 3928.20296281, + 3996.8487648050623, + 4067.020149812471, + 4138.717117832223, + 4211.939668864322, + 4286.687802908766, + 4362.9615199655545, + 4440.760820034693, + 4520.085703116173, + 4600.93616921, + 4683.312218316175, + 4767.213850434691, + 4852.6410655655545, + 4939.593863708768, + 5028.072244864322, + 5118.076209032225, + 5209.605756212471, + 5302.660886405062, + 5397.241599609998, + 3156.6328042100004, + 3201.4601478939508, + 3247.813074590248, + 3295.6915842988888, + 3345.0956770198763, + 3396.0253527532113, + 3448.480611498889, + 3502.461453256913, + 3557.967878027285, + 3614.9998858100003, + 3673.5574766050636, + 3733.64065041247, + 3795.2494072322224, + 3858.3837470643207, + 3923.043669908766, + 3989.229175765556, + 4056.940264634693, + 4126.1769365161745, + 4196.93919141, + 4269.227029316175, + 4343.040450234692, + 4418.379454165555, + 4495.244041108767, + 4573.634211064321, + 4653.549964032222, + 4734.991300012471, + 4817.958219005061, + 4902.450721009999, + 4988.468806027285, + 5076.0124740569145, + 5165.0817250988885, + 5255.67655915321, + 5347.796976219876, + 5441.442976298891, + 5536.614559390247, + 5633.311725493951, + 5731.534474609998, + 2947.938731840001, + 2988.80164921284, + 3031.190149598024, + 3075.1042329955562, + 3120.5438994054316, + 3167.5091488276544, + 3215.9999812622223, + 3266.016396709136, + 3317.5583951683952, + 3370.62597664, + 3425.2191411239514, + 3481.337888620248, + 3538.9822191288895, + 3598.1521326498764, + 3658.8476291832117, + 3721.068708728888, + 3784.8153712869143, + 3850.087616857284, + 3916.88544544, + 3985.208857035063, + 4055.057851642469, + 4126.432429262221, + 4199.332589894322, + 4273.758333538765, + 4349.709660195554, + 4427.1865698646925, + 4506.189062546174, + 4586.71713824, + 4668.770796946174, + 4752.350038664692, + 4837.4548633955565, + 4924.085271138766, + 5012.241261894321, + 5101.922835662225, + 5193.12999244247, + 5285.862732235063, + 5380.121055039998, + 3151.9978822400003, + 3196.4325443239504, + 3242.392789420248, + 3289.8786175288897, + 3338.8900286498765, + 3389.42702278321, + 3441.4895999288897, + 3495.0777600869133, + 3550.1915032572847, + 3606.830829440001, + 3664.9957386350634, + 3724.6862308424697, + 3785.9023060622226, + 3848.64396429432, + 3912.9112055387664, + 3978.7040297955555, + 4046.022437064693, + 4114.866427346174, + 4185.2360006399995, + 4257.131156946173, + 4330.551896264692, + 4405.498218595556, + 4481.970123938767, + 4559.967612294321, + 4639.490683662221, + 4720.53933804247, + 4803.113575435062, + 4887.21339584, + 4972.838799257284, + 5059.989785686915, + 5148.6663551288875, + 5238.868507583211, + 5330.596243049876, + 5423.84956152889, + 5518.628463020247, + 5614.932947523951, + 5712.763015039998, + 2942.4525284900005, + 2982.993055462839, + 3025.0591654480254, + 3068.650858445556, + 3113.768134455431, + 3160.4109934776543, + 3208.5794355122225, + 3258.2734605591363, + 3309.4930686183952, + 3362.2382596899997, + 3416.509033773951, + 3472.305390870248, + 3529.627330978889, + 3588.4748540998753, + 3648.8479602332104, + 3710.7466493788884, + 3774.170921536915, + 3839.120776707284, + 3905.59621489, + 3973.5972360850624, + 4043.123840292471, + 4114.176027512222, + 4186.753797744322, + 4260.857150988766, + 4336.486087245555, + 4413.640606514693, + 4492.320708796173, + 4572.5263940899995, + 4654.257662396175, + 4737.514513714691, + 4822.296948045556, + 4908.604965388767, + 4996.438565744322, + 5085.797749112224, + 5176.68251549247, + 5269.092864885063, + 5363.028797289999, + 3147.3912470900004, + 3191.4332275739503, + 3237.0007910702475, + 3284.0939375788885, + 3332.7126670998755, + 3382.85697963321, + 3434.5268751788885, + 3487.722353736913, + 3542.4434153072843, + 3598.69005989, + 3656.462287485063, + 3715.7600980924694, + 3776.583491712222, + 3838.932468344319, + 3902.8070279887656, + 3968.207170645555, + 4035.1328963146925, + 4103.584204996173, + 4173.561096689999, + 4245.063571396174, + 4318.091629114691, + 4392.645269845556, + 4468.7244935887675, + 4546.3293003443205, + 4625.459690112221, + 4706.115662892469, + 4788.297218685061, + 4872.00435749, + 4957.237079307285, + 5043.995384136913, + 5132.279271978888, + 5222.088742833211, + 5313.423796699876, + 5406.28443357889, + 5500.670653470247, + 5596.582456373951, + 5694.019842289998, + 2936.9946119600013, + 2977.21274853284, + 3018.956468118025, + 3062.2257707155563, + 3107.020656325432, + 3153.3411249476553, + 3201.1871765822225, + 3250.5588112291366, + 3301.456028888396, + 3353.87882956, + 3407.827213243952, + 3463.3011799402475, + 3520.300729648889, + 3578.8258623698757, + 3638.8765781032102, + 3700.452876848888, + 3763.554758606914, + 3828.1822233772846, + 3894.3352711600005, + 3962.0139019550634, + 4031.218115762471, + 4101.947912582223, + 4174.203292414323, + 4247.984255258766, + 4323.290801115555, + 4400.122929984692, + 4478.480641866174, + 4558.36393676, + 4639.772814666175, + 4722.707275584693, + 4807.167319515555, + 4893.152946458766, + 4980.664156414321, + 5069.700949382223, + 5160.26332536247, + 5252.351284355063, + 5345.964826359999, + 3142.8128987600003, + 3186.4621976439507, + 3231.6370795402477, + 3278.3375444488893, + 3326.5635923698765, + 3376.3152233032106, + 3427.592437248889, + 3480.3952342069138, + 3534.7236141772855, + 3590.57757716, + 3647.957123155063, + 3706.8622521624707, + 3767.292964182223, + 3829.24925921432, + 3892.731137258767, + 3957.7385983155546, + 4024.2716423846937, + 4092.3302694661734, + 4161.9144795600005, + 4233.0242726661745, + 4305.659648784693, + 4379.820607915556, + 4455.5071500587665, + 4532.719275214321, + 4611.4569833822225, + 4691.72027456247, + 4773.509148755063, + 4856.8236059599985, + 4941.663646177286, + 5028.029269406914, + 5115.920475648888, + 5205.337264903211, + 5296.279637169877, + 5388.747592448891, + 5482.741130740248, + 5578.2602520439505, + 5675.304956359999, + 2934.577106146823, + 2974.6519079478217, + 3016.252292761167, + 3059.3782605868587, + 3104.0298114248935, + 3150.206945275277, + 3197.9096621380045, + 3247.1379620130774, + 3297.891844900498, + 3350.1713108002614, + 3403.9763597123742, + 3459.3069916368304, + 3516.163206573632, + 3574.545004522777, + 3634.452385484272, + 3695.8853494581112, + 3758.843896444296, + 3823.328026442827, + 3889.337739453702, + 3956.8730354769255, + 4025.933914512492, + 4096.520376560404, + 4168.632421620664, + 4242.2700496932675, + 4317.433260778217, + 4394.1220548755155, + 4472.336431985154, + 4552.076392107142, + 4633.341935241477, + 4716.133061388155, + 4800.449770547177, + 4886.292062718548, + 4973.659937902263, + 5062.553396098327, + 5152.972437306731, + 5244.917061527484, + 5338.38726876058, + 3140.7864489685426, + 3184.261161613133, + 3229.2614572700704, + 3275.787335939351, + 3323.8387976209788, + 3373.415842314953, + 3424.5184700212712, + 3477.1466807399347, + 3531.300474470947, + 3586.9798512143016, + 3644.1848109700045, + 3702.9153537380516, + 3763.1714795184444, + 3824.9531883111827, + 3888.2604801162684, + 3953.093354933697, + 4019.451812763474, + 4087.3358536055953, + 4156.745477460062, + 4227.680684326875, + 4300.141474206033, + 4374.127847097537, + 4449.63980300139, + 4526.677341917582, + 4605.240463846123, + 4685.329168787011, + 4766.943456740244, + 4850.083327705822, + 4934.7487816837465, + 5020.939818674016, + 5108.6564386766295, + 5197.898641691592, + 5288.666427718898, + 5380.959796758552, + 5474.778748810549, + 5570.123283874892, + 5666.993401951581, + 2931.56498225, + 2971.4607284228396, + 3012.8820576080257, + 3055.828969805556, + 3100.3014650154314, + 3146.2995432376547, + 3193.823204472222, + 3242.8724487191357, + 3293.4472759783953, + 3345.5476862500004, + 3399.173679533952, + 3454.3252558302474, + 3511.002415138889, + 3569.2051574598754, + 3628.9334827932103, + 3690.1873911388884, + 3752.966882496915, + 3817.271956867284, + 3883.10261425, + 3950.458854645063, + 4019.3406780524697, + 4089.7480844722213, + 4161.681073904322, + 4235.139646348765, + 4310.123801805556, + 4386.633540274693, + 4464.668861756173, + 4544.229766249999, + 4625.316253756173, + 4707.9283242746915, + 4792.065977805555, + 4877.729214348767, + 4964.9180339043205, + 5053.632436472224, + 5143.87242205247, + 5235.637990645063, + 5328.929142249998, + 3138.2628372500003, + 3181.5194545339505, + 3226.3016548302476, + 3272.609438138889, + 3320.4428044598762, + 3369.8017537932105, + 3420.6862861388895, + 3473.0964014969136, + 3527.032099867285, + 3582.4933812500003, + 3639.480245645063, + 3697.99269305247, + 3758.0307234722222, + 3819.5943369043202, + 3882.6835333487656, + 3947.298312805555, + 4013.438675274692, + 4081.1046207561726, + 4150.29614925, + 4221.0132607561745, + 4293.255955274692, + 4367.024232805555, + 4442.3180933487665, + 4519.137536904322, + 4597.482563472221, + 4677.35317305247, + 4758.749365645062, + 4841.671141249998, + 4926.118499867285, + 5012.091441496915, + 5099.589966138887, + 5188.614073793211, + 5279.163764459876, + 5371.2390381388905, + 5464.839894830248, + 5559.966334533951, + 5656.618357249998, + 2926.16363936, + 2965.736995132839, + 3006.8359339180247, + 3049.4604557155562, + 3093.6105605254315, + 3139.286248347654, + 3186.4875191822225, + 3235.2143730291355, + 3285.466809888396, + 3337.2448297599994, + 3390.5484326439514, + 3445.3776185402467, + 3501.732387448889, + 3559.6127393698753, + 3619.01867430321, + 3679.9501922488885, + 3742.407293206915, + 3806.389977177283, + 3871.8982441599987, + 3938.9320941550623, + 4007.49152716247, + 4077.5765431822215, + 4149.187142214322, + 4222.323324258765, + 4296.985089315555, + 4373.172437384692, + 4450.885368466173, + 4530.12388256, + 4610.887979666175, + 4693.177659784691, + 4776.992922915554, + 4862.333769058767, + 4949.200198214322, + 5037.592210382225, + 5127.509805562471, + 5218.952983755062, + 5311.921744959998, + 3133.7410625600005, + 3176.60499824395, + 3220.994516940247, + 3266.909618648889, + 3314.3503033698757, + 3363.31657110321, + 3413.808421848889, + 3465.825855606913, + 3519.3688723772843, + 3574.4374721599993, + 3631.0316549550616, + 3689.1514207624696, + 3748.7967695822226, + 3809.9677014143203, + 3872.6642162587655, + 3936.8863141155543, + 4002.6339949846924, + 4069.9072588661734, + 4138.7061057599985, + 4209.030535666175, + 4280.880548584692, + 4354.256144515555, + 4429.157323458767, + 4505.58408541432, + 4583.536430382222, + 4663.0143583624695, + 4744.0178693550615, + 4826.54696336, + 4910.601640377286, + 4996.181900406914, + 5083.287743448888, + 5171.9191695032105, + 5262.076178569878, + 5353.75877064889, + 5446.966945740248, + 5541.700703843951, + 5637.960044959999, + 2920.7905832900005, + 2960.0415486628394, + 3000.8180970480257, + 3043.1202284455558, + 3086.947942855432, + 3132.3012402776553, + 3179.1801207122226, + 3227.5845841591354, + 3277.5146306183956, + 3328.97026009, + 3381.9514725739523, + 3436.458268070248, + 3492.490646578889, + 3550.0486080998758, + 3609.132152633211, + 3669.741280178889, + 3731.8759907369144, + 3795.536284307284, + 3860.7221608900004, + 3927.4336204850624, + 3995.6706630924696, + 4065.4332887122227, + 4136.7214973443215, + 4209.535288988766, + 4283.874663645555, + 4359.739621314692, + 4437.130161996172, + 4516.04628569, + 4596.487992396174, + 4678.455282114691, + 4761.948154845554, + 4846.966610588767, + 4933.510649344321, + 5021.580271112224, + 5111.17547589247, + 5202.2962636850625, + 5294.942634489999, + 3129.247574690001, + 3171.71882877395, + 3215.715665870247, + 3261.238085978889, + 3308.286089099876, + 3356.8596752332096, + 3406.9588443788884, + 3458.583596536913, + 3511.7339317072847, + 3566.4098498899994, + 3622.6113510850623, + 3680.33843529247, + 3739.5911025122223, + 3800.36935274432, + 3862.6731859887664, + 3926.5026022455545, + 3991.857601514693, + 4058.738183796174, + 4127.144349089999, + 4197.076097396174, + 4268.533428714692, + 4341.516343045555, + 4416.024840388767, + 4492.058920744321, + 4569.618584112221, + 4648.70383049247, + 4729.314659885061, + 4811.4510722899995, + 4895.113067707286, + 4980.300646136914, + 5067.013807578887, + 5155.25255203321, + 5245.016879499876, + 5336.30678997889, + 5429.1222834702485, + 5523.463359973951, + 5619.330019489998, + 2915.44581404, + 2954.3743890128394, + 2994.828546998025, + 3036.808287995556, + 3080.3136120054314, + 3125.3445190276548, + 3171.9010090622232, + 3219.9830821091355, + 3269.590738168396, + 3320.72397724, + 3373.3827993239515, + 3427.5672044202474, + 3483.277192528889, + 3540.5127636498764, + 3599.2739177832104, + 3659.5606549288887, + 3721.372975086915, + 3784.7108782572836, + 3849.57436444, + 3915.9634336350637, + 3983.8780858424707, + 4053.318321062222, + 4124.284139294323, + 4196.775540538766, + 4270.7925247955545, + 4346.335092064693, + 4423.403242346174, + 4501.99697564, + 4582.116291946176, + 4663.761191264693, + 4746.931673595555, + 4831.627738938767, + 4917.849387294322, + 5005.5966186622245, + 5094.8694330424705, + 5185.667830435063, + 5277.99181084, + 3124.7823736400005, + 3166.8609461239507, + 3210.4651016202474, + 3255.594840128889, + 3302.250161649876, + 3350.43106618321, + 3400.1375537288895, + 3451.3696242869128, + 3504.1272778572848, + 3558.41051444, + 3614.2193340350623, + 3671.5537366424696, + 3730.413722262223, + 3790.7992908943206, + 3852.7104425387665, + 3916.147177195555, + 3981.1094948646924, + 4047.597395546173, + 4115.610879239999, + 4185.149945946174, + 4256.214595664693, + 4328.804828395555, + 4402.920644138767, + 4478.562042894321, + 4555.729024662222, + 4634.4215894424715, + 4714.639737235062, + 4796.3834680400005, + 4879.652781857285, + 4964.4476786869145, + 5050.7681585288865, + 5138.614221383211, + 5227.985867249878, + 5318.883096128891, + 5411.305908020248, + 5505.254302923951, + 5600.728280839999, + 2910.12933161, + 2948.7355161828395, + 2988.8672837680256, + 3030.524634365556, + 3073.707567975432, + 3118.416084597655, + 3164.6501842322223, + 3212.4098668791357, + 3261.695132538395, + 3312.5059812100003, + 3364.8424128939523, + 3418.704427590247, + 3474.092025298889, + 3531.0052060198764, + 3589.44396975321, + 3649.4083164988892, + 3710.8982462569147, + 3773.913759027285, + 3838.4548548099992, + 3904.521533605063, + 3972.11379541247, + 4041.2316402322226, + 4111.875068064322, + 4184.044078908766, + 4257.738672765555, + 4332.958849634692, + 4409.704609516173, + 4487.975952409998, + 4567.772878316174, + 4649.095387234693, + 4731.943479165556, + 4816.317154108766, + 4902.21641206432, + 4989.641253032226, + 5078.5916770124695, + 5169.067684005062, + 5261.0692740099985, + 3120.3454594100003, + 3162.0313502939507, + 3205.242824190247, + 3249.9798810988887, + 3296.2425210198767, + 3344.0307439532103, + 3393.3445498988885, + 3444.183938856913, + 3496.5489108272845, + 3550.439465810001, + 3605.8556038050624, + 3662.7973248124695, + 3721.2646288322217, + 3781.2575158643203, + 3842.775985908766, + 3905.8200389655553, + 3970.389675034692, + 4036.4848941161736, + 4104.105696209998, + 4173.252081316173, + 4243.924049434692, + 4316.121600565555, + 4389.844734708766, + 4465.093451864322, + 4541.867752032222, + 4620.16763521247, + 4699.993101405062, + 4781.344150609999, + 4864.220782827285, + 4948.622998056914, + 5034.550796298888, + 5122.00417755321, + 5210.983141819876, + 5301.487689098892, + 5393.5178193902475, + 5487.073532693951, + 5582.154829009998, + 2904.8411360000005, + 2943.1249301728394, + 2982.934307358025, + 3024.2692675555563, + 3067.1298107654316, + 3111.515936987655, + 3157.427646222222, + 3204.8649384691353, + 3253.827813728396, + 3304.3162720000005, + 3356.3303132839515, + 3409.8699375802466, + 3464.93514488889, + 3521.525935209876, + 3579.64230854321, + 3639.2842648888886, + 3700.4518042469144, + 3763.144926617285, + 3827.3636320000005, + 3893.107920395064, + 3960.37779180247, + 4029.173246222222, + 4099.494283654322, + 4171.340904098765, + 4244.713107555556, + 4319.610894024693, + 4396.0342635061725, + 4473.9832160000005, + 4553.457751506175, + 4634.457870024692, + 4716.9835715555555, + 4801.034856098768, + 4886.6117236543205, + 4973.714174222225, + 5062.34220780247, + 5152.4958243950605, + 5244.175023999999, + 3115.936832000001, + 3157.2300412839504, + 3200.0488335802474, + 3244.3932088888896, + 3290.2631672098755, + 3337.65870854321, + 3386.579832888888, + 3437.0265402469126, + 3488.998830617285, + 3542.496704, + 3597.5201603950622, + 3654.0691998024695, + 3712.1438222222223, + 3771.7440276543207, + 3832.8698160987656, + 3895.5211875555556, + 3959.6981420246934, + 4025.400679506173, + 4092.6288, + 4161.3825035061745, + 4231.661790024692, + 4303.466659555555, + 4376.797112098767, + 4451.653147654321, + 4528.034766222221, + 4605.94196780247, + 4685.374752395062, + 4766.333119999999, + 4848.817070617285, + 4932.826604246912, + 5018.361720888888, + 5105.422420543211, + 5194.008703209877, + 5284.120568888891, + 5375.758017580248, + 5468.921049283951, + 5563.609663999999, + 2899.58122721, + 2937.5426309828395, + 2977.029617768025, + 3018.0421875655557, + 3060.5803403754317, + 3104.644076197654, + 3150.2333950322227, + 3197.3482968791363, + 3245.9887817383965, + 3296.1548496100004, + 3347.8465004939517, + 3401.063734390248, + 3455.8065512988887, + 3512.0749512198768, + 3569.8689341532113, + 3629.1885000988887, + 3690.0336490569143, + 3752.404381027285, + 3816.3006960099997, + 3881.722594005062, + 3948.670075012471, + 4017.1431390322223, + 4087.141786064322, + 4158.666016108766, + 4231.715829165555, + 4306.291225234692, + 4382.392204316174, + 4460.018766409999, + 4539.170911516174, + 4619.848639634692, + 4702.0519507655545, + 4785.780844908766, + 4871.035322064321, + 4957.815382232225, + 5046.12102541247, + 5135.952251605061, + 5227.309060809999, + 3111.5564914100005, + 3152.4570190939503, + 3194.883129790248, + 3238.834823498889, + 3284.312100219877, + 3331.3149599532107, + 3379.8434026988884, + 3429.8974284569135, + 3481.4770372272847, + 3534.582229010001, + 3589.2130038050627, + 3645.36936161247, + 3703.051302432222, + 3762.2588262643203, + 3822.9919331087667, + 3885.2506229655546, + 3949.0348958346926, + 4014.344751716173, + 4081.1801906099995, + 4149.541212516175, + 4219.427817434692, + 4290.840005365554, + 4363.777776308765, + 4438.241130264321, + 4514.230067232222, + 4591.74458721247, + 4670.784690205062, + 4751.35037621, + 4833.441645227284, + 4917.058497256914, + 5002.200932298887, + 5088.868950353211, + 5177.062551419876, + 5266.781735498892, + 5358.026502590247, + 5450.79685269395, + 5545.0927858099985, + 2894.3496052400005, + 2931.988618612839, + 2971.153214998025, + 3011.8433943955565, + 3054.059156805431, + 3097.8005022276548, + 3143.0674306622227, + 3189.8599421091353, + 3238.1780365683953, + 3288.021714039999, + 3339.3909745239507, + 3392.2858180202475, + 3446.7062445288893, + 3502.652254049876, + 3560.1238465832107, + 3619.121022128888, + 3679.643780686915, + 3741.692122257284, + 3805.2660468400004, + 3870.365554435062, + 3936.99064504247, + 4005.141318662222, + 4074.817575294322, + 4146.019414938766, + 4218.746837595554, + 4292.999843264692, + 4368.778431946172, + 4446.0826036399985, + 4524.912358346174, + 4605.267696064691, + 4687.1486167955545, + 4770.555120538766, + 4855.487207294322, + 4941.944877062224, + 5029.928129842469, + 5119.436965635062, + 5210.471384439999, + 3107.20443764, + 3147.7122837239503, + 3189.7457128202477, + 3233.304724928889, + 3278.389320049875, + 3324.99949818321, + 3373.135259328888, + 3422.7966034869128, + 3473.983530657285, + 3526.69604084, + 3580.934134035062, + 3636.6978102424696, + 3693.9870694622223, + 3752.8019116943196, + 3813.1423369387658, + 3875.008345195555, + 3938.399936464692, + 4003.317110746174, + 4069.759868039999, + 4137.728208346174, + 4207.222131664692, + 4278.241637995556, + 4350.7867273387665, + 4424.85739969432, + 4500.453655062221, + 4577.57549344247, + 4656.222914835062, + 4736.39591924, + 4818.094506657284, + 4901.318677086914, + 4986.068430528889, + 5072.34376698321, + 5160.144686449877, + 5249.471188928889, + 5340.323274420248, + 5432.7009429239515, + 5526.6041944399985, + 2889.1462700899997, + 2926.4628930628396, + 2965.3050990480256, + 3005.6728880455557, + 3047.5662600554315, + 3090.985215077655, + 3135.9297531122234, + 3182.3998741591354, + 3230.3955782183957, + 3279.9168652900007, + 3330.963735373952, + 3383.5361884702484, + 3437.6342245788883, + 3493.257843699876, + 3550.4070458332103, + 3609.0818309788897, + 3669.282199136915, + 3731.0081503072843, + 3794.2596844900004, + 3859.036801685063, + 3925.33950189247, + 3993.167785112222, + 4062.521651344322, + 4133.401100588766, + 4205.806132845556, + 4279.736748114693, + 4355.192946396173, + 4432.17472769, + 4510.682091996176, + 4590.715039314692, + 4672.273569645556, + 4755.357682988768, + 4839.967379344321, + 4926.102658712224, + 5013.763521092469, + 5102.949966485063, + 5193.661994889999, + 3102.8806706900004, + 3142.9958351739506, + 3184.636582670248, + 3227.802913178889, + 3272.4948266998767, + 3318.71232323321, + 3366.4554027788895, + 3415.7240653369126, + 3466.5183109072846, + 3518.838139490001, + 3572.683551085063, + 3628.05454569247, + 3684.9511233122225, + 3743.3732839443205, + 3803.3210275887664, + 3864.794354245555, + 3927.7932639146925, + 3992.317756596173, + 4058.36783229, + 4125.943490996175, + 4195.044732714693, + 4265.671557445556, + 4337.823965188766, + 4411.501955944322, + 4486.7055297122215, + 4563.434686492469, + 4641.689426285062, + 4721.46974909, + 4802.775654907286, + 4885.607143736915, + 4969.964215578889, + 5055.846870433211, + 5143.255108299877, + 5232.18892917889, + 5322.648333070248, + 5414.633319973952, + 5508.143889889999, + 2883.971221760001, + 2920.9654543328393, + 2959.485269918026, + 2999.5306685155565, + 3041.1016501254317, + 3084.198214747655, + 3128.8203623822224, + 3174.968093029135, + 3222.641406688396, + 3271.84030336, + 3322.564783043951, + 3374.814845740247, + 3428.590491448889, + 3483.8917201698764, + 3540.7185319032096, + 3599.0709266488884, + 3658.9489044069146, + 3720.352465177284, + 3783.28160896, + 3847.736335755063, + 3913.716645562471, + 3981.222538382222, + 4050.254014214322, + 4120.811073058765, + 4192.893714915555, + 4266.501939784693, + 4341.6357476661715, + 4418.295138559999, + 4496.480112466175, + 4576.190669384692, + 4657.426809315554, + 4740.188532258767, + 4824.475838214322, + 4910.288727182224, + 4997.627199162469, + 5086.491254155062, + 5176.880892159998, + 3098.5851905600007, + 3138.3076734439505, + 3179.5557393402482, + 3222.329388248889, + 3266.6286201698763, + 3312.4534351032107, + 3359.80383304889, + 3408.679814006913, + 3459.081377977284, + 3511.0085249600006, + 3564.461254955063, + 3619.4395679624695, + 3675.9434639822225, + 3733.9729430143193, + 3793.528005058766, + 3854.608650115555, + 3917.2148781846927, + 3981.3466892661722, + 4047.004083359999, + 4114.1870604661735, + 4182.895620584692, + 4253.129763715555, + 4324.889489858766, + 4398.174799014321, + 4472.985691182222, + 4549.32216636247, + 4627.1842245550615, + 4706.571865759999, + 4787.485089977285, + 4869.923897206913, + 4953.888287448888, + 5039.378260703212, + 5126.393816969877, + 5214.93495624889, + 5305.001678540247, + 5396.593983843952, + 5489.711872159998, + 2878.824460250001, + 2915.4963024228396, + 2953.693727608025, + 2993.416735805556, + 3034.665327015431, + 3077.439501237655, + 3121.7392584722224, + 3167.564598719135, + 3214.9155219783956, + 3263.7920282499995, + 3314.1941175339516, + 3366.1217898302475, + 3419.575045138889, + 3474.5538834598756, + 3531.0583047932105, + 3589.088309138889, + 3648.6438964969143, + 3709.7250668672837, + 3772.331820249999, + 3836.4641566450623, + 3902.1220760524698, + 3969.3055784722224, + 4038.0146639043223, + 4108.249332348765, + 4180.009583805555, + 4253.295418274692, + 4328.1068357561735, + 4404.44383625, + 4482.306419756174, + 4561.6945862746925, + 4642.608335805555, + 4725.047668348767, + 4809.012583904321, + 4894.503082472225, + 4981.51916405247, + 5070.0608286450615, + 5160.128076249997, + 3094.3179972500006, + 3133.6477985339498, + 3174.5031828302476, + 3216.884150138889, + 3260.790700459876, + 3306.2228337932097, + 3353.180550138889, + 3401.6638494969125, + 3451.6727318672847, + 3503.2071972500003, + 3556.2672456450623, + 3610.8528770524695, + 3666.9640914722218, + 3724.6008889043196, + 3783.763269348766, + 3844.451232805555, + 3906.664779274693, + 3970.4039087561728, + 4035.6686212500003, + 4102.4589167561735, + 4170.774795274692, + 4240.616256805556, + 4311.983301348766, + 4384.87592890432, + 4459.294139472222, + 4535.237933052469, + 4612.707309645062, + 4691.7022692499995, + 4772.222811867286, + 4854.268937496914, + 4937.840646138888, + 5022.937937793211, + 5109.560812459877, + 5197.709270138889, + 5287.383310830248, + 5378.582934533952, + 5471.308141249999, + 2873.705985560001, + 2910.05543733284, + 2947.9304721180265, + 2987.3310899155563, + 3028.257290725431, + 3070.7090745476553, + 3114.6864413822227, + 3160.1893912291353, + 3207.217924088396, + 3255.7720399600003, + 3305.851738843952, + 3357.457020740247, + 3410.587885648889, + 3465.2443335698754, + 3521.42636450321, + 3579.1339784488887, + 3638.3671754069155, + 3699.1259553772843, + 3761.4103183599996, + 3825.2202643550627, + 3890.55579336247, + 3957.416905382222, + 4025.8036004143223, + 4095.7158784587664, + 4167.153739515556, + 4240.117183584693, + 4314.606210666173, + 4390.62082076, + 4468.1610138661745, + 4547.226789984692, + 4627.818149115555, + 4709.935091258766, + 4793.577616414322, + 4878.745724582224, + 4965.43941576247, + 5053.658689955062, + 5143.403547159999, + 3090.079090760001, + 3129.0162104439505, + 3169.478913140248, + 3211.467198848889, + 3254.981067569876, + 3300.020519303211, + 3346.585554048889, + 3394.6761718069133, + 3444.2923725772853, + 3495.43415636, + 3548.101523155062, + 3602.2944729624696, + 3658.013005782222, + 3715.25712161432, + 3774.026820458767, + 3834.322102315555, + 3896.1429671846927, + 3959.489415066173, + 4024.3614459599994, + 4090.7590598661745, + 4158.682256784692, + 4228.131036715556, + 4299.105399658766, + 4371.605345614321, + 4445.630874582222, + 4521.181986562469, + 4598.258681555061, + 4676.860959559999, + 4756.988820577285, + 4838.642264606913, + 4921.821291648887, + 5006.5259017032095, + 5092.756094769877, + 5180.51187084889, + 5269.793229940246, + 5360.600172043951, + 5452.932697159998, + 2868.6157976900013, + 2904.6428590628393, + 2942.195503448026, + 2981.273730845556, + 3021.877541255432, + 3064.0069346776554, + 3107.661911112223, + 3152.842470559136, + 3199.5486130183963, + 3247.7803384899994, + 3297.537646973952, + 3348.8205384702483, + 3401.62901297889, + 3455.963070499876, + 3511.822711033211, + 3569.2079345788893, + 3628.118741136916, + 3688.5551307072847, + 3750.5171032900003, + 3814.004658885063, + 3879.01779749247, + 3945.5565191122214, + 4013.620823744323, + 4083.210711388765, + 4154.3261820455555, + 4226.967235714692, + 4301.133872396174, + 4376.82609209, + 4454.043894796175, + 4532.787280514692, + 4613.056249245555, + 4694.850800988767, + 4778.1709357443215, + 4863.016653512224, + 4949.3879542924715, + 5037.284838085062, + 5126.707304889999, + 3085.8684710900006, + 3124.4129091739505, + 3164.482930270248, + 3206.0785343788893, + 3249.199721499876, + 3293.8464916332114, + 3340.0188447788887, + 3387.716780936913, + 3436.9403001072847, + 3487.6894022899996, + 3539.964087485063, + 3593.7643556924695, + 3649.0902069122217, + 3705.9416411443203, + 3764.3186583887664, + 3824.2212586455553, + 3885.6494419146934, + 3948.6032081961735, + 4013.082557489999, + 4079.087489796174, + 4146.618005114693, + 4215.674103445555, + 4286.255784788767, + 4358.363049144321, + 4431.995896512222, + 4507.15432689247, + 4583.838340285062, + 4662.047936690001, + 4741.783116107285, + 4823.043878536915, + 4905.830223978888, + 4990.14215243321, + 5075.979663899878, + 5163.34275837889, + 5252.231435870246, + 5342.645696373951, + 5434.5855398899985, + 2863.55389664, + 2899.258567612839, + 2936.488821598025, + 2975.244658595556, + 3015.5260786054305, + 3057.3330816276552, + 3100.6656676622215, + 3145.5238367091347, + 3191.9075887683953, + 3239.8169238399996, + 3289.2518419239514, + 3340.212343020247, + 3392.698427128888, + 3446.710094249876, + 3502.247344383211, + 3559.3101775288874, + 3617.898593686914, + 3678.012592857284, + 3739.6521750399993, + 3802.8173402350626, + 3867.5080884424688, + 3933.7244196622214, + 4001.466333894322, + 4070.733831138765, + 4141.5269113955555, + 4213.845574664692, + 4287.689820946172, + 4363.0596502399985, + 4439.955062546174, + 4518.376057864691, + 4598.322636195555, + 4679.794797538767, + 4762.7925418943205, + 4847.315869262224, + 4933.364779642469, + 5020.939273035062, + 5110.039349439999, + 3081.6861382399998, + 3119.8378947239503, + 3159.5152342202473, + 3200.718156728889, + 3243.4466622498753, + 3287.7007507832104, + 3333.480422328889, + 3380.7856768869133, + 3429.6165144572838, + 3479.97293504, + 3531.854938635063, + 3585.2625252424687, + 3640.1956948622214, + 3696.65444749432, + 3754.638783138766, + 3814.1487017955546, + 3875.184203464692, + 3937.7452881461722, + 4001.8319558399994, + 4067.444206546174, + 4134.582040264693, + 4203.245456995555, + 4273.434456738766, + 4345.14903949432, + 4418.3892052622205, + 4493.154954042469, + 4569.446285835061, + 4647.263200639998, + 4726.605698457285, + 4807.473779286914, + 4889.867443128887, + 4973.786689983211, + 5059.231519849876, + 5146.20193272889, + 5234.697928620248, + 5324.71950752395, + 5416.266669439998, + 2858.52028241, + 2893.9025629828398, + 2930.810426568026, + 2969.243873165556, + 3009.2029027754315, + 3050.6875153976553, + 3093.6977110322227, + 3138.2334896791353, + 3184.2948513383967, + 3231.8817960100005, + 3280.9943236939516, + 3331.6324343902475, + 3383.7961280988893, + 3437.485404819875, + 3492.7002645532107, + 3549.4407072988884, + 3607.7067330569153, + 3667.4983418272845, + 3728.8155336100003, + 3791.658308405063, + 3856.02666621247, + 3921.920607032223, + 3989.340130864322, + 4058.285237708766, + 4128.755927565555, + 4200.752200434692, + 4274.274056316173, + 4349.32149521, + 4425.894517116174, + 4503.993122034691, + 4583.617309965554, + 4664.767080908766, + 4747.442434864321, + 4831.643371832225, + 4917.36989181247, + 5004.621994805063, + 5093.39968081, + 3077.5320922100004, + 3115.2911670939507, + 3154.5758249902474, + 3195.386065898889, + 3237.7218898198757, + 3281.583296753211, + 3326.9702866988887, + 3373.8828596569133, + 3422.321015627285, + 3472.2847546099997, + 3523.7740766050624, + 3576.78898161247, + 3631.3294696322228, + 3687.39554066432, + 3744.9871947087663, + 3804.104431765555, + 3864.747251834692, + 3926.9156549161744, + 3990.609641009999, + 4055.829210116174, + 4122.574362234692, + 4190.845097365556, + 4260.641415508767, + 4331.963316664322, + 4404.8108008322215, + 4479.18386801247, + 4555.082518205061, + 4632.506751409999, + 4711.456567627286, + 4791.931966856913, + 4873.932949098889, + 4957.459514353211, + 5042.511662619877, + 5129.089393898891, + 5217.192708190247, + 5306.82160549395, + 5397.976085809999, + 2853.5149550000006, + 2888.57484517284, + 2925.160318358026, + 2963.271374555557, + 3002.9080137654314, + 3044.070235987655, + 3086.7580412222233, + 3130.971429469136, + 3176.710400728396, + 3223.974955000001, + 3272.7650922839516, + 3323.0808125802473, + 3374.92211588889, + 3428.2890022098763, + 3483.1814715432106, + 3539.599523888889, + 3597.5431592469154, + 3657.012377617285, + 3718.0071790000006, + 3780.5275633950637, + 3844.5735308024705, + 3910.1450812222233, + 3977.2422146543227, + 4045.864931098766, + 4116.013230555555, + 4187.687113024692, + 4260.8865785061735, + 4335.611627, + 4411.862258506175, + 4489.638473024693, + 4568.940270555554, + 4649.767651098767, + 4732.120614654322, + 4815.999161222225, + 4901.403290802471, + 4988.3330033950615, + 5076.788298999999, + 3073.4063330000004, + 3110.7727262839508, + 3149.664702580248, + 3190.08226188889, + 3232.0254042098763, + 3275.4941295432104, + 3320.488437888889, + 3367.0083292469135, + 3415.0538036172843, + 3464.6248610000002, + 3515.7215013950636, + 3568.34372480247, + 3622.491531222223, + 3678.1649206543207, + 3735.363893098766, + 3794.088448555556, + 3854.338587024693, + 3916.1143085061726, + 3979.415613, + 4044.242500506174, + 4110.594971024692, + 4178.473024555557, + 4247.876661098767, + 4318.805880654321, + 4391.260683222222, + 4465.24106880247, + 4540.747037395062, + 4617.7785890000005, + 4696.335723617286, + 4776.418441246913, + 4858.026741888888, + 4941.160625543211, + 5025.820092209877, + 5112.005141888891, + 5199.715774580248, + 5288.95199028395, + 5379.7137889999985, + 2848.5379144100007, + 2883.275414182839, + 2919.5384969680254, + 2957.327162765556, + 2996.641411575431, + 3037.4812433976545, + 3079.846658232223, + 3123.737656079136, + 3169.1542369383965, + 3216.096400809999, + 3264.564147693951, + 3314.557477590247, + 3366.076390498889, + 3419.1208864198757, + 3473.6909653532093, + 3529.786627298889, + 3587.407872256914, + 3646.5547002272842, + 3707.2271112099993, + 3769.425105205063, + 3833.148682212469, + 3898.397842232222, + 3965.172585264322, + 4033.472911308765, + 4103.298820365555, + 4174.650312434692, + 4247.527387516173, + 4321.930045609999, + 4397.858286716174, + 4475.312110834691, + 4554.291517965554, + 4634.796508108765, + 4716.827081264322, + 4800.383237432224, + 4885.4649766124685, + 4972.072298805062, + 5060.205204009998, + 3069.308860609999, + 3106.28257229395, + 3144.7818669902476, + 3184.806744698889, + 3226.357205419876, + 3269.4332491532105, + 3314.034875898889, + 3360.1620856569125, + 3407.814878427284, + 3456.99325421, + 3507.697213005062, + 3559.9267548124685, + 3613.681879632222, + 3668.96258746432, + 3725.7688783087656, + 3784.1007521655542, + 3843.9582090346926, + 3905.3412489161724, + 3968.2498718099996, + 4032.6840777161738, + 4098.643866634692, + 4166.129238565554, + 4235.140193508766, + 4305.67673146432, + 4377.738852432221, + 4451.3265564124695, + 4526.439843405061, + 4603.078713409999, + 4681.243166427284, + 4760.933202456913, + 4842.148821498888, + 4924.89002355321, + 5009.156808619876, + 5094.9491766988895, + 5182.267127790246, + 5271.110661893949, + 5361.479779009997, + 2847.986655559134, + 2882.68833414776, + 2918.9155957487337, + 2956.668440362051, + 2995.9468679877154, + 3036.7508786257254, + 3079.080472276081, + 3122.9356489387815, + 3168.3164086138295, + 3215.2227513012217, + 3263.65467700096, + 3313.6121857130433, + 3365.095277437473, + 3418.1039521742464, + 3472.6382099233692, + 3528.6980506848345, + 3586.283474458649, + 3645.3944812448053, + 3706.031071043308, + 3768.1932438541594, + 3831.8809996773534, + 3897.0943385128935, + 3963.833260360781, + 4032.0977652210113, + 4101.887853093589, + 4173.203523978514, + 4246.044777875782, + 4320.411614785396, + 4396.3040347073575, + 4473.7220376416635, + 4552.665623588315, + 4633.134792547314, + 4715.129544518655, + 4798.649879502345, + 4883.695797498379, + 4970.2672985067575, + 5058.364382527483, + 3068.8553316373172, + 3105.7854119974736, + 3144.2410753699764, + 3184.2223217548244, + 3225.729151152018, + 3268.7615635615584, + 3313.319558983442, + 3359.403137417672, + 3407.0122988642497, + 3456.147043323171, + 3506.807370794441, + 3558.993281278054, + 3612.7047747740116, + 3667.941851282316, + 3724.704510802968, + 3782.9927533359632, + 3842.806578881308, + 3904.1459874389943, + 3967.0109790090255, + 4031.4015535914064, + 4097.3177111861305, + 4164.7594517932, + 4233.726775412617, + 4304.219682044378, + 4376.238171688485, + 4449.782244344938, + 4524.851900013737, + 4601.447138694881, + 4679.567960388373, + 4759.214365094207, + 4840.3863528123875, + 4923.083923542918, + 5007.307077285787, + 5093.055814041009, + 5180.330133808571, + 5269.13003658848, + 5359.455522380735, + 2698.376416, + 2722.3317479506172, + 2747.812662913581, + 2774.8191608888897, + 2803.351241876543, + 2833.408905876544, + 2864.9921528888894, + 2898.10098291358, + 2932.735395950618, + 2968.8953920000004, + 3006.580971061729, + 3045.7921331358034, + 3086.528878222223, + 3128.7912063209874, + 3172.5791174321002, + 3217.892611555555, + 3264.7316886913595, + 3313.0963488395064, + 3362.9865920000007, + 3414.402418172842, + 3467.3438273580264, + 3521.810819555556, + 3577.803394765433, + 3635.3215529876547, + 3694.365294222223, + 3754.934618469137, + 3817.029525728395, + 3880.6500160000005, + 3945.796089283953, + 4012.4677455802475, + 4080.6649848888883, + 4150.387807209878, + 4221.636212543211, + 4294.410200888891, + 4368.709772246914, + 4444.534926617284, + 4521.885663999999, + 2948.564032, + 2972.404725728395, + 2997.771002469137, + 3024.6628622222224, + 3053.0803049876545, + 3083.0233307654325, + 3114.491939555556, + 3147.4861313580245, + 3182.0059061728393, + 3218.0512640000006, + 3255.6222048395075, + 3294.7187286913595, + 3335.3408355555557, + 3377.488525432099, + 3421.1617983209876, + 3466.360654222222, + 3513.085093135803, + 3561.3351150617286, + 3611.11072, + 3662.411907950618, + 3715.238678913581, + 3769.5910328888885, + 3825.4689698765437, + 3882.8724898765436, + 3941.801592888889, + 4002.2562789135814, + 4064.2365479506184, + 4127.742400000001, + 4192.77383506173, + 4259.3308531358025, + 4327.413454222223, + 4397.021638320989, + 4468.155405432098, + 4540.814755555557, + 4614.99968869136, + 4690.710204839506, + 4767.946303999998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 3.4888619387061306, + "volume": 0.757082 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC60A_C_MP.json b/examples/NyleC60A_C_MP.json new file mode 100644 index 0000000..890d9bf --- /dev/null +++ b/examples/NyleC60A_C_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0008201721666666667, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 12240.00000132, + 11989.99999929, + 11699.99999802, + 11390.00000109, + 11249.999997320001, + 10900.000000650001, + 16509.99999996, + 16110.000001479999, + 15629.99999971, + 15110.00000136, + 14349.99999915, + 13890.0000009, + 21759.99999834, + 21330.000002160003, + 20549.999999, + 19780.000000800002, + 18489.99999644, + 17769.9999972, + 24530.00000195, + 24120.00000072, + 23039.99999841, + 21670.00000282, + 19520.000001610002, + 18409.99999905 + ], + "input_power": [ + 3640.0, + 4110.0, + 4860.0, + 5970.0, + 8680.0, + 9950.0, + 3720.0, + 4270.0, + 4990.0, + 6030.0, + 8550.0, + 10020.0, + 3980.0, + 4530.0, + 5240.0, + 6240.0, + 8540.0, + 9550.0, + 4450.0, + 4680.0, + 5370.0, + 6340.0, + 8590.0, + 9550.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 5.162564063345445, + "volume": 1.3627476 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC60A_C_SP.json b/examples/NyleC60A_C_SP.json new file mode 100644 index 0000000..9309f4d --- /dev/null +++ b/examples/NyleC60A_C_SP.json @@ -0,0 +1,7285 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 333.15, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 10815.817793367205, + 10796.900399090082, + 10780.845314533486, + 10767.14985281289, + 10755.287390908665, + 10744.707369666148, + 10734.83529379556, + 10725.072731872053, + 10714.797316335718, + 10703.362743491552, + 10690.098773509486, + 10674.311230424357, + 10655.282002135938, + 10632.269040408924, + 10604.506360872932, + 10571.204043022499, + 10531.548230217079, + 10484.701129681056, + 10429.801012503742, + 10365.96221363936, + 10292.275131907063, + 10207.806229990916, + 10111.598034439923, + 10002.669135668004, + 9880.01418795399, + 9742.60390944164, + 9589.38508213966, + 9419.280551921642, + 9231.189228526116, + 9023.986085556548, + 8796.522160481309, + 8547.624554633683, + 8276.096433211917, + 7980.717025279123, + 7660.2416237633915, + 7313.401585457704, + 6938.904331019979, + 10767.072364031137, + 10759.100716796564, + 10753.37200350533, + 10749.412731802122, + 10746.725473196524, + 10744.788863063073, + 10743.057600641203, + 10740.962449035285, + 10737.91023521461, + 10733.283850013382, + 10726.442248130745, + 10716.720448130747, + 10703.429532442377, + 10685.85664735953, + 10663.265003041035, + 10634.893873510631, + 10599.958596656994, + 10557.650574233721, + 10507.137271859317, + 10447.562219017225, + 10378.045009055799, + 10297.681299188327, + 10205.542810493018, + 10100.677327912992, + 9982.1087002563, + 9848.836840195912, + 9699.837724269735, + 9534.063392880575, + 9350.441950296172, + 9147.877564649196, + 8925.250467937238, + 8681.416956022782, + 8415.209388633282, + 8125.4361893610785, + 7810.881845663451, + 7470.306908862604, + 7102.447994145662, + 10718.718880343198, + 10733.49554723809, + 10749.640129993135, + 10766.731686405585, + 10784.325338137616, + 10801.952270716334, + 10819.119733533753, + 10835.311039846814, + 10849.98556677739, + 10862.578755312266, + 10872.50211030316, + 10879.143200466695, + 10881.865658384435, + 10880.009180502862, + 10872.889527133375, + 10859.798522452294, + 10840.004054500869, + 10812.750075185273, + 10777.256600276593, + 10732.719709410847, + 10678.311546088966, + 10613.180317676814, + 10536.450295405173, + 10447.221814369757, + 10344.571273531175, + 10227.551135714986, + 10095.189927611662, + 9946.4922397766, + 9780.438726630111, + 9595.98610645745, + 9392.067161408768, + 9167.590737499144, + 8921.441744608599, + 8652.48115648204, + 8359.546010729353, + 8041.449408825305, + 7696.980516109572, + 10927.674586842264, + 10907.859501897112, + 10891.016988995965, + 10876.640881685564, + 10864.201077377598, + 10853.143537348673, + 10842.890286740301, + 10832.839414558937, + 10822.36507367595, + 10810.817480827629, + 10797.522916615197, + 10781.78372550478, + 10762.87831582744, + 10740.061159779165, + 10712.56279342086, + 10679.58981667835, + 10640.32489334238, + 10593.926751068628, + 10539.530181377691, + 10476.246039655083, + 10403.161245151243, + 10319.338780981534, + 10223.81769412625, + 10115.613095430595, + 9993.716159604686, + 9857.094125223583, + 9704.690294727281, + 9535.42403442065, + 9348.190774473518, + 9141.862008920642, + 8915.28529566168, + 8667.28425646121, + 8396.658576948761, + 8102.184006618745, + 7782.6123588305345, + 7436.671510808407, + 7063.065403641561, + 10879.189879710184, + 10870.285273510675, + 10863.727928290173, + 10859.041052974173, + 10855.723920353079, + 10853.251867082243, + 10851.076293681916, + 10848.624664537287, + 10845.300507898448, + 10840.483415880433, + 10833.529044463197, + 10823.769113491604, + 10810.511406675449, + 10793.039771589458, + 10770.614119673259, + 10742.47042623141, + 10707.82073043342, + 10665.85313531368, + 10615.73180777152, + 10556.596978571188, + 10487.564942341867, + 10407.728057577657, + 10316.154746637569, + 10211.889495745558, + 10093.952854990475, + 9961.34143832611, + 9813.02792357119, + 9647.96105240933, + 9465.06563038909, + 9263.242526923952, + 9041.368675292319, + 8798.297072637495, + 8532.856779967746, + 8243.852922156237, + 7930.06668794105, + 7590.25532992521, + 7223.152164576656, + 10830.48776574848, + 10844.246914131185, + 10859.466838702305, + 10875.723624069069, + 10892.569418703592, + 10909.532434942957, + 10926.116948989127, + 10941.803300909021, + 10956.047894634452, + 10968.283197962184, + 10977.917742553884, + 10984.336123936138, + 10986.899001500475, + 10984.94309850333, + 10977.781202066071, + 10964.702163174972, + 10944.970896681249, + 10917.828381301033, + 10882.49165961537, + 10838.153838070244, + 10783.984086976541, + 10719.127640510083, + 10642.705796711634, + 10553.815917486838, + 10451.531428606286, + 10334.901819705492, + 10202.952644284886, + 10054.685519709827, + 9889.078127210592, + 9705.084211882382, + 9501.633582685321, + 9277.632112444448, + 9031.961737849744, + 8763.480459456086, + 8471.022341683296, + 8153.3975128161155, + 7809.392165004204, + 11095.740650232583, + 11074.549694968868, + 11056.497645193782, + 11041.07311510102, + 11027.740782749202, + 11015.941390061867, + 11005.091742827464, + 10994.584710699379, + 10983.789227195917, + 10972.050289700308, + 10958.688959460696, + 10943.002361590155, + 10924.263685066677, + 10901.722182733192, + 10874.60317129753, + 10842.108031332442, + 10803.414207275633, + 10757.675207429702, + 10704.020603962175, + 10641.556032905512, + 10569.36319415708, + 10486.49985147918, + 10391.999832499037, + 10284.873028708793, + 10164.105395465504, + 10028.65895199116, + 9877.471781372684, + 9709.45803056189, + 9523.507910375545, + 9318.48769549533, + 9093.239724467845, + 8846.5823997046, + 8577.31018748206, + 8284.193617941568, + 7965.979285089434, + 7621.389846796877, + 7249.12402480002, + 11047.572807238166, + 11037.239504593766, + 11029.410960646976, + 11023.605436244494, + 11019.31725609797, + 11016.016808783965, + 11013.150546743958, + 11010.140986284352, + 11006.386707576476, + 11001.262354656574, + 10994.118635425832, + 10984.282321650333, + 10971.056248961093, + 10953.719316854062, + 10931.526488690095, + 10903.708791694979, + 10869.473316959422, + 10828.003219439055, + 10778.457717954434, + 10719.97209519102, + 10651.657697699226, + 10572.601935894365, + 10481.868284056687, + 10378.496280331354, + 10261.501526728445, + 10129.875689122979, + 9982.586497254899, + 9818.57774472904, + 9636.769289015187, + 9436.057051448051, + 9215.313017227254, + 8973.385235417325, + 8709.097818947752, + 8421.250944612908, + 8108.620853072124, + 7769.95984884963, + 7403.996300334591, + 10998.241270087592, + 11010.445584848645, + 11024.251085826018, + 11039.229397841862, + 11054.928209583253, + 11070.871273602206, + 11086.558406315635, + 11101.465488005379, + 11115.044462818218, + 11126.723338765836, + 11135.906187724851, + 11141.973145436792, + 11144.280411508124, + 11142.160249410223, + 11134.920986479397, + 11121.847013916866, + 11102.198786788787, + 11075.212824026232, + 11040.101708425185, + 10996.054086646564, + 10942.234669216212, + 10877.78423052489, + 10801.819608828282, + 10713.433706246999, + 10611.695488766558, + 10495.64998623742, + 10364.318292374954, + 10216.697564759465, + 10051.761024836158, + 9868.457957915189, + 9665.713713171617, + 9442.429703645425, + 9197.483406241538, + 8929.728361729758, + 8637.994174744867, + 8321.086513786537, + 7977.787111219366, + 11264.178228254805, + 11241.575618090688, + 11222.279374811165, + 11205.77289325686, + 11191.515632133323, + 11178.94311401103, + 11167.466925325369, + 11156.474716376668, + 11145.330201330149, + 11133.373158215985, + 11119.919428929263, + 11104.260919229982, + 11085.665598743075, + 11063.377500958397, + 11036.616723230714, + 11004.579426779726, + 10966.437836690067, + 10921.340241911263, + 10868.410995257782, + 10806.750513409004, + 10735.435276909255, + 10653.51783016776, + 10560.026781458673, + 10453.966802921073, + 10334.31863055896, + 10200.039064241253, + 10050.060967701806, + 9883.293268539375, + 9698.620958217649, + 9494.90509206526, + 9270.982789275735, + 9025.667232907515, + 8757.74766988401, + 8465.989410993485, + 8149.1338308892, + 7805.898368089296, + 7434.976524976837, + 11216.236423046696, + 11204.438727342718, + 11195.304496653052, + 11188.347043745636, + 11183.05574525334, + 11178.896041673945, + 11175.309437370144, + 11171.713500569575, + 11167.501863364787, + 11162.044221713244, + 11154.686335437355, + 11144.750028224424, + 11131.533187626697, + 11114.30976506134, + 11092.329775810436, + 11064.81929902099, + 11030.980477704934, + 10989.991518739127, + 10941.006692865341, + 10883.156334690264, + 10815.546842685528, + 10737.260679187671, + 10647.356370398162, + 10544.868506383393, + 10428.807741074663, + 10298.16079226821, + 10151.890441625199, + 9988.9355346717, + 9808.210980798705, + 9608.607753262164, + 9388.992889182906, + 9148.209489546689, + 8885.076719204222, + 8598.389806871106, + 8286.9200451279, + 7949.4147904200345, + 7584.5974630579185, + 11166.144515344538, + 11176.759135933886, + 11189.116696210045, + 11202.784361210115, + 11217.305359836111, + 11232.198984854984, + 11246.960592898595, + 11261.06160446372, + 11273.949503912087, + 11285.047839470315, + 11293.75622322996, + 11299.450331147496, + 11301.48190304433, + 11299.178742606782, + 11291.844717386097, + 11278.759758798438, + 11259.179862124894, + 11232.337086511487, + 11197.439554969147, + 11153.671454373725, + 11100.19303546601, + 11036.14061285169, + 10960.62656500141, + 10872.739334250711, + 10771.543426800055, + 10656.079412714842, + 10525.363925925378, + 10378.389664226914, + 10214.125389279603, + 10031.515926608525, + 9829.4821656037, + 9606.92105952004, + 9362.7056254774, + 9095.684944460552, + 8804.684161319194, + 8488.504484767946, + 8145.923187386359, + 11433.02626974975, + 11408.975563776165, + 11388.399814034456, + 11370.777196012185, + 11355.561949061826, + 11342.184376400803, + 11330.05084511143, + 11318.543786140957, + 11307.021694301571, + 11294.81912827036, + 11281.246710589348, + 11265.591127665473, + 11247.115129770598, + 11225.057531041513, + 11198.633209479929, + 11167.033106952476, + 11129.424229190707, + 11084.949645791097, + 11032.728490215053, + 10971.85595978889, + 10901.403315703854, + 10820.417883016122, + 10727.923050646761, + 10622.918271381814, + 10504.379061872192, + 10371.257002633754, + 10222.479738047301, + 10056.950976358516, + 9873.550489678018, + 9671.13411398138, + 9448.53374910906, + 9204.557358766433, + 8937.988970523851, + 8647.588675816507, + 8332.092629944598, + 7990.213052073197, + 7620.638225232312, + 11385.217692208556, + 11371.919246435378, + 11361.44418059134, + 11353.30085936562, + 11346.973711312274, + 11341.923228850328, + 11337.585968263707, + 11333.37454970126, + 11328.677657176759, + 11322.860038568891, + 11315.262505621295, + 11305.201933942486, + 11291.971263005948, + 11274.839496150054, + 11253.051700578118, + 11225.82900735836, + 11192.368611423952, + 11151.843771572956, + 11103.403810468373, + 11046.174114638123, + 10979.256134475052, + 10901.727384236921, + 10812.641442046426, + 10711.027949891182, + 10595.892613623702, + 10466.217202961458, + 10320.959551486832, + 10159.053556647114, + 9979.409179754528, + 9780.912445986234, + 9562.425444384296, + 9322.786327855687, + 9060.809313172349, + 8775.284680971088, + 8464.978775753694, + 8128.6340058868345, + 7764.968843602119, + 11334.230895809633, + 11343.220293960454, + 11354.095728711178, + 11366.41990531385, + 11379.731592885417, + 11393.54562440778, + 11407.352896727733, + 11420.620370557006, + 11432.79107047225, + 11443.28408491504, + 11451.49456619187, + 11456.793730474157, + 11458.528857798241, + 11456.02329206538, + 11448.576441041778, + 11435.463776358516, + 11415.936833511654, + 11389.223211862125, + 11354.526574635813, + 11311.026648923513, + 11257.879225680948, + 11194.216159728754, + 11119.145369752514, + 11031.750838302709, + 10931.092611794744, + 10816.206800508957, + 10686.1055785906, + 10539.77718404986, + 10376.18591876183, + 10194.272148466547, + 9992.952302768945, + 9771.118875138896, + 9527.640422911198, + 9261.361567285549, + 8971.1029933266, + 8655.661449963914, + 8313.809749991971, + 11602.323913016244, + 11576.788013996895, + 11554.896788508024, + 11536.123192684123, + 11519.916246524608, + 11505.701033893823, + 11492.878702521042, + 11480.826464000444, + 11468.897593791125, + 11456.421431217135, + 11442.703379467423, + 11427.024905595863, + 11408.643540521252, + 11386.792879027318, + 11360.6825797627, + 11329.498365240966, + 11292.40202184061, + 11248.531399805037, + 11197.000413242587, + 11136.89904012651, + 11067.29332229499, + 10987.225365451133, + 10895.713339162954, + 10791.75147686342, + 10674.310075850372, + 10542.335497286618, + 10394.750166199876, + 10230.452571482772, + 10048.317265892876, + 9847.194866052674, + 9625.912052449567, + 9383.27156943587, + 9118.05222522886, + 8829.008891910671, + 8514.87250542843, + 8174.35006559415, + 7806.124636084771, + 11554.553769254544, + 11539.717556007621, + 11527.86584620279, + 11518.502056450438, + 11511.10566722586, + 11505.132222869302, + 11500.013331585902, + 11495.156665445737, + 11489.945960383799, + 11483.741016200007, + 11475.877696559204, + 11465.667928991157, + 11452.399704890542, + 11435.337079516972, + 11413.720171994984, + 11386.765165314016, + 11353.664306328468, + 11313.585905757618, + 11265.67433818569, + 11209.050042061828, + 11142.8095197001, + 11066.0253372795, + 10977.746124843936, + 10876.996576302243, + 10762.777449428171, + 10634.065565860401, + 10489.81381110255, + 10328.951134523113, + 10150.382549355554, + 9952.989132698243, + 9735.628025514477, + 9497.132432632452, + 9236.31162274532, + 8951.95092841113, + 8642.811746052876, + 8307.631535958451, + 7945.123822280698, + 11502.533995231217, + 11509.861974959924, + 11519.220431644228, + 11530.167610751107, + 11542.237821612454, + 11554.941437425108, + 11567.764895250808, + 11580.170696016228, + 11591.59740451295, + 11601.459649397488, + 11609.148123191288, + 11614.0295822807, + 11615.44684691701, + 11612.718801216428, + 11605.140393160074, + 11591.982634593993, + 11572.492601229165, + 11545.893432641491, + 11511.38433227177, + 11468.140567425742, + 11415.313469274088, + 11352.030432852373, + 11277.394917061123, + 11190.486444665756, + 11090.360602296627, + 10976.049040449, + 10846.559473483087, + 10700.875679624007, + 10537.957500961793, + 10356.740843451422, + 10156.137676912775, + 9935.036035030655, + 9692.300015354811, + 9426.769779299879, + 9137.26155214545, + 8822.567623036028, + 8481.456344981041, + 11772.110485811148, + 11745.051640182497, + 11721.808313334242, + 11701.848242047818, + 11684.61522696957, + 11669.529132610787, + 11655.985887347659, + 11643.357483421309, + 11630.991976937781, + 11618.213487868043, + 11604.322200047982, + 11588.594361178411, + 11570.282282825052, + 11548.614340418582, + 11522.794973254571, + 11492.004684493519, + 11455.400041160852, + 11412.113674146909, + 11361.254278206974, + 11301.906611961229, + 11233.131497894788, + 11153.96582235769, + 11063.422535564894, + 10960.490651596285, + 10844.135248396673, + 10713.297467775763, + 10566.89451540823, + 10403.81966083363, + 10222.942237456456, + 10023.107642546147, + 9803.137337237029, + 9561.828846528353, + 9297.95575928433, + 9010.267728234032, + 8697.490469971519, + 8358.32576495574, + 7991.451457510567, + 11724.281998173483, + 11707.870339653347, + 11694.605516686372, + 11683.985997804157, + 11675.486315403232, + 11668.557065745057, + 11662.624908955995, + 11657.092569027347, + 11651.338833815325, + 11644.718555041072, + 11636.562648290663, + 11626.178093015067, + 11612.847932530201, + 11595.831274016899, + 11574.363288520912, + 11547.655210952906, + 11514.8943400885, + 11475.244038568195, + 11427.843732897452, + 11371.808913446623, + 11306.231134451005, + 11230.178014010804, + 11142.693234091163, + 11042.796540522135, + 10929.483742998693, + 10801.72671508074, + 10658.473394193117, + 10498.647781625545, + 10321.149942532707, + 10124.856005934198, + 9908.618164714533, + 9671.26467562313, + 9411.599859274373, + 9128.404100147525, + 8820.43384658681, + 8486.421610801339, + 8125.075968865182, + 11671.087586815634, + 11676.717284421882, + 11684.523242782016, + 11694.05924757795, + 11704.855148356522, + 11716.416858529508, + 11728.226355373588, + 11739.741680030382, + 11750.396937506406, + 11759.602296673125, + 11766.743990266921, + 11771.184314889082, + 11772.261631005838, + 11769.290362948337, + 11761.560998912651, + 11748.340090959751, + 11728.870255015569, + 11702.370170870934, + 11668.034582181604, + 11625.034296468257, + 11572.516185116498, + 11509.603183376848, + 11435.394290364773, + 11348.964569060628, + 11249.365146309712, + 11135.623212822225, + 11006.742023173329, + 10861.700895803073, + 10699.45521301644, + 10518.936420983347, + 10319.052029738608, + 10098.685613181982, + 9856.696809078147, + 9591.921319056677, + 9303.17090861212, + 8989.233407103906, + 8648.872707756409, + 11942.425505349333, + 11913.8053032206, + 11889.172593073512, + 11867.989892336433, + 11849.69578230264, + 11833.704908130363, + 11819.407978842723, + 11806.171767327782, + 11793.339110338507, + 11780.228908492812, + 11766.136126273519, + 11750.331792028368, + 11732.062997970037, + 11710.552900176106, + 11685.000718589097, + 11654.58173701644, + 11618.447303130504, + 11575.724828468567, + 11525.517788432833, + 11466.90572229041, + 11398.944233173383, + 11320.664988078694, + 11231.07571786825, + 11129.160217268867, + 11013.878344872279, + 10884.166023135154, + 10738.935238379077, + 10577.074040790556, + 10397.446544421007, + 10198.892927186804, + 9980.229430869207, + 9740.248361114414, + 9477.718087433554, + 9191.38304320265, + 8879.96372566269, + 8542.156695919552, + 8176.63457894405, + 11894.439912412194, + 11876.414470424457, + 11861.699404699062, + 11849.788235688828, + 11840.15054771151, + 11832.231988949794, + 11825.454271451265, + 11819.21517112844, + 11812.888527758767, + 11805.824244984598, + 11797.348290313239, + 11786.76269511688, + 11773.345554632659, + 11756.351027962632, + 11735.009338073774, + 11708.526771797979, + 11676.085679832076, + 11636.844476737811, + 11589.937640941842, + 11534.47571473576, + 11469.545304276082, + 11394.209079584238, + 11307.50577454658, + 11208.4501869144, + 11096.033178303893, + 10969.22167419618, + 10826.958663937316, + 10668.163200738265, + 10491.730401674911, + 10296.531447688092, + 10081.41358358353, + 9845.200118031877, + 9586.690423568736, + 9304.659936594586, + 8997.860157374875, + 8665.018650039949, + 8304.839042585092, + 11839.925633227254, + 11843.819517293936, + 11850.03678935538, + 11858.126775308448, + 11867.614864914918, + 11878.002511801513, + 11888.767233459848, + 11899.362611246479, + 11909.218290382876, + 11917.739979955439, + 11924.309452915484, + 11928.284546079256, + 11928.999160127913, + 11925.763259607545, + 11917.862872929169, + 11904.560092368694, + 11885.093074066994, + 11858.67603802984, + 11824.499268127935, + 11781.72911209689, + 11729.507981537257, + 11666.9543519145, + 11593.162762559012, + 11507.203816666106, + 11408.12418129601, + 11294.946587373885, + 11166.669829689805, + 11022.268766898782, + 10860.69432152073, + 10680.873479940512, + 10481.709292407882, + 10262.080873037532, + 10020.843399809088, + 9756.828114567072, + 9468.842323020966, + 9155.669394745137, + 8816.068763178906, + 12113.308678303696, + 12083.088053456882, + 12057.028021744269, + 12034.585881241166, + 12015.194993887784, + 11998.264785489286, + 11983.180745715725, + 11969.304428102103, + 11955.973450048328, + 11942.501492819238, + 11928.178301544593, + 11912.269685219067, + 11894.017516702266, + 11872.639732718722, + 11847.330333857879, + 11817.259384574112, + 11781.573013186713, + 11739.393411879897, + 11689.818836702801, + 11631.92360756949, + 11564.75810825895, + 11487.348786415087, + 11398.698153546722, + 11297.784785027616, + 11183.56332009644, + 11054.96446185679, + 10910.89497727719, + 10750.237697191074, + 10571.85151629681, + 10374.571393157694, + 10157.208350201923, + 9918.54947372263, + 9657.357913877884, + 9372.372884690634, + 9062.309664048807, + 8725.859593705216, + 8361.69007927761, + 12065.065234875568, + 12045.387010830906, + 12029.183912355882, + 12015.944511824553, + 12005.133445475878, + 11996.191413413766, + 11988.535179607037, + 11981.557571889427, + 11974.627481959596, + 11967.089865381136, + 11958.265741582563, + 11947.452193857289, + 11933.922369363683, + 11916.925479125019, + 11895.6867980295, + 11869.407664830236, + 11837.265482145282, + 11798.413716457604, + 11751.98189811509, + 11697.075621330543, + 11632.776544181708, + 11558.14238861124, + 11472.206940426717, + 11373.980049300646, + 11262.447628770447, + 11136.57165623846, + 10995.290172971974, + 10837.517284103164, + 10662.143158629147, + 10468.034029411976, + 10254.0321931786, + 10018.956010520886, + 9761.599905895668, + 9480.734367624653, + 9175.105947894503, + 8843.437262756779, + 8484.426992128, + 12009.082286588493, + 12011.202157981723, + 12015.793888053196, + 12022.40234291472, + 12030.548452543006, + 12039.729210779713, + 12049.417675331413, + 12059.062967769592, + 12068.09027353066, + 12075.900841915964, + 12081.871986091755, + 12085.35708308922, + 12085.685573804465, + 12082.16296299852, + 12074.070819297329, + 12060.666775191758, + 12041.184527037618, + 12014.833835055624, + 11980.800523331407, + 11938.246479815532, + 11886.30965632349, + 11824.104068535678, + 11750.719795997444, + 11665.222982119029, + 11566.655834175608, + 11454.03662330728, + 11326.359684519064, + 11182.595416680912, + 11021.690282527681, + 10842.566808659165, + 10644.123585540074, + 10425.235267500033, + 10184.752572733612, + 9921.502283300264, + 9634.287245124426, + 9321.886367995396, + 8983.05462556744, + 12284.799900805185, + 12252.939130695035, + 12225.413182822967, + 12201.674135911238, + 12181.150132546985, + 12163.245379182299, + 12147.340146134182, + 12132.790767584554, + 12118.929641580282, + 12105.065230033111, + 12090.48205871975, + 12074.44071728182, + 12056.177859225842, + 12034.90620192329, + 12009.81452661054, + 11980.067678388903, + 11944.806566224612, + 11903.148162948813, + 11854.185505257574, + 11796.987693711893, + 11730.599892737706, + 11654.043330625835, + 11566.315299532047, + 11466.38915547704, + 11353.214318346407, + 11225.716271890687, + 11082.796563725351, + 10923.332805330743, + 10746.178672052185, + 10550.163903099889, + 10334.09430154902, + 10096.75173433961, + 9836.894132276675, + 9553.255490030104, + 9244.545866134767, + 8909.451382990394, + 8546.634226861679, + 12236.195877926482, + 12214.825212840662, + 12197.095631229884, + 12182.490757389447, + 12170.470279479527, + 12160.469949525252, + 12151.901583416666, + 12144.153060908717, + 12136.588325621318, + 12128.547385039257, + 12119.34631051228, + 12108.277237255026, + 12094.608364347081, + 12077.583954732941, + 12056.424335222044, + 12030.3258964887, + 11998.46109307221, + 11959.97844337675, + 11914.002529671436, + 11859.633998090296, + 11795.949558632288, + 11722.001985161298, + 11636.82011540612, + 11539.408850960494, + 11428.749157283051, + 11303.798063697368, + 11163.488663391938, + 11006.730113420175, + 10832.407634700414, + 10639.382512015924, + 10426.492094014884, + 10192.54979321039, + 9936.345085980487, + 9656.6435125681, + 9352.18667708113, + 9021.692247492354, + 8663.853955639517, + 12178.591888479774, + 12178.89888034892, + 12181.827545022377, + 12186.918288826904, + 12193.687581954153, + 12201.627958460733, + 12210.208016268132, + 12218.872417162793, + 12227.04188679607, + 12234.113214684245, + 12239.459254208523, + 12242.42892261501, + 12242.347201014763, + 12238.515134383753, + 12230.209831562875, + 12216.68446525792, + 12197.168272039655, + 12170.86655234372, + 12136.9606704707, + 12094.608054586097, + 12042.942196720338, + 11981.072652768771, + 11908.085042491675, + 11823.041049514239, + 11724.978421326578, + 11612.91096928373, + 11485.828568605662, + 11342.697158377254, + 11182.458741548315, + 11004.031384933573, + 10806.30921921269, + 10588.162438930212, + 10348.437302495675, + 10085.95613218345, + 9799.517314132934, + 9487.89529834836, + 9149.840598698927, + 12456.939258442737, + 12423.39796419677, + 12394.366849244096, + 12369.292772953893, + 12347.598658560242, + 12328.683493162178, + 12311.922327723621, + 12296.666277073446, + 12282.242519905423, + 12267.954298778264, + 12253.080920115603, + 12236.877754205983, + 12218.576235202878, + 12197.383861124685, + 12172.484193854722, + 12143.036859141232, + 12108.177546597384, + 12067.018009701247, + 12018.646065795843, + 11962.125596089096, + 11896.496545653868, + 11820.774923427936, + 11733.952802213986, + 11634.998318679649, + 11522.855673357466, + 11396.445130644901, + 11254.663018804362, + 11096.381729963134, + 10920.449720113464, + 10725.691509112505, + 10510.907680682349, + 10274.87488240998, + 10016.345825747334, + 9734.049286011243, + 9426.69010238349, + 9092.949177910772, + 8731.483479504697, + 12407.869943385864, + 12384.76651787971, + 12365.471342352148, + 12349.463093019654, + 12336.196509963675, + 12325.102397130531, + 12315.587622331506, + 12307.035117242773, + 12298.80387740544, + 12290.228962225548, + 12280.621494974055, + 12269.268662786822, + 12255.433716664655, + 12238.355971473287, + 12217.250805943357, + 12191.309662670423, + 12159.70004811498, + 12121.56553260245, + 12076.025750323157, + 12022.176399332358, + 11959.089241550242, + 11885.812102761904, + 11801.368872617362, + 11704.759504631587, + 11594.960016184436, + 11470.92248852069, + 11331.57506675008, + 11175.821959847242, + 11002.54344065173, + 10810.595845868038, + 10598.81157606557, + 10365.999095678631, + 10110.942933006507, + 9832.403680213338, + 9529.11799332825, + 9199.798592245237, + 8843.134260723267, + 12348.488969939548, + 12346.9435477172, + 12348.170955867843, + 12351.707140933164, + 12357.064113319764, + 12363.729947299184, + 12371.168781007871, + 12378.820816447185, + 12386.10231948345, + 12392.405619847867, + 12397.099111136587, + 12399.527250810661, + 12399.010560196084, + 12394.845624483765, + 12386.305092729548, + 12372.637677854174, + 12353.06815664332, + 12326.797369747588, + 12293.002221682505, + 12250.835680828512, + 12199.426779430974, + 12137.88061360018, + 12065.278343311351, + 11980.677192404624, + 11883.110448585045, + 11771.587463422595, + 11645.093652352185, + 11502.590494673637, + 11343.015533551696, + 11165.282376016037, + 10968.280692961254, + 10750.876219146852, + 10511.91075319729, + 10250.202157601892, + 9964.54435871498, + 9653.70734675574, + 9316.437175808318, + 12629.767026263327, + 12594.504172681814, + 12563.927983400135, + 12537.480098434384, + 12514.578221665584, + 12494.616120839699, + 12476.963627567595, + 12460.966637325071, + 12445.947109452834, + 12431.203067156535, + 12416.00859750674, + 12399.613851438924, + 12381.245043753499, + 12360.104453115799, + 12335.370422056083, + 12306.19735696951, + 12271.715728116189, + 12231.03206962114, + 12183.228979474308, + 12127.365119530556, + 12062.475215509668, + 11987.570056996374, + 11901.636497440279, + 11803.637454155963, + 11692.511908322896, + 11567.174904985475, + 11426.517553053038, + 11269.407025299814, + 11094.68655836498, + 10901.175452752635, + 10687.669072831786, + 10452.93884683636, + 10195.732266865238, + 9914.772888882173, + 9608.760332715896, + 9276.370282060028, + 8916.25448447311, + 12580.125722532634, + 12555.24855683206, + 12534.348016211714, + 12516.897828809326, + 12502.347786627535, + 12490.123745533914, + 12479.62762526094, + 12470.237409406021, + 12461.307145431494, + 12452.166944664616, + 12442.122982297567, + 12430.457497387435, + 12416.428792856248, + 12399.271235490956, + 12378.195255943428, + 12352.38734873044, + 12321.010072233716, + 12283.202048699894, + 12238.077964240523, + 12184.728568832083, + 12122.220676315983, + 12049.597164398547, + 11965.876974651022, + 11870.055112509577, + 11761.102647275306, + 11637.966712114223, + 11499.570504057281, + 11344.813284000318, + 11172.570376704125, + 10981.693170794417, + 10771.009118761818, + 10539.321736961863, + 10285.410605615052, + 10008.031368806754, + 9705.915734487315, + 9377.77147447196, + 9022.282424440862, + 12518.808251464281, + 12515.37021286627, + 12514.857505652517, + 12516.80161657966, + 12520.710096269226, + 12526.066559207713, + 12532.330683746492, + 12538.938212101892, + 12545.30095035514, + 12550.806768452409, + 12554.819600204766, + 12556.679443288227, + 12555.70235924372, + 12551.18047347709, + 12542.381975259124, + 12528.551117725496, + 12508.90821787684, + 12482.649656578702, + 12448.947878561532, + 12406.951392420717, + 12355.784770616568, + 12294.548649474316, + 12222.319729184122, + 12138.150773801059, + 12041.070611245119, + 11930.084133301223, + 11804.17229561922, + 11662.292117713878, + 11503.376682964878, + 11326.335138616843, + 11130.0526957793, + 10913.390629426705, + 10675.186278398443, + 10414.253045398793, + 10129.380396997018, + 9819.333863627236, + 9482.85503958854, + 12706.83790609463, + 12670.796297661975, + 12639.520180987221, + 12612.448875562108, + 12588.997764743275, + 12568.558295752315, + 12550.497979675723, + 12534.160391464915, + 12518.865169936245, + 12503.908017770975, + 12488.560701515295, + 12472.071051580326, + 12453.662962242091, + 12432.536391641559, + 12407.867361784605, + 12378.807958542033, + 12344.486331649568, + 12304.006694707865, + 12256.449325182482, + 12200.870564403916, + 12136.30281756759, + 12061.754553733841, + 11976.210305827924, + 11878.630670640026, + 11767.95230882525, + 11643.087944903627, + 11502.926367260117, + 11346.332428144575, + 11172.147043671808, + 10979.187193821537, + 10766.24592243841, + 10532.09233723196, + 10275.471609776714, + 9995.104975512048, + 9689.689733742307, + 9357.899247636753, + 8998.382944229557, + 12656.907513149119, + 12631.228409722185, + 12609.601179068331, + 12591.497349409447, + 12576.364512832346, + 12563.626325288787, + 12552.682506595424, + 12542.908840433834, + 12533.657174350537, + 12524.255419756959, + 12514.00755192945, + 12502.193610009292, + 12488.069697002675, + 12470.86797978072, + 12449.796689079485, + 12424.040119499916, + 12392.758629507913, + 12355.088641434282, + 12310.142641474758, + 12257.009179689998, + 12194.752870005581, + 12122.414390212009, + 12039.010481964697, + 11943.533950784, + 11834.953666055184, + 11712.214561028437, + 11574.237632818888, + 11419.919942406548, + 11248.134614636392, + 11057.730838218302, + 10847.533865727088, + 10616.345013602451, + 10362.941662149069, + 10086.077255536484, + 9784.481301799235, + 9456.859372836694, + 9101.893104413228, + 12594.67691548885, + 12590.384334577204, + 12589.085318425312, + 12590.30937096935, + 12593.562060010438, + 12598.325017214605, + 12604.05593811281, + 12610.18858210093, + 12616.132772439762, + 12621.274396255032, + 12624.975404537388, + 12626.573812142393, + 12625.383697790545, + 12620.695204067244, + 12611.774537422843, + 12597.863968172594, + 12578.181830496675, + 12551.922522440196, + 12518.256505913176, + 12476.330306690563, + 12425.266514412242, + 12364.163782582984, + 12292.096828572525, + 12208.116433615505, + 12111.249442811468, + 12000.498765124908, + 11874.843373385236, + 11733.238304286775, + 11574.61465838878, + 11397.879600115426, + 11201.916357755812, + 10985.584223463944, + 10747.718553258788, + 10487.13076702417, + 10202.608348508911, + 9892.914845326719, + 9556.789868956219, + 12803.323668771956, + 12766.297564327948, + 12734.135737141616, + 12706.274607876003, + 12682.126661059057, + 12661.080445083682, + 12642.500572207677, + 12625.72771855377, + 12610.078624109618, + 12594.84609272779, + 12579.298992125794, + 12562.68225388604, + 12544.216873455873, + 12523.099910147565, + 12498.504487138298, + 12469.579791470183, + 12435.451074050265, + 12395.21964965048, + 12347.96289690772, + 12292.73425832378, + 12228.563240265385, + 12154.455412964187, + 12069.39241051674, + 11972.331930884553, + 11862.20773589403, + 11737.929651236496, + 11598.383566468236, + 11442.431435010405, + 11268.911274149124, + 11076.637165035421, + 10864.399252685234, + 10630.96374597943, + 10375.07291766383, + 10095.445104349115, + 9790.774706510947, + 9459.732188489887, + 9100.96407849141, + 12753.001696103767, + 12726.309150039748, + 12703.76281275573, + 12684.83146431066, + 12668.959948628391, + 12655.569173497735, + 12644.056110572381, + 12633.793795370964, + 12624.131327277051, + 12614.393869539104, + 12603.882649270534, + 12591.874957449656, + 12577.624148919716, + 12560.359642388892, + 12539.286920430266, + 12513.58752948185, + 12482.419079846586, + 12444.915245692324, + 12400.185765051849, + 12347.316439822858, + 12285.369135767987, + 12213.381782514782, + 12130.3683735557, + 12035.318966248156, + 11927.199681814449, + 11804.952705341819, + 11667.496285782448, + 11513.72473595339, + 11342.50843253666, + 11152.693816079192, + 10943.103390992848, + 10712.535725554375, + 10459.765451905492, + 10183.543266052797, + 9882.595927867858, + 9555.626261087116, + 9201.313153311981, + 12689.584643008477, + 12684.21311803387, + 12681.920768897384, + 12682.2346225706, + 12684.65776989, + 12688.669365557, + 12693.724628137925, + 12699.254840064046, + 12704.66734763153, + 12709.34556100148, + 12712.648954199924, + 12713.913065117806, + 12712.449495510991, + 12707.54591100028, + 12698.466041071384, + 12684.449679074934, + 12664.712682226509, + 12638.446971606563, + 12604.820532160513, + 12562.97741269869, + 12512.037725896344, + 12451.097648293633, + 12379.229420295667, + 12295.481346172464, + 12198.877794058957, + 12088.419195954999, + 11963.082047725393, + 11821.818909099838, + 11663.558403672963, + 11487.205218904328, + 11291.640106118406, + 11075.71988050458, + 10838.277421117193, + 10578.121670875458, + 10294.037636563577, + 9984.786388830616, + 9649.105062190598, + 12977.649839931632, + 12938.81813677094, + 12905.029451777094, + 12875.714986260075, + 12850.282005394754, + 12828.113838220983, + 12808.569877643486, + 12790.98558043193, + 12774.672467220911, + 12758.918122509931, + 12742.986194663432, + 12726.116395910756, + 12707.524502346187, + 12686.402353928926, + 12661.9178544831, + 12633.21497169775, + 12599.413737126846, + 12559.610246189275, + 12512.876658168854, + 12458.261196214313, + 12394.788147339319, + 12321.457862422449, + 12237.2467562072, + 12141.107307302009, + 12031.968058180213, + 11908.73361518009, + 11770.284648504843, + 11615.477892222567, + 11443.14614426631, + 11252.098266434044, + 11041.119184388643, + 10808.969887657904, + 10554.387429634584, + 10276.084927576288, + 9972.751562605634, + 9643.052579710109, + 9285.629287742122, + 12926.536534294251, + 12897.986307302845, + 12873.753081389325, + 12853.300688533862, + 12836.069024581537, + 12821.474049242364, + 12808.907786091275, + 12797.73832256813, + 12787.309809977693, + 12776.942463489677, + 12765.932562138698, + 12753.552448824303, + 12739.050530310958, + 12721.651277228066, + 12700.55522406993, + 12674.938969195782, + 12643.955174829778, + 12606.732567061019, + 12562.375935843489, + 12509.966134996117, + 12448.560082202755, + 12377.19075901218, + 12294.867210838065, + 12200.574546959051, + 12093.273940518662, + 11971.902628525353, + 11835.373911852532, + 11682.577155238481, + 11512.377787286438, + 11323.617300464557, + 11115.113251105917, + 10885.659259408494, + 10634.025009435232, + 10358.956249113939, + 10059.174790237426, + 9733.378508463344, + 9380.241343314317, + 12860.853243984653, + 12853.506694915748, + 12849.394509581438, + 12848.03925516823, + 12848.939562727543, + 12851.570127175752, + 12855.381707294116, + 12859.801125728836, + 12864.23126899103, + 12868.051087456748, + 12870.61559536695, + 12871.255870827517, + 12869.279055809271, + 12863.968356147938, + 12854.583041544183, + 12840.358445563563, + 12820.505965636597, + 12794.21306305871, + 12760.643262990241, + 12718.936154456447, + 12668.207390347534, + 12607.548687418608, + 12536.027826289705, + 12452.688651445795, + 12356.551071236743, + 12246.611057877357, + 12121.840647447372, + 11981.187939891426, + 11823.57709901909, + 11647.908352504866, + 11453.057991888172, + 11237.878372573325, + 11001.19791382961, + 10741.821098791192, + 10458.5284744572, + 10150.076651691643, + 9815.198305223494, + 13152.786383163408, + 13112.106077104601, + 13076.648658073129, + 13045.840108025908, + 13019.082472784752, + 12995.753862036432, + 12975.20844933262, + 12956.776472089927, + 12939.764231589854, + 12923.454092978858, + 12907.104485268315, + 12889.949901334501, + 12871.200897918634, + 12850.044095626849, + 12825.642178930204, + 12797.133896164683, + 12763.634059531183, + 12724.233545095536, + 12677.99929278848, + 12623.974306405693, + 12561.177653607761, + 12488.604465920214, + 12405.22593873348, + 12309.989331302917, + 12201.817966748818, + 12079.611232056373, + 11942.244578075732, + 11788.569519521925, + 11617.413634974942, + 11427.580566879671, + 11217.850021545939, + 10986.977769148463, + 10733.695643726945, + 10456.711543185927, + 10154.709429294955, + 9826.349327688447, + 9470.267327865755, + 13100.769096757065, + 13070.318227879408, + 13044.35636097564, + 13022.342379947147, + 13003.711232560245, + 12987.87393044617, + 12974.217549101062, + 12962.10522788601, + 12950.876170027015, + 12939.845642614991, + 12928.3049766058, + 12915.52156682019, + 12900.738871943866, + 12883.176414527436, + 12862.02978098644, + 12836.470621601327, + 12805.646650517494, + 12768.681645745233, + 12724.675449159771, + 12672.703966501262, + 12611.819167374768, + 12541.04908525029, + 12459.397817462735, + 12365.845525211962, + 12259.348433562716, + 12138.838831444673, + 12003.22507165247, + 11851.391570845602, + 11682.19880954854, + 11494.483332150654, + 11287.057746906248, + 11058.71072593452, + 10808.20700521964, + 10534.287384610641, + 10235.66872782154, + 9911.043962431226, + 9559.082079883558, + 13032.649343263347, + 13023.28556466568, + 13017.312681141671, + 13014.248800092768, + 13013.588092785336, + 13014.800794350675, + 13017.333203784996, + 13020.607683949438, + 13024.022661570063, + 13026.952627237846, + 13028.74813540872, + 13028.735804403485, + 13026.218316407903, + 13020.474417472651, + 13010.758917513323, + 12996.302690310433, + 12976.312673509428, + 12949.971868620676, + 12916.439341019463, + 12874.850219945987, + 12824.315698505387, + 12763.923033667714, + 12692.73554626795, + 12609.792621006, + 12514.109706446668, + 12404.678315019715, + 12280.4660230198, + 12140.416470606515, + 11983.44936180437, + 11808.460464502805, + 11614.32161045618, + 11399.880695283753, + 11163.961678469755, + 10905.36458336328, + 10622.865497178418, + 10315.216570994105, + 9981.146019754246, + 13328.774331346336, + 13286.201761880742, + 13249.033076254304, + 13216.689037070859, + 13188.566470799164, + 13164.038267772918, + 13142.453382190735, + 13123.136832116148, + 13105.389699477611, + 13088.489130068516, + 13071.688333547148, + 13054.216583436739, + 13035.279217125437, + 13014.057635866315, + 12989.709304777363, + 12961.367752841496, + 12928.142572906552, + 12889.119421685293, + 12843.360019755402, + 12789.902151559478, + 12727.759665405058, + 12655.922473464585, + 12573.35655177543, + 12479.003940239902, + 12371.782742625206, + 12250.587126563487, + 12114.287323551818, + 11961.729628952164, + 11791.736401991448, + 11603.106065761503, + 11394.61310721908, + 11165.008077185841, + 10913.01759034841, + 10637.344325258277, + 10336.667024331911, + 10009.640493850677, + 9654.895603960857, + 13275.738432603259, + 13243.343300485556, + 13215.610379835864, + 13191.993606476794, + 13171.922980095873, + 13154.804564245556, + 13140.020486343225, + 13126.928937671182, + 13114.86417337665, + 13103.136512471774, + 13091.03233783362, + 13077.814096204178, + 13062.720298190361, + 13044.965518264016, + 13023.740394761899, + 12998.211629885669, + 12967.521989701956, + 12930.790304142287, + 12887.111467003093, + 12835.556435945751, + 12775.172232496561, + 12704.981942046737, + 12623.984713852415, + 12531.155761034663, + 12425.446360579455, + 12305.7838533377, + 12171.071644025244, + 12020.18920122282, + 11851.992057376103, + 11665.311808795701, + 11458.956115657134, + 11231.708702000826, + 10982.329355732161, + 10709.553928621408, + 10412.0943363038, + 10088.638558279454, + 9737.850637913429, + 13205.00841917312, + 13193.584537895464, + 13185.70942647313, + 13180.896732522502, + 13178.63616752488, + 13178.39350682651, + 13179.610589638542, + 13181.70531903706, + 13184.07166196307, + 13186.079649222474, + 13187.07537548616, + 13186.380999289857, + 13183.294743034281, + 13177.090892985041, + 13167.019799272679, + 13152.307875892644, + 13132.157600705323, + 13105.747515436036, + 13072.232225674994, + 13030.742400877345, + 12980.384774363172, + 12920.242143317464, + 12849.373368790144, + 12766.813375696056, + 12671.57315281495, + 12562.639752791516, + 12438.976292135374, + 12299.52195122104, + 12143.191974287969, + 11968.877669440553, + 11775.446408648071, + 11561.74162774475, + 11326.582826429738, + 11068.765568267083, + 10787.061480685807, + 10480.2182549798, + 10146.9596463079, + 13505.654906817526, + 13461.14575710925, + 13422.222616003259, + 13388.301026750329, + 13358.772596466159, + 13333.004996131373, + 13310.341960591513, + 13290.103288557064, + 13271.58484260341, + 13254.058549170863, + 13236.772398564668, + 13218.950444954977, + 13199.792806376872, + 13178.475664730362, + 13154.151265780376, + 13125.947919156757, + 13092.969998354285, + 13054.297940732653, + 13008.988247516474, + 12956.073483795299, + 12894.562278523574, + 12823.439324520701, + 12741.66537847098, + 12648.177260923643, + 12541.88785629284, + 12421.686112857646, + 12286.43704276207, + 12134.981722015014, + 11966.137290490336, + 11778.69695192681, + 11571.429973928101, + 11343.081687962827, + 11092.373489364541, + 10818.002837331665, + 10518.643254927605, + 10192.944329080648, + 9839.531710584035, + 13451.483780401883, + 13417.100103295421, + 13387.553055749206, + 13362.291625507072, + 13340.740864177762, + 13322.301887234966, + 13306.351874017282, + 13292.244067728237, + 13279.30777543627, + 13266.84836807475, + 13254.147280441979, + 13240.462011201158, + 13225.026122880427, + 13207.049241872848, + 13185.717058436401, + 13160.191326693994, + 13129.609864633445, + 13093.086554107513, + 13049.711340833861, + 12998.550234395085, + 12938.645308238703, + 12869.014699677158, + 12788.652609887806, + 12696.529303912932, + 12591.591110659745, + 12472.760422900374, + 12338.935697271882, + 12188.991454276224, + 12021.778278280304, + 11836.122817515945, + 11630.827784079895, + 11404.671953933805, + 11156.410166904272, + 10884.77332668279, + 10588.468400825828, + 10266.17842075471, + 9916.562481755724, + 13377.966139500562, + 13364.438614674942, + 13354.619077928894, + 13348.016717093738, + 13344.116783865727, + 13342.38059380604, + 13342.245526340781, + 13343.12502476097, + 13344.408596222538, + 13345.461811746361, + 13345.626306218222, + 13344.219778388837, + 13340.535990873845, + 13333.844770153792, + 13323.392006574155, + 13308.399654345334, + 13288.06573154268, + 13261.564320106401, + 13228.045565841685, + 13186.63567841862, + 13136.436931372224, + 13076.527662102428, + 13005.962271874092, + 12923.771225817, + 12828.961052925859, + 12720.514346060287, + 12597.389761944833, + 12458.522021168976, + 12302.821908187112, + 12129.176271318553, + 11936.44802274754, + 11723.476138523232, + 11489.075658559723, + 11232.037686635993, + 10951.12939039601, + 10645.0940013486, + 10312.65081486756, + 13683.469521372088, + 13636.978818257989, + 13596.257376460631, + 13560.71551987772, + 13529.739636271897, + 13502.69217727071, + 13478.911658366655, + 13457.712658917135, + 13438.385822144468, + 13420.197855135906, + 13402.391528843631, + 13384.185678084723, + 13364.775201541212, + 13343.33106176003, + 13319.000285153044, + 13290.905961997036, + 13258.147246433711, + 13219.7993564697, + 13174.91357397656, + 13122.517244690767, + 13061.61377821371, + 12991.182648011722, + 12910.179391416024, + 12817.53560962281, + 12712.158967693143, + 12592.933194553043, + 12458.718082993455, + 12308.349489670207, + 12140.639335104095, + 11954.375603680832, + 11748.322343651027, + 11521.219667130206, + 11271.783750098875, + 10998.706832402386, + 10700.657217751092, + 10376.279273720202, + 10024.193431749889, + 13628.044568180027, + 13591.627403941164, + 13560.222495952894, + 13533.273883880283, + 13510.201671253306, + 13490.402025466856, + 13473.247177780755, + 13458.085423319762, + 13444.241121073543, + 13431.014693896683, + 13417.6826285087, + 13403.497475494032, + 13387.68784930203, + 13369.458428246986, + 13347.989954508103, + 13322.4392341295, + 13291.939137020227, + 13255.598596954269, + 13212.50261157051, + 13161.712242372763, + 13102.264614729776, + 13033.17291787521, + 12953.426404907643, + 12861.990392790596, + 12757.80626235248, + 12639.791458286656, + 12506.839489151413, + 12357.819927369923, + 12191.578409230313, + 12006.936634885647, + 11802.69236835387, + 11577.619437517864, + 11330.467734125454, + 11059.96321378936, + 10764.807895987255, + 10443.679864061703, + 10095.233265220219, + 13551.558361490317, + 13535.882984531963, + 13524.076157320025, + 13515.64260790079, + 13510.063128185431, + 13506.79457395007, + 13505.269864835742, + 13504.897984348414, + 13505.063979858975, + 13505.128962603227, + 13504.430107681897, + 13502.280654060643, + 13497.969904570036, + 13490.763225905568, + 13479.902048627673, + 13464.603867161679, + 13444.06223979785, + 13417.446788691395, + 13383.9031998624, + 13342.553223195906, + 13292.494672441864, + 13232.801425215157, + 13162.523422995584, + 13080.686671127878, + 12986.29323882166, + 12878.321259151511, + 12755.724929056927, + 12617.434509342314, + 12462.356324677005, + 12289.372763595265, + 12097.342278496271, + 11885.099385644122, + 11651.45466516786, + 11395.194761061393, + 11115.082381183647, + 10809.856297258377, + 10478.231344874323, + 13862.259776263141, + 13813.74189025285, + 13771.177646225065, + 13733.972148724457, + 13701.50656616056, + 13673.13813080789, + 13648.200138805858, + 13626.00195015882, + 13605.828988736015, + 13586.942742271634, + 13568.580762364792, + 13549.956664479514, + 13530.260127944743, + 13508.656895954367, + 13484.288775567178, + 13456.273637706896, + 13423.705417162164, + 13385.654112586544, + 13341.165786498526, + 13289.262565281511, + 13228.94263918385, + 13159.180262318787, + 13078.925752664496, + 12987.105492064082, + 12882.621926225565, + 12764.353564721887, + 12631.154980990941, + 12481.856812335482, + 12315.265759923232, + 12130.164588786842, + 11925.312127823869, + 11699.443269796762, + 11451.268971332966, + 11179.476252924771, + 10882.72819892945, + 10559.663957569177, + 10208.898740931027, + 13805.460413422781, + 13766.964159512947, + 13733.656997142176, + 13704.978017896765, + 13680.34237722789, + 13659.14129445169, + 13640.742052749198, + 13624.487999166395, + 13609.698544614166, + 13595.669163868339, + 13581.671395569634, + 13566.952842223716, + 13550.737170201166, + 13532.224109737494, + 13510.589454933126, + 13484.985063753404, + 13454.538858028603, + 13418.354823453923, + 13375.51300958948, + 13325.06952986031, + 13266.056561556374, + 13197.482345832563, + 13118.331187708673, + 13027.563456069453, + 12924.11558366454, + 12806.90006710851, + 12674.805466880865, + 12526.696407326028, + 12361.413576653333, + 12177.773726937063, + 11974.56967411639, + 11750.570297995408, + 11504.520542243197, + 11235.141414393664, + 10941.129985845722, + 10621.159391863152, + 10273.878831574699, + 13725.82113184498, + 13707.95302645238, + 13694.115375915646, + 13683.80844849599, + 13676.508576319546, + 13671.66815537738, + 13668.715645525448, + 13667.055570484676, + 13666.068517840884, + 13665.111139044819, + 13663.516149412155, + 13660.592328123472, + 13655.624518224295, + 13647.873626625063, + 13636.57662410114, + 13620.9465452928, + 13600.172488705257, + 13573.41961670864, + 13539.829155537987, + 13498.518395293284, + 13448.58068993943, + 13389.085457306228, + 13319.078179088425, + 13237.580400845703, + 13143.589732002632, + 13036.07984584871, + 12914.000479538383, + 12776.277434091013, + 12621.812574390853, + 12449.483829187124, + 12258.145191093941, + 12046.626716590337, + 11813.734526020298, + 11558.250803592688, + 11278.93379738134, + 10974.51781932499, + 10643.713245227285, + 14042.067462201861, + 13991.476107477762, + 13947.023903353269, + 13908.110735019965, + 13874.112551534361, + 13844.381365817877, + 13818.24525465687, + 13795.00835870262, + 13773.950882471314, + 13754.329094344073, + 13735.375326566944, + 13716.297975250884, + 13696.281500371784, + 13674.48642577046, + 13650.049339152632, + 13622.082892088962, + 13589.675800015026, + 13551.892842231318, + 13507.774861903268, + 13456.338766061213, + 13396.577525600427, + 13327.460175281107, + 13247.931813728344, + 13156.913603432191, + 13053.3027707476, + 12935.97260589444, + 12803.772462957539, + 12655.5277598866, + 12490.039978496274, + 12306.086664466142, + 12102.421427340698, + 11877.773940529334, + 11630.849941306411, + 11360.331230811173, + 11064.875674047818, + 10743.117199885453, + 10393.665801058098, + 13983.77112307325, + 13943.149516558962, + 13907.89504547032, + 13877.441853314835, + 13851.200147464926, + 13828.556199157953, + 13808.87234349616, + 13791.486979446763, + 13775.714569841863, + 13760.8456413785, + 13746.146784618642, + 13730.860653989157, + 13714.205967781854, + 13695.377508153464, + 13673.546121125642, + 13647.858716584944, + 13617.43826828288, + 13581.383813835864, + 13538.77045472524, + 13488.649356297256, + 13430.047747763107, + 13361.968922198897, + 13283.392236545658, + 13193.27311160935, + 13090.54303206084, + 12974.109546435922, + 12842.856267135327, + 12695.642870424685, + 12531.305096434573, + 12348.654749160485, + 12146.479696462822, + 11923.543870066893, + 11678.58726556301, + 11410.325942406296, + 11117.45202391689, + 10798.633697279796, + 10452.51521354497, + 13900.790686725217, + 13880.684308880089, + 13864.77163444286, + 13852.548471889713, + 13843.48669356169, + 13837.034235664816, + 13832.61509826999, + 13829.62934531307, + 13827.453104594815, + 13825.43856778092, + 13822.913990401998, + 13819.183691853583, + 13813.528055396124, + 13805.203528154998, + 13793.442621120526, + 13777.453909147911, + 13756.422030957317, + 13729.507689133803, + 13695.847650127362, + 13654.554744252913, + 13604.717865690287, + 13545.401972484246, + 13475.648086544474, + 13394.47329364558, + 13300.870743427087, + 13193.809649393435, + 13072.235288914011, + 12935.069003223103, + 12781.208197419935, + 12609.526340468645, + 12418.872965198285, + 12208.073668302848, + 11975.930110341254, + 11721.2200157373, + 11442.697172779774, + 11139.091433622341, + 10809.1087142836, + 14222.934559357409, + 14170.222793774661, + 14123.836815359928, + 14083.171289951733, + 14047.596947253533, + 14016.460580833673, + 13989.085048125446, + 13964.76927042707, + 13942.788232901661, + 13922.39298457728, + 13902.810638346902, + 13883.244370968438, + 13862.873423064688, + 13840.853099123411, + 13816.314767497275, + 13788.365860403856, + 13756.089873925685, + 13718.546368010186, + 13674.77096646971, + 13623.775356981543, + 13564.547291087894, + 13496.050584195882, + 13417.225115577547, + 13326.98682836987, + 13224.227729574735, + 13107.815890058951, + 12976.595444554281, + 12829.38659165736, + 12664.985593829779, + 12482.16477739805, + 12279.6725325536, + 12056.233313352748, + 11810.54763771682, + 11541.29208743196, + 11247.119308149322, + 10926.658009384939, + 10578.512964519765, + 14163.0166935326, + 14120.222811085432, + 14082.975316548607, + 14050.703405350887, + 14022.812336785888, + 13998.683434012173, + 13977.674084053255, + 13959.117737797544, + 13942.323909998377, + 13926.578179274005, + 13911.142188107622, + 13895.253642847325, + 13878.12631370614, + 13858.950034762027, + 13836.890703957855, + 13811.090283101412, + 13780.666797865422, + 13744.714337787525, + 13702.303056270288, + 13652.479170581182, + 13594.264961852625, + 13526.658775081949, + 13448.635019131401, + 13359.144166728162, + 13257.112754464331, + 13141.443382796915, + 13011.014716047881, + 12864.681482404076, + 12701.274473917287, + 12519.60054650424, + 12318.44261994656, + 12096.559677890798, + 11852.686767848441, + 11585.535001195876, + 11293.791553174455, + 10976.1196628904, + 10631.158633314892, + 14076.503451749717, + 14054.112589717002, + 14036.080023086843, + 14021.89710055034, + 14011.031234663484, + 14002.925901847231, + 13997.000642387438, + 13992.651060434906, + 13989.248824005332, + 13986.141664979332, + 13982.653379102476, + 13978.08382598524, + 13971.708929103017, + 13962.78067579612, + 13950.527117269805, + 13934.152368594221, + 13912.836608704472, + 13885.736080400571, + 13851.983090347441, + 13810.68600907493, + 13760.929270977831, + 13701.773374315835, + 13632.25488121358, + 13551.386417660598, + 13458.156673511356, + 13351.530402485258, + 13230.448422166604, + 13093.827614004638, + 12940.560923313515, + 12769.517359272317, + 12579.541994925054, + 12369.455967180636, + 12138.056476812935, + 11884.116788460691, + 11606.386230627633, + 11303.590195682358, + 10974.430139858418, + 14404.903237357019, + 14350.023462443522, + 14301.657239217786, + 14259.194014165274, + 14221.99929763635, + 14189.414663846319, + 14160.757750875388, + 14135.322260668721, + 14112.377959036383, + 14091.170675653344, + 14070.922304059528, + 14050.830801659768, + 14030.070189723821, + 14007.790553386374, + 13983.118041647012, + 13955.154867370262, + 13922.97930728559, + 13885.64570198734, + 13842.184455934823, + 13791.602037452243, + 13732.880978728745, + 13664.979875818377, + 13586.833388640125, + 13497.352240977905, + 13395.423220480528, + 13279.909178661752, + 13149.64903090025, + 13003.457756439617, + 12840.126398388362, + 12658.422063719938, + 12457.087923272704, + 12234.84321174994, + 11990.383227719858, + 11722.37933361557, + 11429.478955735158, + 11110.305584241583, + 10763.458773162749, + 14343.237310659993, + 14298.2235685566, + 14258.93667544639, + 14224.800878679313, + 14195.21648947022, + 14169.559882898904, + 14147.183497910111, + 14127.415837313447, + 14109.56146778349, + 14092.901019859699, + 14076.691187946506, + 14060.164730313229, + 14042.53046909411, + 14022.973290288335, + 14000.654143759992, + 13974.710043238094, + 13944.254066316596, + 13908.375354454354, + 13866.139112975154, + 13816.586611067693, + 13758.735181785616, + 13691.578222047472, + 13614.085192636732, + 13525.201618201801, + 13423.849087255994, + 13308.925252177556, + 13179.303829209668, + 13033.834598460391, + 12871.343403902758, + 12690.63215337469, + 12490.478818579062, + 12269.637435083614, + 12026.838102321095, + 11760.786983589082, + 11470.166306050165, + 11153.634360731789, + 10809.825502526355, + 14252.996041995175, + 14228.273816323073, + 14208.075821490764, + 14191.888946404286, + 14179.176143834573, + 14169.376430417535, + 14161.904886653947, + 14156.15265690957, + 14151.486949415026, + 14147.251036265889, + 14142.764253422667, + 14137.322000710765, + 14130.195741820526, + 14120.633004307198, + 14107.857379590992, + 14091.068522956992, + 14069.442153555237, + 14042.130054400675, + 14008.260072373178, + 13966.936118217545, + 13917.2381665435, + 13858.222255825682, + 13788.92048840365, + 13708.341030481899, + 13615.468112129836, + 13509.26202728179, + 13388.659133737014, + 13252.571853159689, + 13099.888671078916, + 12929.47413688872, + 12740.16886384804, + 12530.78952908074, + 12300.12887357562, + 12046.955702186373, + 11770.014883631668, + 11468.027350495031, + 11139.690099224965, + 14588.015855285896, + 14530.919816242342, + 14480.526221357604, + 14436.219297764088, + 14397.359336459083, + 14363.282692304843, + 14333.3017840285, + 14306.70509422216, + 14282.757169342796, + 14260.698619712357, + 14239.74611951767, + 14219.092406810518, + 14197.906283507578, + 14175.332615390482, + 14150.492332105758, + 14122.482427164856, + 14090.375957944167, + 14053.222045685001, + 14010.04587549356, + 13959.848696341029, + 13901.607821063459, + 13834.276626361843, + 13756.784552802103, + 13668.03710481508, + 13566.915850696529, + 13452.278422607133, + 13322.958516572511, + 13177.765892483187, + 13015.486374094613, + 12834.88184902717, + 12634.690268766144, + 12413.62564866175, + 12170.378067929163, + 11903.613669648406, + 11611.974660764488, + 11294.079312087328, + 10948.521958291747, + 14524.473349772632, + 14477.19150389475, + 14435.818176690997, + 14399.772667432526, + 14368.450339255425, + 14341.222619160726, + 14317.436998014347, + 14296.417030547178, + 14277.462335354976, + 14259.848594898447, + 14242.827555503229, + 14225.627027359871, + 14207.450884523845, + 14187.479064915544, + 14164.867570320292, + 14138.748466388319, + 14108.229882634796, + 14072.396012439813, + 14030.307113048375, + 13980.999505570402, + 13923.485574980756, + 13856.753770119223, + 13779.768603690487, + 13691.470652264175, + 13590.776556274823, + 13476.579020021903, + 13347.746811669822, + 13203.12476324786, + 13041.533770650263, + 12861.770793636193, + 12662.608855829743, + 12442.797044719868, + 12201.060511660533, + 11936.100471870563, + 11646.594204433746, + 11331.19505229877, + 10988.532422279242, + 14430.305261996344, + 14403.20412551627, + 14380.794498755824, + 14362.558810835988, + 14347.955554742637, + 14336.419287326607, + 14327.36062930364, + 14320.166265254426, + 14314.198943624522, + 14308.797476724447, + 14303.27674072964, + 14296.927675680465, + 14289.017285482205, + 14278.788637905038, + 14265.460864584122, + 14248.22916101947, + 14226.264786576083, + 14198.715064483842, + 14164.70338183755, + 14123.32918959696, + 14073.66800258673, + 14014.771399496442, + 13945.667022880602, + 13865.358579158634, + 13772.82583861489, + 13667.024635398644, + 13546.886867524097, + 13411.320496870361, + 13259.20954918147, + 13089.414114066401, + 12900.770344999042, + 12692.090459318182, + 12462.162738227575, + 12209.75152679584, + 11933.597233956596, + 11632.416332508325, + 11304.901359114443, + 14772.314961687312, + 14712.953747387142, + 14660.48499766817, + 14614.287720309734, + 14573.716986956062, + 14538.103933116332, + 14506.755758164622, + 14478.955725339967, + 14453.963161746296, + 14431.013458352449, + 14409.318069992232, + 14388.064515364336, + 14366.416377032383, + 14343.513301424937, + 14318.47099883546, + 14290.381243422342, + 14258.311873208904, + 14221.306790083388, + 14178.385959798954, + 14128.545411973682, + 14070.757240090583, + 14003.969601497583, + 13927.10671740754, + 13839.068872898213, + 13738.732416912317, + 13624.94976225746, + 13496.54938560619, + 13352.33582749597, + 13191.089692329178, + 13011.56764837315, + 12812.502427760091, + 12592.602826487158, + 12350.553704416454, + 12085.01598527494, + 11794.626656654566, + 11477.998770012173, + 11133.721440669522, + 14706.765375645742, + 14657.166521480181, + 14613.659064267795, + 14575.657355200987, + 14542.551809337047, + 14513.708905598221, + 14488.471186771672, + 14466.157259509499, + 14446.061794328678, + 14427.455525611162, + 14409.585251603776, + 14391.67383441832, + 14372.920200031478, + 14352.499338284873, + 14329.562302885033, + 14303.23621140343, + 14272.624245276458, + 14236.80564980542, + 14194.835734156539, + 14145.745871360972, + 14088.543498314799, + 14022.212115779022, + 13945.71128837955, + 13857.976644607243, + 13757.919876817856, + 13644.428741232075, + 13516.367057935538, + 13372.574710878744, + 13211.867647877163, + 13033.037880611173, + 12834.853484626094, + 12616.058599332115, + 12375.373428004412, + 12111.49423778304, + 11823.093359673001, + 11508.819188544205, + 11167.296183131495, + 14608.468105745955, + 14578.939843572576, + 14554.271713441258, + 14533.941684687912, + 14517.40379051338, + 14504.088127983416, + 14493.40085802871, + 14484.724205444887, + 14477.416458892456, + 14470.81197089688, + 14464.221157848528, + 14456.930500002705, + 14448.20254147964, + 14437.275890264458, + 14423.365218207244, + 14405.661261022962, + 14383.330818291555, + 14355.51675345784, + 14321.337993831563, + 14279.889530587414, + 14230.242418765003, + 14171.443777268838, + 14102.516788868379, + 14022.460700197984, + 13930.250821756954, + 13824.838527909487, + 13705.15125688474, + 13570.092510776769, + 13418.54185554454, + 13249.35492101197, + 13061.363400867896, + 12853.37505266604, + 12624.1736978251, + 12372.519221628638, + 12097.147573225222, + 11796.770765628245, + 11470.076875716108, + 14957.843294562528, + 14896.16733755195, + 14841.574993496271, + 14793.440050821757, + 14751.112361819587, + 14713.917842645864, + 14681.158473321602, + 14652.112297732774, + 14626.033423630233, + 14602.15202262977, + 14579.674330212105, + 14557.782645722886, + 14535.635332372662, + 14512.366817236923, + 14487.087591256077, + 14458.884209235439, + 14426.819289845283, + 14389.931515620758, + 14347.235632961989, + 14297.722452133963, + 14240.358847266642, + 14174.087756354886, + 14097.828181258483, + 14010.475187702134, + 13910.899905275486, + 13797.949527433067, + 13670.447311494392, + 13527.192578643831, + 13366.960713930705, + 13188.503166269273, + 12990.5474484387, + 12771.797137083073, + 12530.931872711402, + 12266.607359697613, + 11977.45536628058, + 11662.083724564078, + 11319.07633051681, + 14890.154142512532, + 14838.188715151178, + 14792.498771620176, + 14752.493715033132, + 14717.559012368582, + 14687.056194469993, + 14660.322856045741, + 14636.672655669146, + 14615.395315778425, + 14595.756622676721, + 14576.99842653212, + 14558.338641377619, + 14538.971245111137, + 14518.06627949551, + 14494.769850158491, + 14468.204126592782, + 14437.467342155996, + 14401.633794070656, + 14359.753843424209, + 14310.853915169038, + 14253.936498122448, + 14187.980144966654, + 14111.9394722488, + 14024.74516038095, + 13925.303953640103, + 13812.498660168156, + 13685.18815197196, + 13542.207364923264, + 13382.367298758742, + 13204.455017080005, + 13007.233647353583, + 12789.442380910894, + 12549.796472948346, + 12286.98724252719, + 11999.682072573682, + 11686.52440987894, + 11346.133765099028, + 14787.521756694787, + 14755.517486225996, + 14728.543313564289, + 14706.072748260529, + 14687.555363730484, + 14672.41679725487, + 14660.058749979306, + 14649.858986914358, + 14641.17133693547, + 14633.32569278306, + 14625.628011062427, + 14617.360312243827, + 14607.780680662418, + 14596.123264518274, + 14581.598275876413, + 14563.391990666767, + 14540.666748684174, + 14512.560953588425, + 14478.189072904206, + 14436.641638021147, + 14386.985244193775, + 14328.262550541576, + 14259.492280048913, + 14179.669219565123, + 14087.76421980442, + 13982.724195345956, + 13863.47212463383, + 13728.907049977026, + 13577.904077549469, + 13409.314377390005, + 13221.965183402415, + 13014.659793355358, + 12786.177568882484, + 12535.273935482297, + 12260.680382518278, + 11961.104463218802, + 11635.229794677178, + 15144.643781370847, + 15080.60285786883, + 15023.837823646738, + 14973.71724777777, + 14929.585763200033, + 14890.764066716563, + 14856.54891899533, + 14826.213144569223, + 14799.005631836031, + 14774.15133305848, + 14750.851264364244, + 14728.282505745876, + 14705.598201060888, + 14681.927558031683, + 14656.375848245601, + 14628.024407154917, + 14595.930634076822, + 14559.12799219341, + 14516.626008551715, + 14467.410274063694, + 14410.442443506226, + 14344.660235521107, + 14268.977432615053, + 14182.28388115972, + 14083.445491391667, + 13971.304237412378, + 13844.678157188282, + 13702.361352550692, + 13543.12398919587, + 13365.712296685013, + 13168.848568444211, + 12951.23116176447, + 12711.534497801775, + 12448.409061576953, + 12160.48140197583, + 11846.35413174911, + 11504.60592751243, + 15074.680594064288, + 15020.2983682041, + 14972.376921649548, + 14930.32070943547, + 14893.510250461617, + 14861.302127492694, + 14833.028987158283, + 14807.999539952923, + 14785.498560236074, + 14764.78688623209, + 14745.101420030285, + 14725.655127584869, + 14705.637038714976, + 14684.212247104693, + 14660.521910302994, + 14633.683249723777, + 14602.78955064588, + 14566.910162213071, + 14525.09049743402, + 14476.352033182313, + 14419.692310196479, + 14354.084933079972, + 14278.479570301142, + 14191.801954193297, + 14092.953880954637, + 13980.813210648299, + 13854.233867202345, + 13712.045838409746, + 13553.0551759284, + 13376.043995281152, + 13179.77047585574, + 12962.968860904817, + 12724.349457545999, + 12462.598636761782, + 12176.378833399627, + 11864.32854617187, + 11525.062337655816, + 14967.50358775164, + 14932.973758668575, + 14903.645336600206, + 14878.987371312356, + 14858.444976435732, + 14841.43932946598, + 14827.367671763675, + 14815.6033085543, + 14805.495608928279, + 14796.370005840932, + 14787.527996112523, + 14778.24714042824, + 14767.78106333818, + 14755.35945325737, + 14740.18806246576, + 14721.448707108213, + 14698.299267194529, + 14669.87368659943, + 14635.281973062547, + 14593.610198188437, + 14543.920497446592, + 14485.251070171405, + 14416.616179562225, + 14337.00615268329, + 14245.38738046377, + 14140.702317697771, + 14021.86948304431, + 13887.783459027329, + 13737.31489203568, + 13569.310492323168, + 13382.593034008498, + 13175.961355075284, + 12948.190357372107, + 12698.031006612406, + 12424.210332374625, + 12125.431428102065, + 11800.373451102972, + 15332.759539029596, + 15266.30276892787, + 15207.315292382405, + 15155.160459113364, + 15109.177682705755, + 15068.682440609567, + 15032.966274139699, + 15001.296788475971, + 14972.917652663105, + 14947.048599610787, + 14922.88542609359, + 14899.599992751024, + 14876.340224087522, + 14852.230108472437, + 14826.369698140048, + 14797.83510918954, + 14765.678521585049, + 14728.92817915562, + 14686.588389595207, + 14637.6395244627, + 14581.03801918191, + 14515.716373041585, + 14440.583149195367, + 14354.522974661839, + 14256.396540324498, + 14145.040600931772, + 14019.26797509702, + 13877.867545298492, + 13719.604257879377, + 13543.219123047807, + 13347.429214876807, + 13130.92767130435, + 12892.383694133297, + 12630.442549031459, + 12343.725565531571, + 12030.83013703128, + 11690.329720793154, + 15260.385863450283, + 15203.535953393299, + 15153.333326715343, + 15109.177490372507, + 15070.444015185738, + 15036.48453584097, + 15006.62675088902, + 14980.174422745646, + 14956.40737769151, + 14934.58150587222, + 14913.928761298295, + 14893.657161845169, + 14872.950789253211, + 14850.9697891277, + 14826.850370938857, + 14799.704808021812, + 14768.621437576607, + 14732.66466066824, + 14690.874942226594, + 14642.268811046491, + 14585.838859787686, + 14520.553744974834, + 14445.35818699753, + 14359.172970110298, + 14260.894942432553, + 14149.397015948654, + 14023.528166507902, + 13882.11343382448, + 13723.953921477514, + 13547.826796911066, + 13352.485291434092, + 13136.658700220483, + 12899.052382309068, + 12638.347760603563, + 12353.202321872659, + 12042.24961674991, + 11704.099259733854, + 15148.451161283338, + 15111.345555550344, + 15079.61400948229, + 15052.721113059912, + 15030.107520128855, + 15011.189948399724, + 14995.361179448026, + 14981.990058714186, + 14970.42149550356, + 14959.976462986424, + 14949.951998197976, + 14939.621202038346, + 14928.23323927257, + 14915.01333853062, + 14899.162792307376, + 14879.85895696266, + 14856.255252721206, + 14827.481163672672, + 14792.642237771628, + 14750.820086837582, + 14701.072386554959, + 14642.432876473105, + 14573.911360006286, + 14494.493704433708, + 14403.14184089948, + 14298.79376441262, + 14180.363533847109, + 14046.741271941835, + 13896.79316530058, + 13729.361464392088, + 13543.26448355001, + 13337.296600972906, + 13110.228258724299, + 12860.805962732558, + 12587.752282791074, + 12289.765852558086, + 11965.521369556787, + 15522.233873914105, + 15453.309720777179, + 15392.049393424173, + 15337.811022222186, + 15289.928801403166, + 15247.712989064043, + 15210.44990716663, + 15177.4019415377, + 15147.80754186893, + 15120.881221716894, + 15095.813558503125, + 15071.77119351407, + 15047.896831901087, + 15023.30924268048, + 14997.103258733438, + 14968.349776806104, + 14936.095757509538, + 14899.364225319709, + 14857.15426857754, + 14808.44103948882, + 14752.175754124322, + 14687.285692419704, + 14612.674198175555, + 14527.220679057398, + 14429.780606595663, + 14319.185516185704, + 14194.243007087813, + 14053.736742427187, + 13896.426449193943, + 13721.047918243157, + 13526.313004294783, + 13310.90962593371, + 13073.50176560977, + 12812.729469637681, + 12527.20884819712, + 12215.532075332674, + 11876.26738895385, + 15447.311273277839, + 15387.942132931146, + 15335.40798863503, + 15289.10339926676, + 15248.398987568547, + 15212.641440147514, + 15181.153507475708, + 15153.234003890137, + 15128.157807592654, + 15105.175860650095, + 15083.515168994201, + 15062.378802421645, + 15040.945894594008, + 15018.371643037803, + 14993.787309144453, + 14966.300218170312, + 14934.993759236673, + 14898.927385329724, + 14857.136613300587, + 14808.633023865304, + 14752.404261604855, + 14687.414034965126, + 14612.602116256909, + 14526.884341655968, + 14429.152611202946, + 14318.274888803415, + 14193.0952022279, + 14052.433643111808, + 13895.086366955487, + 13719.825593124224, + 13525.399604848204, + 13310.532749222524, + 13073.925437207256, + 12814.254143627315, + 12530.171407172635, + 12220.305830397987, + 11883.262079723125, + 15330.402229114703, + 15290.669960979407, + 15256.485748601863, + 15227.309722177739, + 15202.578075767655, + 15181.70306729713, + 15164.073018556619, + 15149.052315201498, + 15135.981406752053, + 15124.176806593501, + 15112.931091975983, + 15101.512904014573, + 15089.166947689257, + 15075.113991844926, + 15058.55086919142, + 15038.650476303494, + 15014.56177362082, + 14985.409785447995, + 14950.295599954541, + 14908.296369174901, + 14858.46530900845, + 14799.831699219458, + 14731.400883437147, + 14652.15426915565, + 14561.049327734032, + 14457.019594396244, + 14338.97466823121, + 14205.800212192755, + 14056.357953099616, + 13889.485681635466, + 13703.99725234889, + 13498.682583653404, + 13272.307657827458, + 13023.614521014379, + 12751.321283222485, + 12454.122118324958, + 12130.687264059949, + 15713.110281857762, + 15641.66655292288, + 15578.082309950922, + 15521.710463955891, + 15471.879989816689, + 15427.89592627717, + 15389.039375946093, + 15354.567505297164, + 15323.713544668964, + 15295.68678826505, + 15269.672594153857, + 15244.832384268788, + 15220.30364440812, + 15195.199924235096, + 15168.610837277847, + 15139.602060929436, + 15107.215336447876, + 15070.468468956064, + 15028.355327441837, + 14979.845844757954, + 14923.886017622097, + 14859.39790661687, + 14785.279636189807, + 14700.405394653335, + 14603.625434184845, + 14493.766070826618, + 14369.629684485886, + 14229.994718934771, + 14073.615681810334, + 13899.223144614578, + 13705.523742714393, + 13491.20017534161, + 13254.911205592987, + 12995.291660430183, + 12710.952430679808, + 12400.480471033392, + 12062.438800047352, + 15635.49833561227, + 15573.55775848808, + 15518.641098684087, + 15470.137966998813, + 15427.414038095676, + 15389.811050503036, + 15356.646806614164, + 15327.215172687256, + 15300.786078845424, + 15276.605519076724, + 15253.895551234114, + 15231.854297035485, + 15209.655942063639, + 15186.450735766317, + 15161.364991456163, + 15133.50108631077, + 15101.937461372621, + 15065.728621549146, + 15023.905135612704, + 14975.473636200535, + 14919.416819814849, + 14854.69344682275, + 14780.238341456272, + 14694.962391812382, + 14597.752549852956, + 14487.471831404793, + 14362.959316159628, + 14223.030147674093, + 14066.475533369772, + 13892.062744533154, + 13698.535116315663, + 13484.612047733614, + 13248.989001668295, + 12990.337504865864, + 12707.305147937454, + 12398.51558535907, + 12062.568535471688, + 15513.39473252864, + 15470.98424852187, + 15434.297159808257, + 15402.789136798432, + 15375.891913767939, + 15353.01328885725, + 15333.537124071754, + 15316.823345281768, + 15302.207942222512, + 15289.002968494164, + 15276.496541561793, + 15263.952842755418, + 15250.612117269944, + 15235.690674165238, + 15218.380886366056, + 15197.851190662112, + 15173.246087708008, + 15143.686142023282, + 15108.267981992409, + 15066.064299864758, + 15016.123851754648, + 14957.471457641293, + 14889.10800136886, + 14810.010430646425, + 14719.13175704797, + 14615.40105601242, + 14497.723466843623, + 14364.980192710344, + 14216.028500646264, + 14049.701721549996, + 13864.809250185079, + 13660.136545179948, + 13434.445129028003, + 13186.472588087518, + 12914.932572581743, + 12618.514796598818, + 12295.885038091812, + 15734.407232188387, + 15662.680299874897, + 15598.834663188285, + 15542.222653213992, + 15492.172664902335, + 15447.989157068569, + 15408.952652392889, + 15374.319737420401, + 15343.323062561125, + 15315.171342090018, + 15289.049354146948, + 15264.117940736713, + 15239.514007729029, + 15214.350524858544, + 15187.716525724816, + 15158.677107792328, + 15126.273432390488, + 15089.52272471364, + 15047.418273821022, + 14998.929432636816, + 14943.001617950118, + 14878.556310414955, + 14804.491054550259, + 14719.679458739922, + 14622.971195232702, + 14513.19200014232, + 14389.143673447421, + 14249.604078991548, + 14093.32714448318, + 13919.04286149574, + 13725.457285467532, + 13511.252535701802, + 13275.086795366726, + 13015.594311495384, + 12731.38539498581, + 12421.046420600936, + 12083.139826968612, + 15656.487715410101, + 15594.258171547703, + 15539.073610879372, + 15490.323094416653, + 15447.371747035988, + 15409.560757478765, + 15376.207378351297, + 15346.604926124799, + 15320.02278113543, + 15295.706387584241, + 15272.877253537254, + 15250.732950925372, + 15228.44711554443, + 15205.169447055196, + 15180.025708983345, + 15152.117728719495, + 15120.523397519177, + 15084.296670502838, + 15042.467566655845, + 14994.042168828495, + 14938.002623736022, + 14873.307141958565, + 14798.889997941176, + 14713.661529993855, + 14616.508140291498, + 14506.292294873947, + 14381.852523645968, + 14242.003420377214, + 14085.535642702294, + 13911.215912120744, + 13717.787013996993, + 13503.967797560408, + 13268.453175905293, + 13009.914125990836, + 12726.997688641211, + 12418.326968545443, + 12082.501134257533, + 15533.793189892498, + 15491.08191478603, + 15454.113600087547, + 15422.343420675597, + 15395.202615293649, + 15372.09848655011, + 15352.414400918302, + 15335.509788736474, + 15320.720144207784, + 15307.357025400312, + 15294.708054247083, + 15282.036916546034, + 15268.583361960022, + 15253.563204016824, + 15236.168320109122, + 15215.56665149456, + 15190.902203295695, + 15161.295044499977, + 15125.841307959805, + 15083.6131903925, + 15033.658952380278, + 14975.002918370326, + 14906.645476674707, + 14827.563079470434, + 14736.708242799434, + 14633.009546568554, + 14515.371634549569, + 14382.675214379176, + 14233.77705755899, + 14067.509999455544, + 13882.682939300323, + 13678.080840189677, + 13452.464729084953, + 13204.57169681234, + 12933.114898063028, + 12636.78355139308, + 12314.242939223497, + 23212.18670746429, + 23021.948348862486, + 22846.762908245306, + 22685.80873826311, + 22538.240255431225, + 22403.187940129857, + 22279.75833660412, + 22167.034052964133, + 22064.073761184838, + 21969.912197106158, + 21883.56016043292, + 21804.004514734876, + 21730.208187446722, + 21661.110169868043, + 21595.625517163353, + 21532.645348362126, + 21471.03684635868, + 21409.643257912358, + 21347.28389364734, + 21282.75412805276, + 21214.825399482696, + 21142.245210156096, + 21063.73712615689, + 20978.0007774339, + 20883.711857800845, + 20779.52212493644, + 20664.05940038424, + 20535.927569552783, + 20393.70658171549, + 20235.952450010736, + 20061.197251441816, + 19867.949126876876, + 19654.69228104911, + 19419.886982556538, + 19161.96956386212, + 18879.35242129379, + 18570.42401504434, + 22950.250673504786, + 22767.745418205704, + 22599.2785847282, + 22444.074298125022, + 22301.332747313823, + 22170.23018507721, + 22049.918928062634, + 21939.52735678258, + 21838.15991561435, + 21744.89711280023, + 21658.79552044742, + 21578.88777452804, + 21504.182574879105, + 21433.664685202588, + 21366.294933065383, + 21301.010209899276, + 21236.723471001005, + 21172.32373553223, + 21106.67608651953, + 21038.621670854358, + 20966.977699293187, + 20890.537446457318, + 20808.070250833036, + 20718.32151477153, + 20620.012704488883, + 20511.841350066163, + 20392.48104544929, + 20260.581448449157, + 20114.768280741573, + 19953.643327867238, + 19775.784439231822, + 19579.745528105846, + 19364.056571624857, + 19127.22361078923, + 18867.728750464314, + 18584.03015938034, + 18274.562070132542, + 22503.275859410263, + 22337.05583394641, + 22183.19714347686, + 22041.00630337865, + 21909.765892893654, + 21788.734555128696, + 21677.14699705555, + 21574.213989510885, + 21479.122367196298, + 21391.035028678314, + 21309.09093638837, + 21232.405116622842, + 21160.068659543016, + 21091.14871917509, + 21024.68851341023, + 20959.70732400445, + 20895.200496578756, + 20830.139440619056, + 20763.47162947616, + 20694.120600365826, + 20620.98595436872, + 20542.943356430416, + 20458.84453536144, + 20367.517283837242, + 20267.76545839817, + 20158.368979449515, + 20038.083831261454, + 19905.642061969145, + 19759.75178357264, + 19599.097171936886, + 19422.338466791807, + 19228.11197173218, + 19015.030054217787, + 18781.68114557326, + 18526.629740988214, + 18248.41639951713, + 17945.557744079455 + ], + "input_power": [ + 5309.325775299998, + 5362.426482420985, + 5420.441969828393, + 5483.372237522221, + 5551.2172855024655, + 5623.977113769134, + 5701.651722322221, + 5784.241111161726, + 5871.745280287653, + 5964.164229699997, + 6061.497959398765, + 6163.74646938395, + 6270.909759655554, + 6382.987830213577, + 6499.980681058023, + 6621.888312188887, + 6748.710723606173, + 6880.4479153098755, + 7017.099887299996, + 7158.6666395765415, + 7305.148172139507, + 7456.544484988887, + 7612.855578124691, + 7774.081451546913, + 7940.222105255553, + 8111.277539250618, + 8287.247753532098, + 8468.132748099997, + 8653.932522954321, + 8844.64707809506, + 9040.276413522217, + 9240.820529235802, + 9446.279425235802, + 9656.653101522224, + 9871.94155809506, + 10092.144794954318, + 10317.262812099994, + 5579.2627102999995, + 5636.550960532098, + 5698.753991050616, + 5765.871801855554, + 5837.904392946911, + 5914.851764324692, + 5996.7139159888875, + 6083.490847939503, + 6175.182560176542, + 6271.789052699997, + 6373.310325509877, + 6479.746378606173, + 6591.097211988887, + 6707.36282565802, + 6828.54321961358, + 6954.638393855552, + 7085.648348383949, + 7221.573083198765, + 7362.412598299997, + 7508.166893687654, + 7658.835969361726, + 7814.419825322217, + 7974.918461569137, + 8140.331878102467, + 8310.660074922218, + 8485.903052028396, + 8666.060809420986, + 8851.133347099996, + 9041.120665065433, + 9236.022763317282, + 9435.839641855551, + 9640.571300680247, + 9850.217739791355, + 10064.77895918889, + 10284.254958872838, + 10508.645738843208, + 10737.951299099994, + 6075.464611699999, + 6140.290439532097, + 6210.031047650616, + 6284.686436055552, + 6364.25660474691, + 6448.741553724691, + 6538.141282988888, + 6632.455792539504, + 6731.6850823765435, + 6835.829152499997, + 6944.888002909876, + 7058.861633606172, + 7177.750044588887, + 7301.553235858022, + 7430.271207413579, + 7563.903959255552, + 7702.45149138395, + 7845.913803798765, + 7994.290896499996, + 8147.582769487654, + 8305.789422761727, + 8468.91085632222, + 8636.947070169133, + 8809.898064302468, + 8987.76383872222, + 9170.544393428396, + 9358.239728420984, + 9550.849843699993, + 9748.374739265431, + 9950.814415117282, + 10158.168871255551, + 10370.43810768025, + 10587.622124391353, + 10809.720921388891, + 11036.734498672839, + 11268.662856243209, + 11505.505994099989, + 5301.075588904, + 5353.793472131652, + 5411.426135645728, + 5473.97357944622, + 5541.435803533135, + 5613.812807906469, + 5691.104592566221, + 5773.311157512394, + 5860.432502744989, + 5952.468628263999, + 6049.419534069433, + 6151.285220161285, + 6258.065686539555, + 6369.760933204245, + 6486.370960155359, + 6607.895767392889, + 6734.3353549168405, + 6865.689722727209, + 7001.958870823998, + 7143.142799207211, + 7289.241507876839, + 7440.254996832888, + 7596.183266075361, + 7757.026315604248, + 7922.784145419554, + 8093.456755521284, + 8269.044145909433, + 8449.546316583997, + 8634.96326754499, + 8825.294998792395, + 9020.541510326218, + 9220.702802146472, + 9425.778874253136, + 9635.769726646226, + 9850.67535932573, + 10070.495772291655, + 10295.230965543995, + 5570.019507403999, + 5626.886627609432, + 5688.668528101284, + 5755.365208879556, + 5826.976669944244, + 5903.502911295358, + 5984.943932932887, + 6071.299734856837, + 6162.5703170672095, + 6258.755679563998, + 6359.855822347211, + 6465.870745416841, + 6576.800448772887, + 6692.644932415356, + 6813.404196344248, + 6939.078240559553, + 7069.667065061285, + 7205.170669849433, + 7345.589054924, + 7490.922220284988, + 7641.170165932394, + 7796.332891866221, + 7956.41039808647, + 8121.402684593136, + 8291.30975138622, + 8466.131598465729, + 8645.868225831653, + 8830.519633483997, + 9020.085821422768, + 9214.56678964795, + 9413.962538159552, + 9618.273066957581, + 9827.498376042022, + 10041.638465412892, + 10260.693335070175, + 10484.662985013876, + 10713.547415243997, + 6064.433979104001, + 6128.7697258694325, + 6198.020252921284, + 6272.185560259556, + 6351.265647884245, + 6435.260515795359, + 6524.170163992888, + 6617.994592476839, + 6716.73380124721, + 6820.387790303999, + 6928.956559647212, + 7042.44010927684, + 7160.8384391928885, + 7284.151549395356, + 7412.3794398842465, + 7545.5221106595545, + 7683.579561721285, + 7826.551793069432, + 7974.438804703997, + 8127.24059662499, + 8284.957168832396, + 8447.588521326219, + 8615.13465410647, + 8787.595567173135, + 8964.97126052622, + 9147.261734165731, + 9334.466988091654, + 9526.587022303996, + 9723.62183680277, + 9925.57143158795, + 10132.43580665955, + 10344.21496201758, + 10560.908897662024, + 10782.517613592892, + 11009.041109810176, + 11240.479386313875, + 11476.832443103996, + 5289.018274, + 5341.161921387655, + 5398.220349061729, + 5460.193557022221, + 5527.081545269135, + 5598.88431380247, + 5675.601862622222, + 5757.234191728394, + 5843.781301120988, + 5935.243190799999, + 6031.619860765433, + 6132.911311017285, + 6239.1175415555535, + 6350.238552380245, + 6466.274343491358, + 6587.224914888888, + 6713.090266572842, + 6843.87039854321, + 6979.565310799998, + 7120.175003343212, + 7265.699476172841, + 7416.138729288888, + 7571.4927626913595, + 7731.761576380247, + 7896.945170355554, + 8067.043544617286, + 8242.05669916543, + 8421.984633999995, + 8606.82734912099, + 8796.584844528394, + 8991.257120222219, + 9190.844176202472, + 9395.346012469137, + 9604.762629022225, + 9819.09402586173, + 10038.340202987654, + 10262.501160399997, + 5556.47266775, + 5612.708092915431, + 5673.858298367285, + 5739.923284105555, + 5810.903050130245, + 5886.797596441358, + 5967.606923038889, + 6053.331029922838, + 6143.969917093211, + 6239.523584549999, + 6339.992032293212, + 6445.375260322841, + 6555.673268638889, + 6670.886057241357, + 6791.013626130248, + 6916.055975305556, + 7046.013104767286, + 7180.885014515433, + 7320.67170455, + 7465.37317487099, + 7614.989425478396, + 7769.52045637222, + 7928.966267552472, + 8093.3268590191365, + 8262.60223077222, + 8436.792382811731, + 8615.897315137656, + 8799.917027749998, + 8988.851520648766, + 9182.70079383395, + 9381.464847305551, + 9585.143681063582, + 9793.737295108023, + 10007.24568943889, + 10225.668864056175, + 10449.006818959877, + 10677.259554149996, + 6048.2059948999995, + 6111.806620065431, + 6180.322025517284, + 6253.752211255555, + 6332.097177280245, + 6415.356923591358, + 6503.53145018889, + 6596.620757072837, + 6694.624844243211, + 6797.543711699998, + 6905.377359443211, + 7018.125787472839, + 7135.788995788889, + 7258.366984391357, + 7385.859753280246, + 7518.267302455552, + 7655.589631917284, + 7797.826741665433, + 7944.978631699998, + 8097.045302020989, + 8254.026752628395, + 8415.922983522221, + 8582.73399470247, + 8754.459786169136, + 8931.10035792222, + 9112.65570996173, + 9299.125842287654, + 9490.510754899999, + 9686.810447798769, + 9888.024920983951, + 10094.154174455552, + 10305.198208213582, + 10521.157022258023, + 10742.030616588894, + 10967.818991206173, + 11198.522146109875, + 11434.140081299996, + 5277.342516723998, + 5328.911928271654, + 5385.396120105728, + 5446.795092226222, + 5513.108844633134, + 5584.337377326469, + 5660.480690306221, + 5741.538783572393, + 5827.511657124986, + 5918.399310963998, + 6014.201745089433, + 6114.918959501284, + 6220.550954199554, + 6331.0977291842455, + 6446.559284455358, + 6566.935620012887, + 6692.226735856841, + 6822.432631987209, + 6957.553308404001, + 7097.588765107211, + 7242.539002096841, + 7392.404019372888, + 7547.183816935359, + 7706.878394784246, + 7871.487752919553, + 8041.011891341286, + 8215.450810049431, + 8394.804509043997, + 8579.072988324988, + 8768.256247892396, + 8962.354287746219, + 9161.36710788647, + 9365.294708313137, + 9574.137089026226, + 9787.89425002573, + 10006.566191311655, + 10230.152912883997, + 5543.307385723999, + 5598.9111158494325, + 5659.429626261284, + 5724.862916959553, + 5795.210987944245, + 5870.473839215358, + 5950.6514707728875, + 6035.743882616838, + 6125.7510747472115, + 6220.6730471639985, + 6320.509799867211, + 6425.2613328568395, + 6534.927646132886, + 6649.508739695357, + 6769.004613544247, + 6893.415267679553, + 7022.740702101284, + 7156.980916809431, + 7296.135911803998, + 7440.205687084988, + 7589.190242652397, + 7743.08957850622, + 7901.903694646471, + 8065.632591073136, + 8234.27626778622, + 8407.83472478573, + 8586.30796207165, + 8769.695979643997, + 8957.998777502766, + 9151.21635564795, + 9349.348714079551, + 9552.395852797581, + 9760.357771802022, + 9973.234471092892, + 10191.025950670173, + 10413.732210533875, + 10641.353250683997, + 6032.359568323999, + 6095.225071889431, + 6163.005355741284, + 6235.700419879556, + 6313.310264304247, + 6395.8348890153575, + 6483.274294012889, + 6575.628479296836, + 6672.897444867211, + 6775.081190724, + 6882.179716867213, + 6994.19302329684, + 7111.1211100128885, + 7232.963977015355, + 7359.721624304246, + 7491.394051879555, + 7627.981259741286, + 7769.483247889431, + 7915.900016323999, + 8067.231565044988, + 8223.477894052396, + 8384.63900334622, + 8550.71489292647, + 8721.705562793137, + 8897.61101294622, + 9078.431243385732, + 9264.166254111653, + 9454.816045123996, + 9650.380616422768, + 9850.85996800795, + 10056.254099879552, + 10266.563012037583, + 10481.786704482023, + 10701.925177212894, + 10926.978430230176, + 11156.946463533877, + 11391.829277123996, + 5266.048317076, + 5317.043492783653, + 5372.953448777727, + 5433.778185058222, + 5499.517701625134, + 5570.1719984784695, + 5645.741075618223, + 5726.224933044393, + 5811.623570756988, + 5901.936988755999, + 5997.1651870414325, + 6097.3081656132845, + 6202.3659244715545, + 6312.3384636162455, + 6427.225783047359, + 6547.027882764889, + 6671.744762768842, + 6801.37642305921, + 6935.9228636359985, + 7075.384084499211, + 7219.760085648839, + 7369.050867084889, + 7523.256428807359, + 7682.376770816247, + 7846.411893111553, + 8015.361795693284, + 8189.22647856143, + 8368.005941715997, + 8551.70018515699, + 8740.309208884393, + 8933.83301289822, + 9132.27159719847, + 9335.624961785135, + 9543.893106658226, + 9757.076031817733, + 9975.173737263654, + 10198.186222995995, + 5530.5236613259995, + 5585.495696411433, + 5645.382511783284, + 5710.184107441557, + 5779.900483386246, + 5854.5316396173575, + 5934.077576134889, + 6018.538292938838, + 6107.91379002921, + 6202.204067405998, + 6301.409125069212, + 6405.52896301884, + 6514.563581254889, + 6628.512979777356, + 6747.377158586249, + 6871.156117681554, + 6999.8498570632855, + 7133.458376731432, + 7271.981676685999, + 7415.419756926989, + 7563.772617454395, + 7717.04025826822, + 7875.222679368471, + 8038.319880755136, + 8206.33186242822, + 8379.258624387729, + 8557.100166633654, + 8739.856489165997, + 8927.527591984768, + 9120.113475089951, + 9317.614138481553, + 9520.029582159581, + 9727.359806124025, + 9939.604810374893, + 10156.764594912174, + 10378.839159735879, + 10605.828504845997, + 6016.894699375999, + 6079.025081341432, + 6146.070243593284, + 6218.030186131556, + 6294.904908956245, + 6376.694412067359, + 6463.398695464888, + 6555.017759148837, + 6651.55160311921, + 6753.000227375998, + 6859.363631919211, + 6970.641816748842, + 7086.83478186489, + 7207.942527267355, + 7333.965052956247, + 7464.902358931553, + 7600.754445193286, + 7741.521311741432, + 7887.202958575998, + 8037.799385696989, + 8193.310593104396, + 8353.73658079822, + 8519.07734877847, + 8689.332897045137, + 8864.503225598219, + 9044.588334437733, + 9229.588223563653, + 9419.502892975997, + 9614.332342674767, + 9814.07657265995, + 10018.735582931551, + 10228.309373489583, + 10442.797944334023, + 10662.201295464893, + 10886.519426882176, + 11115.752338585877, + 11349.900030575993, + 5255.135675056, + 5305.556614923654, + 5360.892335077728, + 5421.1428355182225, + 5486.308116245135, + 5556.388177258468, + 5631.383018558222, + 5711.292640144394, + 5796.117042016987, + 5885.856224175997, + 5980.510186621432, + 6080.0789293532835, + 6184.562452371554, + 6293.960755676246, + 6408.273839267358, + 6527.501703144887, + 6651.64434730884, + 6780.701771759209, + 6914.6739764959975, + 7053.560961519209, + 7197.362726828838, + 7346.079272424888, + 7499.71059830736, + 7658.256704476249, + 7821.717590931553, + 7990.093257673285, + 8163.383704701431, + 8341.588932015995, + 8524.708939616987, + 8712.743727504394, + 8905.693295678218, + 9103.55764413847, + 9306.336772885135, + 9514.030681918226, + 9726.63937123773, + 9944.162840843654, + 10166.601090735994, + 5518.121494556, + 5572.461834601432, + 5631.716954933284, + 5695.8868555515555, + 5764.9715364562435, + 5838.970997647359, + 5917.885239124888, + 6001.714260888837, + 6090.458062939209, + 6184.116645275998, + 6282.69000789921, + 6386.178150808841, + 6494.581074004887, + 6607.898777487354, + 6726.131261256247, + 6849.278525311553, + 6977.3405696532855, + 7110.317394281433, + 7248.208999195999, + 7391.015384396989, + 7538.736549884395, + 7691.37249565822, + 7848.92322171847, + 8011.388728065135, + 8178.769014698219, + 8351.06408161773, + 8528.273928823655, + 8710.398556315997, + 8897.437964094768, + 9089.39215215995, + 9286.261120511552, + 9488.04486914958, + 9694.743398074022, + 9906.356707284893, + 10122.884796782175, + 10344.327666565874, + 10570.685316635996, + 6001.8113880559995, + 6063.206648421431, + 6129.5166890732835, + 6200.741510011554, + 6276.881111236245, + 6357.935492747357, + 6443.904654544887, + 6534.788596628838, + 6630.587318999211, + 6731.300821655998, + 6836.929104599211, + 6947.472167828839, + 7062.930011344886, + 7183.302635147356, + 7308.5900392362455, + 7438.792223611554, + 7573.909188273285, + 7713.940933221434, + 7858.887458455999, + 8008.748763976987, + 8163.524849784395, + 8323.21571587822, + 8487.82136225847, + 8657.341788925136, + 8831.776995878221, + 9011.126983117729, + 9195.391750643652, + 9384.571298455996, + 9578.665626554766, + 9777.67473493995, + 9981.598623611551, + 10190.437292569582, + 10404.190741814022, + 10622.858971344891, + 10846.441981162174, + 11074.939771265876, + 11308.352341655993, + 5244.604590663999, + 5294.451294691654, + 5349.2127790057275, + 5408.889043606222, + 5473.480088493133, + 5542.985913666469, + 5617.406519126221, + 5696.741904872392, + 5780.9920709049875, + 5870.157017223999, + 5964.236743829431, + 6063.2312507212855, + 6167.140537899553, + 6275.964605364245, + 6389.703453115358, + 6508.357081152888, + 6631.925489476842, + 6760.4086780872085, + 6893.806646983999, + 7032.11939616721, + 7175.34692563684, + 7323.489235392886, + 7476.546325435359, + 7634.518195764245, + 7797.404846379553, + 7965.206277281284, + 8137.922488469431, + 8315.553479943997, + 8498.099251704987, + 8685.559803752394, + 8877.935136086218, + 9075.22524870647, + 9277.430141613135, + 9484.549814806225, + 9696.58426828573, + 9913.533502051654, + 10135.397516103994, + 5506.100885414, + 5559.809530419431, + 5618.432955711284, + 5681.971161289555, + 5750.424147154245, + 5823.791913305358, + 5902.074459742889, + 5985.271786466838, + 6073.38389347721, + 6166.410780773998, + 6264.352448357211, + 6367.20889622684, + 6474.980124382887, + 6587.666132825355, + 6705.266921554248, + 6827.782490569554, + 6955.212839871286, + 7087.55796945943, + 7224.817879334, + 7366.99256949499, + 7514.082039942397, + 7666.086290676221, + 7823.005321696471, + 7984.839133003136, + 8151.58772459622, + 8323.25109647573, + 8499.829248641654, + 8681.322181093996, + 8867.729893832768, + 9059.05238685795, + 9255.289660169552, + 9456.441713767581, + 9662.508547652022, + 9873.490161822892, + 10089.386556280175, + 10310.197731023874, + 10535.923686053997, + 5987.109634364, + 6047.76977312943, + 6113.344692181284, + 6183.834391519555, + 6259.2388711442445, + 6339.558131055358, + 6424.792171252889, + 6514.9409917368375, + 6610.00459250721, + 6709.982973563999, + 6814.876134907212, + 6924.684076536839, + 7039.4067984528865, + 7159.044300655353, + 7283.596583144246, + 7413.063645919552, + 7547.445488981284, + 7686.742112329431, + 7830.953515963996, + 7980.079699884987, + 8134.120664092393, + 8293.07640858622, + 8456.94693336647, + 8625.732238433135, + 8799.43232378622, + 8978.047189425728, + 9161.576835351652, + 9350.021261563996, + 9543.380468062765, + 9741.65445484795, + 9944.843221919551, + 10152.946769277582, + 10365.965096922022, + 10583.89820485289, + 10806.746093070173, + 11034.508761573874, + 11267.186210363996, + 5234.455063900001, + 5283.727532087653, + 5337.914780561729, + 5397.016809322222, + 5461.033618369134, + 5529.965207702469, + 5603.811577322221, + 5682.572727228394, + 5766.248657420987, + 5854.839367899998, + 5948.344858665431, + 6046.765129717283, + 6150.100181055556, + 6258.350012680245, + 6371.5146245913575, + 6489.594016788887, + 6612.58818927284, + 6740.497142043208, + 6873.320875099999, + 7011.059388443209, + 7153.712682072842, + 7301.280755988888, + 7453.763610191361, + 7611.1612446802465, + 7773.4736594555525, + 7940.700854517286, + 8112.84282986543, + 8289.8995855, + 8471.87112142099, + 8658.757437628396, + 8850.558534122218, + 9047.274410902472, + 9248.905067969134, + 9455.450505322226, + 9666.910722961731, + 9883.285720887654, + 10104.575499099996, + 5494.461833899999, + 5547.5387838654315, + 5605.530514117285, + 5668.4370246555545, + 5736.258315480244, + 5808.994386591358, + 5886.645237988889, + 5969.210869672837, + 6056.6912816432105, + 6149.086473899998, + 6246.396446443212, + 6348.62119927284, + 6455.760732388888, + 6567.815045791357, + 6684.784139480248, + 6806.668013455554, + 6933.466667717285, + 7065.180102265433, + 7201.808317099999, + 7343.351312220989, + 7489.809087628397, + 7641.18164332222, + 7797.468979302471, + 7958.671095569135, + 8124.78799212222, + 8295.81966896173, + 8471.766126087652, + 8652.627363499998, + 8838.403381198767, + 9029.09417918395, + 9224.699757455552, + 9425.220116013581, + 9630.655254858026, + 9841.005173988895, + 10056.269873406174, + 10276.449353109876, + 10501.543613099995, + 5972.7894383, + 6032.7144554654315, + 6097.554252917284, + 6167.3088306555555, + 6241.978188680245, + 6321.562326991358, + 6406.061245588888, + 6495.474944472838, + 6589.80342364321, + 6689.046683099999, + 6793.204722843209, + 6902.277542872839, + 7016.265143188888, + 7135.167523791356, + 7258.984684680248, + 7387.716625855554, + 7521.363347317283, + 7659.924849065432, + 7803.401131099997, + 7951.792193420989, + 8105.098036028395, + 8263.31865892222, + 8426.45406210247, + 8594.504245569135, + 8767.469209322218, + 8945.34895336173, + 9128.143477687652, + 9315.852782299997, + 9508.476867198766, + 9706.015732383952, + 9908.469377855554, + 10115.837803613584, + 10328.121009658022, + 10545.318995988891, + 10767.431762606175, + 10994.459309509873, + 11226.401636699997, + 5224.687094763999, + 5273.385327111654, + 5326.998339745727, + 5385.526132666222, + 5448.968705873134, + 5517.326059366469, + 5590.598193146221, + 5668.785107212392, + 5751.886801564988, + 5839.903276203999, + 5932.834531129434, + 6030.680566341285, + 6133.441381839554, + 6241.116977624244, + 6353.707353695358, + 6471.212510052887, + 6593.632446696841, + 6720.96716362721, + 6853.216660843998, + 6990.38093834721, + 7132.459996136839, + 7279.453834212886, + 7431.362452575359, + 7588.185851224247, + 7749.924030159552, + 7916.576989381287, + 8088.144728889431, + 8264.627248683995, + 8446.02454876499, + 8632.336629132396, + 8823.563489786218, + 9019.705130726472, + 9220.761551953135, + 9426.732753466225, + 9637.618735265733, + 9853.419497351653, + 10074.135039723993, + 5483.204340014001, + 5535.649594939431, + 5593.009630151284, + 5655.284445649556, + 5722.474041434245, + 5794.578417505358, + 5871.597573862888, + 5953.5315105068385, + 6040.38022743721, + 6132.143724653997, + 6228.822002157212, + 6330.415059946839, + 6436.922898022888, + 6548.345516385355, + 6664.682915034246, + 6785.935093969554, + 6912.102053191285, + 7043.183792699432, + 7179.180312494, + 7320.091612574989, + 7465.917692942396, + 7616.65855359622, + 7772.314194536471, + 7932.884615763135, + 8098.3698172762215, + 8268.76979907573, + 8444.084561161653, + 8624.314103533998, + 8809.458426192767, + 8999.517529137951, + 9194.491412369553, + 9394.380075887582, + 9599.183519692022, + 9808.901743782893, + 10023.534748160177, + 10243.082532823875, + 10467.545097773997, + 5958.850799863999, + 6018.040695429431, + 6082.145371281283, + 6151.164827419555, + 6225.0990638442445, + 6303.948080555356, + 6387.711877552887, + 6476.390454836838, + 6569.98381240721, + 6668.491950263999, + 6771.914868407211, + 6880.252566836838, + 6993.505045552887, + 7111.672304555355, + 7234.754343844247, + 7362.751163419552, + 7495.662763281284, + 7633.489143429431, + 7776.230303863997, + 7923.886244584988, + 8076.456965592396, + 8233.94246688622, + 8396.34274846647, + 8563.657810333136, + 8735.887652486219, + 8913.03227492573, + 9095.091677651651, + 9282.065860663995, + 9473.954823962767, + 9670.758567547951, + 9872.47709141955, + 10079.110395577583, + 10290.65848002202, + 10507.121344752892, + 10728.498989770174, + 10954.791415073872, + 11185.998620663995, + 5215.3006832559995, + 5263.424679763655, + 5316.463456557727, + 5374.417013638223, + 5437.285351005135, + 5505.06846865847, + 5577.766366598223, + 5655.379044824392, + 5737.906503336988, + 5825.348742135999, + 5917.705761221431, + 6014.9775605932855, + 6117.164140251555, + 6224.265500196245, + 6336.281640427357, + 6453.212560944888, + 6575.05826174884, + 6701.81874283921, + 6833.494004215999, + 6970.084045879209, + 7111.588867828841, + 7258.008470064888, + 7409.342852587359, + 7565.592015396248, + 7726.755958491553, + 7892.834681873284, + 8063.828185541432, + 8239.736469495996, + 8420.55953373699, + 8606.297378264393, + 8796.95000307822, + 8992.517408178472, + 9192.999593565135, + 9398.396559238225, + 9608.708305197732, + 9823.934831443656, + 10044.076137975995, + 5472.328403756001, + 5524.141963641433, + 5580.870303813283, + 5642.513424271557, + 5709.071325016246, + 5780.544006047359, + 5856.93146736489, + 5938.233708968837, + 6024.450730859212, + 6115.582533035999, + 6211.629115499212, + 6312.590478248841, + 6418.46662128489, + 6529.257544607356, + 6644.96324821625, + 6765.583732111553, + 6891.118996293285, + 7021.569040761432, + 7156.933865515999, + 7297.21347055699, + 7442.407855884396, + 7592.517021498221, + 7747.540967398471, + 7907.479693585136, + 8072.3332000582195, + 8242.10148681773, + 8416.784553863654, + 8596.382401195999, + 8780.895028814768, + 8970.322436719951, + 9164.664624911551, + 9363.921593389581, + 9568.093342154025, + 9777.179871204893, + 9991.181180542177, + 10210.097270165876, + 10433.928140075997, + 5945.293719056001, + 6003.748493021432, + 6067.118047273284, + 6135.402381811557, + 6208.601496636245, + 6286.715391747359, + 6369.7440671448885, + 6457.687522828838, + 6550.5457587992105, + 6648.318775055998, + 6751.006571599212, + 6858.609148428841, + 6971.1265055448885, + 7088.558642947358, + 7210.905560636248, + 7338.167258611554, + 7470.343736873286, + 7607.434995421434, + 7749.4410342559995, + 7896.36185337699, + 8048.197452784397, + 8204.947832478221, + 8366.612992458473, + 8533.192932725136, + 8704.68765327822, + 8881.09715411773, + 9062.421435243654, + 9248.660496655997, + 9439.814338354769, + 9635.88296033995, + 9836.866362611554, + 10042.764545169583, + 10253.577508014025, + 10469.30525114489, + 10689.947774562177, + 10915.505078265876, + 11145.977162255997, + 5206.295829375998, + 5253.845590043655, + 5306.310130997728, + 5363.689452238223, + 5425.983553765133, + 5493.1924355784695, + 5565.316097678222, + 5642.354540064393, + 5724.307762736988, + 5811.175765695997, + 5902.958548941432, + 5999.656112473285, + 6101.268456291555, + 6207.795580396244, + 6319.237484787357, + 6435.594169464889, + 6556.865634428842, + 6683.05187967921, + 6814.1529052159985, + 6950.168711039211, + 7091.099297148841, + 7236.944663544889, + 7387.70481022736, + 7543.379737196247, + 7703.9694444515535, + 7869.473931993285, + 8039.893199821431, + 8215.227247935996, + 8395.476076336989, + 8580.639685024395, + 8770.718073998218, + 8965.711243258473, + 9165.619192805138, + 9370.441922638225, + 9580.179432757732, + 9794.831723163652, + 10014.398793855997, + 5461.834025126001, + 5513.015889971432, + 5569.112535103287, + 5630.123960521555, + 5696.050166226247, + 5766.891152217359, + 5842.646918494889, + 5923.317465058839, + 6008.9027919092105, + 6099.402899045999, + 6194.817786469212, + 6295.147454178839, + 6400.391902174886, + 6510.5511304573565, + 6625.625139026249, + 6745.613927881554, + 6870.517497023286, + 7000.335846451434, + 7135.068976165999, + 7274.716886166989, + 7419.279576454398, + 7568.757047028223, + 7723.149297888471, + 7882.456329035136, + 8046.6781404682215, + 8215.81473218773, + 8389.866104193652, + 8568.832256485997, + 8752.713189064767, + 8941.50890192995, + 9135.219395081554, + 9333.844668519581, + 9537.384722244024, + 9745.839556254892, + 9959.209170552174, + 10177.493565135877, + 10400.692740005996, + 5932.118195876, + 5989.837848241431, + 6052.472280893284, + 6120.021493831556, + 6192.485487056247, + 6269.864260567358, + 6352.15781436489, + 6439.366148448836, + 6531.48926281921, + 6628.527157475999, + 6730.4798324192125, + 6837.34728764884, + 6949.129523164887, + 7065.826538967354, + 7187.438335056247, + 7313.964911431554, + 7445.406268093286, + 7581.762405041433, + 7723.033322275999, + 7869.21901979699, + 8020.319497604396, + 8176.334755698221, + 8337.26479407847, + 8503.109612745136, + 8673.86921169822, + 8849.543590937728, + 9030.132750463654, + 9215.636690275996, + 9406.055410374767, + 9601.388910759952, + 9801.637191431553, + 10006.800252389581, + 10216.878093634023, + 10431.870715164892, + 10651.778116982174, + 10876.600299085876, + 11106.337261475996, + 5197.6725331239995, + 5244.648057951653, + 5296.53836306573, + 5353.343448466222, + 5415.063314153134, + 5481.697960126469, + 5553.2473863862215, + 5629.7115929323945, + 5711.0905797649875, + 5797.384346884, + 5888.5928942894325, + 5984.716221981285, + 6085.754329959555, + 6191.707218224245, + 6302.574886775361, + 6418.357335612889, + 6539.054564736842, + 6664.66657414721, + 6795.193363844, + 6930.634933827212, + 7070.99128409684, + 7216.26241465289, + 7366.448325495359, + 7521.549016624248, + 7681.564488039553, + 7846.494739741285, + 8016.339771729431, + 8191.099584003997, + 8370.77417656499, + 8555.363549412396, + 8744.86770254622, + 8939.286635966471, + 9138.620349673134, + 9342.868843666225, + 9552.032117945731, + 9766.110172511655, + 9985.103007363996, + 5451.721204123999, + 5502.271373929432, + 5557.7363240212835, + 5618.116054399556, + 5683.410565064246, + 5753.619856015359, + 5828.74392725289, + 5908.782778776839, + 5993.736410587209, + 6083.6048226839985, + 6178.388015067212, + 6278.08598773684, + 6382.698740692888, + 6492.2262739353555, + 6606.668587464248, + 6726.025681279555, + 6850.297555381287, + 6979.484209769434, + 7113.585644444, + 7252.601859404989, + 7396.532854652397, + 7545.378630186221, + 7699.139186006473, + 7857.814522113134, + 8021.404638506219, + 8189.909535185729, + 8363.329212151655, + 8541.663669403999, + 8724.912906942769, + 8913.076924767951, + 9106.155722879554, + 9304.14930127758, + 9507.057659962024, + 9714.880798932893, + 9927.618718190175, + 10145.271417733877, + 10367.838897563997, + 5919.324230324, + 5976.308761089432, + 6038.208072141284, + 6105.022163479557, + 6176.751035104245, + 6253.3946870153595, + 6334.953119212887, + 6421.426331696838, + 6512.81432446721, + 6609.117097524001, + 6710.334650867212, + 6816.46698449684, + 6927.51409841289, + 7043.475992615356, + 7164.352667104248, + 7290.144121879554, + 7420.850356941285, + 7556.471372289433, + 7697.007167923999, + 7842.45774384499, + 7992.8231000523965, + 8148.10323654622, + 8308.298153326472, + 8473.407850393138, + 8643.432327746223, + 8818.371585385732, + 8998.225623311655, + 9182.994441523999, + 9372.678040022767, + 9567.27641880795, + 9766.789577879554, + 9971.217517237583, + 10180.560236882024, + 10394.817736812893, + 10613.990017030175, + 10838.077077533875, + 11067.078918323998, + 5193.961146958974, + 5240.681366532164, + 5292.316366391774, + 5348.866146537804, + 5410.330706970252, + 5476.710047689123, + 5548.004168694412, + 5624.213069986119, + 5705.33675156425, + 5791.375213428797, + 5882.328455579766, + 5978.196478017155, + 6078.97928074096, + 6184.676863751187, + 6295.289227047836, + 6410.816370630902, + 6531.2582945003915, + 6656.614998656297, + 6786.8864830986195, + 6922.072747827367, + 7062.173792842533, + 7207.189618144117, + 7357.120223732125, + 7511.965609606547, + 7671.72577576739, + 7836.400722214658, + 8005.990448948341, + 8180.494955968442, + 8359.91424327497, + 8544.248310867912, + 8733.497158747274, + 8927.660786913058, + 9126.73919536526, + 9330.732384103887, + 9539.640353128927, + 9753.463102440388, + 9972.200632038266, + 5447.347575255123, + 5497.616893445772, + 5552.800991922841, + 5612.8998706863285, + 5677.913529736234, + 5747.841969072562, + 5822.685188695308, + 5902.443188604473, + 5987.115968800063, + 6076.703529282067, + 6171.205870050494, + 6270.622991105341, + 6374.9548924466035, + 6484.201574074286, + 6598.363035988396, + 6717.439278188918, + 6841.430300675865, + 6970.336103449227, + 7104.156686509011, + 7242.892049855216, + 7386.542193487839, + 7535.10711740688, + 7688.586821612347, + 7846.981306104228, + 8010.290570882528, + 8178.514615947254, + 8351.653441298395, + 8529.707046935951, + 8712.675432859938, + 8900.558599070337, + 9093.356545567156, + 9291.069272350402, + 9493.69677942006, + 9701.239066776143, + 9913.696134418644, + 10131.06798234756, + 10353.354610562898, + 5913.758564588194, + 5970.416260290264, + 6031.988736278758, + 6098.475992553666, + 6169.878029115, + 6246.194845962751, + 6327.426443096921, + 6413.572820517511, + 6504.633978224524, + 6600.6099162179535, + 6701.500634497806, + 6807.306133064074, + 6918.026411916762, + 7033.661471055869, + 7154.211310481401, + 7279.675930193349, + 7410.055330191718, + 7545.349510476507, + 7685.558471047712, + 7830.682211905341, + 7980.720733049391, + 8135.674034479854, + 8295.542116196742, + 8460.324978200051, + 8630.022620489774, + 8804.635043065922, + 8984.162245928486, + 9168.604229077468, + 9357.960992512879, + 9552.232536234704, + 9751.418860242944, + 9955.519964537614, + 10164.535849118698, + 10378.466513986206, + 10597.311959140126, + 10821.07218458047, + 11049.747190307227, + 5189.430794500001, + 5235.832083487655, + 5287.148152761729, + 5343.379002322223, + 5404.524632169133, + 5470.585042302469, + 5541.560232722221, + 5617.450203428394, + 5698.254954420989, + 5783.9744857, + 5874.608797265434, + 5970.157889117286, + 6070.621761255556, + 6176.000413680245, + 6286.29384639136, + 6401.502059388888, + 6521.625052672844, + 6646.66282624321, + 6776.6153801, + 6911.482714243211, + 7051.26482867284, + 7195.961723388889, + 7345.573398391361, + 7500.099853680248, + 7659.541089255556, + 7823.897105117285, + 7993.167901265432, + 8167.353477699997, + 8346.45383442099, + 8530.468971428396, + 8719.39888872222, + 8913.243586302471, + 9112.003064169136, + 9315.677322322226, + 9524.26636076173, + 9737.770179487656, + 9956.188778499996, + 5441.989940750001, + 5491.908415515433, + 5546.741670567284, + 5606.489705905557, + 5671.1525215302445, + 5740.73011744136, + 5815.222493638888, + 5894.629650122837, + 5978.951586893211, + 6068.18830395, + 6162.339801293212, + 6261.406078922841, + 6365.387136838887, + 6474.282975041355, + 6588.093593530247, + 6706.818992305555, + 6830.459171367285, + 6959.014130715432, + 7092.483870349998, + 7230.868390270988, + 7374.167690478396, + 7522.381770972222, + 7675.51063175247, + 7833.554272819136, + 7996.51269417222, + 8164.38589581173, + 8337.173877737654, + 8514.876639949998, + 8697.494182448769, + 8885.026505233951, + 9077.473608305552, + 9274.835491663582, + 9477.112155308025, + 9684.303599238894, + 9896.409823456175, + 10113.430827959875, + 10335.366612749996, + 5906.911822400001, + 5963.161231565433, + 6024.325421017285, + 6090.404390755555, + 6161.398140780246, + 6237.306671091359, + 6318.129981688888, + 6403.868072572838, + 6494.520943743211, + 6590.0885952, + 6690.571026943212, + 6795.9682389728405, + 6906.280231288887, + 7021.5070038913545, + 7141.648556780246, + 7266.704889955554, + 7396.676003417288, + 7531.561897165433, + 7671.3625711999985, + 7816.078025520989, + 7965.708260128398, + 8120.253275022222, + 8279.713070202471, + 8444.087645669137, + 8613.377001422223, + 8787.58113746173, + 8966.700053787652, + 9150.733750399997, + 9339.682227298767, + 9533.54548448395, + 9732.323521955554, + 9936.016339713582, + 10144.623937758024, + 10358.146316088892, + 10576.583474706174, + 10799.935413609877, + 11028.202132799997, + 5181.570613503999, + 5227.397666651655, + 5278.139500085728, + 5333.796113806224, + 5394.367507813135, + 5459.85368210647, + 5530.254636686222, + 5605.570371552393, + 5685.800886704988, + 5770.946182144, + 5861.006257869434, + 5955.981113881285, + 6055.870750179554, + 6160.675166764245, + 6270.394363635359, + 6385.028340792889, + 6504.577098236841, + 6629.04063596721, + 6758.418953983999, + 6892.71205228721, + 7031.919930876841, + 7176.042589752887, + 7325.080028915359, + 7479.0322483642485, + 7637.899248099552, + 7801.681028121285, + 7970.377588429432, + 8143.988929023997, + 8322.515049904989, + 8505.955951072396, + 8694.311632526218, + 8887.58209426647, + 9085.767336293138, + 9288.867358606227, + 9496.882161205729, + 9709.811744091652, + 9927.656107263996, + 5432.640235004002, + 5481.927014729433, + 5536.128574741284, + 5595.244915039554, + 5659.276035624246, + 5728.221936495358, + 5802.082617652888, + 5880.858079096839, + 5964.548320827211, + 6053.153342844, + 6146.6731451472115, + 6245.1077277368395, + 6348.4570906128865, + 6456.721233775355, + 6569.900157224248, + 6687.993860959556, + 6811.002344981284, + 6938.925609289432, + 7071.763653883997, + 7209.516478764987, + 7352.184083932396, + 7499.766469386222, + 7652.26363512647, + 7809.675581153136, + 7972.002307466221, + 8139.2438140657305, + 8311.400100951652, + 8488.471168123997, + 8670.457015582768, + 8857.357643327949, + 9049.173051359552, + 9245.903239677582, + 9447.548208282025, + 9654.107957172893, + 9865.582486350178, + 10081.971795813879, + 10303.275885563997, + 5894.880972103999, + 5950.395259669431, + 6010.824327521284, + 6076.168175659555, + 6146.426804084244, + 6221.600212795358, + 6301.688401792888, + 6386.691371076837, + 6476.609120647209, + 6571.441650503998, + 6671.188960647211, + 6775.851051076839, + 6885.427921792888, + 6999.919572795355, + 7119.326004084247, + 7243.647215659554, + 7372.883207521284, + 7507.0339796694325, + 7646.099532103999, + 7790.079864824988, + 7938.974977832396, + 8092.78487112622, + 8251.509544706469, + 8415.148998573135, + 8583.703232726219, + 8757.172247165729, + 8935.556041891652, + 9118.854616903996, + 9307.067972202767, + 9500.19610778795, + 9698.239023659555, + 9901.196719817583, + 10109.069196262024, + 10321.856452992892, + 10539.558490010173, + 10762.175307313875, + 10989.706904903995, + 5174.091990136, + 5219.344807443656, + 5269.512405037729, + 5324.594782918224, + 5384.591941085136, + 5449.503879538471, + 5519.330598278221, + 5594.072097304394, + 5673.728376616989, + 5758.299436215999, + 5847.785276101434, + 5942.185896273285, + 6041.501296731556, + 6145.731477476246, + 6254.876438507358, + 6368.936179824889, + 6487.910701428841, + 6611.800003319211, + 6740.604085495999, + 6874.322947959213, + 7012.956590708839, + 7156.505013744889, + 7304.968217067362, + 7458.3462006762475, + 7616.638964571555, + 7779.846508753286, + 7947.968833221431, + 8121.005937975996, + 8298.95782301699, + 8481.824488344395, + 8669.60593395822, + 8862.30215985847, + 9059.913166045137, + 9262.438952518227, + 9469.87951927773, + 9682.234866323653, + 9899.504993655997, + 5423.672086886, + 5472.327171571433, + 5525.897036543285, + 5584.381681801555, + 5647.781107346246, + 5716.095313177359, + 5789.324299294888, + 5867.4680656988385, + 5950.526612389212, + 6038.499939365999, + 6131.388046629212, + 6229.1909341788405, + 6331.908602014889, + 6439.541050137355, + 6552.088278546248, + 6669.550287241553, + 6791.927076223285, + 6919.218645491431, + 7051.424995045998, + 7188.54612488699, + 7330.582035014396, + 7477.532725428221, + 7629.39819612847, + 7786.178447115138, + 7947.873478388221, + 8114.48328994773, + 8286.007881793656, + 8462.447253925997, + 8643.801406344768, + 8830.07033904995, + 9021.254052041553, + 9217.352545319582, + 9418.365818884024, + 9624.293872734892, + 9835.136706872177, + 10050.894321295877, + 10271.566716005997, + 5883.2316794359995, + 5938.010845401432, + 5997.704791653284, + 6062.313518191555, + 6131.837025016246, + 6206.275312127358, + 6285.628379524889, + 6369.896227208838, + 6459.078855179211, + 6553.1762634359975, + 6652.188451979212, + 6756.11542080884, + 6864.957169924888, + 6978.713699327357, + 7097.385009016249, + 7220.971098991555, + 7349.471969253285, + 7482.887619801431, + 7621.218050636, + 7764.4632617569905, + 7912.623253164396, + 8065.698024858221, + 8223.68757683847, + 8386.591909105136, + 8554.411021658218, + 8727.144914497732, + 8904.793587623655, + 9087.357041035997, + 9274.835274734765, + 9467.228288719949, + 9664.536082991553, + 9866.75865754958, + 10073.896012394023, + 10285.94814752489, + 10502.915062942175, + 10724.796758645876, + 10951.593234635997, + 5166.994924396, + 5211.673505863653, + 5261.266867617728, + 5315.775009658222, + 5375.197931985134, + 5439.535634598468, + 5508.78811749822, + 5582.955380684393, + 5662.037424156987, + 5746.034247916, + 5834.945851961434, + 5928.7722362932855, + 6027.5134009115545, + 6131.1693458162445, + 6239.740071007358, + 6353.225576484888, + 6471.62586224884, + 6594.940928299209, + 6723.170774636, + 6856.315401259211, + 6994.374808168842, + 7137.348995364888, + 7285.23796284736, + 7438.041710616247, + 7595.7602386715525, + 7758.3935470132865, + 7925.941635641432, + 8098.404504555997, + 8275.782153756989, + 8458.074583244394, + 8645.281793018221, + 8837.403783078471, + 9034.440553425135, + 9236.392104058226, + 9443.25843497773, + 9655.039546183654, + 9871.735437675996, + 5415.085496396, + 5463.108886041432, + 5516.047055973285, + 5573.900006191556, + 5636.667736696245, + 5704.3502474873585, + 5776.9475385648875, + 5854.459609928837, + 5936.88646157921, + 6024.228093516, + 6116.484505739212, + 6213.655698248839, + 6315.741671044886, + 6422.742424127356, + 6534.657957496247, + 6651.488271151552, + 6773.233365093283, + 6899.893239321432, + 7031.467893835998, + 7167.957328636988, + 7309.361543724396, + 7455.680539098221, + 7606.914314758472, + 7763.062870705136, + 7924.126206938221, + 8090.10432345773, + 8260.997220263653, + 8436.804897355998, + 8617.527354734766, + 8803.164592399948, + 8993.716610351554, + 9189.18340858958, + 9389.564987114023, + 9594.861345924894, + 9805.072485022176, + 10020.198404405879, + 10240.239104075994, + 5871.963944396, + 5926.007988761431, + 5984.9668134132835, + 6048.840418351555, + 6117.628803576245, + 6191.331969087358, + 6269.949914884888, + 6353.482640968837, + 6441.930147339212, + 6535.292433995997, + 6633.569500939213, + 6736.7613481688395, + 6844.867975684888, + 6957.889383487355, + 7075.825571576246, + 7198.676539951555, + 7326.442288613284, + 7459.122817561432, + 7596.718126795999, + 7739.228216316988, + 7886.6530861243955, + 8038.992736218221, + 8196.24716659847, + 8358.416377265137, + 8525.50036821822, + 8697.49913945773, + 8874.412690983654, + 9056.241022795995, + 9242.984134894765, + 9434.642027279951, + 9631.214699951553, + 9832.702152909582, + 10039.10438615402, + 10250.42139968489, + 10466.653193502176, + 10687.799767605877, + 10913.861121995997, + 5160.279416283999, + 5204.383761911653, + 5253.402887825729, + 5307.336794026222, + 5366.185480513134, + 5429.948947286469, + 5498.627194346222, + 5572.220221692393, + 5650.728029324988, + 5734.150617243999, + 5822.487985449432, + 5915.7401339412845, + 6013.907062719555, + 6116.988771784245, + 6224.985261135358, + 6337.896530772888, + 6455.722580696841, + 6578.4634109072085, + 6706.119021403997, + 6838.689412187211, + 6976.174583256839, + 7118.574534612888, + 7265.88926625536, + 7418.118778184247, + 7575.263070399553, + 7737.322142901286, + 7904.295995689433, + 8076.184628763998, + 8252.988042124989, + 8434.706235772395, + 8621.339209706219, + 8812.88696392647, + 9009.349498433136, + 9210.726813226227, + 9417.018908305732, + 9628.225783671654, + 9844.347439323996, + 5406.880463533999, + 5454.272158139433, + 5506.578633031284, + 5563.799888209556, + 5625.935923674245, + 5692.986739425359, + 5764.952335462889, + 5841.8327117868375, + 5923.6278683972105, + 6010.337805294, + 6101.962522477212, + 6198.502019946841, + 6299.956297702889, + 6406.325355745355, + 6517.609194074246, + 6633.807812689554, + 6754.921211591284, + 6880.949390779432, + 7011.892350253999, + 7147.75009001499, + 7288.522610062397, + 7434.209910396221, + 7584.811991016471, + 7740.328851923135, + 7900.76049311622, + 8066.10691459573, + 8236.368116361653, + 8411.544098413999, + 8591.634860752767, + 8776.64040337795, + 8966.56072628955, + 9161.395829487581, + 9361.145712972026, + 9565.810376742891, + 9775.389820800176, + 9989.884045143875, + 10209.293049773994, + 5861.077766983998, + 5914.386689749431, + 5972.6103928012835, + 6035.748876139555, + 6103.802139764245, + 6176.770183675358, + 6254.653007872887, + 6337.450612356838, + 6425.16299712721, + 6517.790162183999, + 6615.33210752721, + 6717.788833156838, + 6825.160339072888, + 6937.446625275356, + 7054.647691764246, + 7176.7635385395515, + 7303.794165601286, + 7435.739572949433, + 7572.5997605839975, + 7714.374728504988, + 7861.064476712397, + 8012.66900520622, + 8169.18831398647, + 8330.622403053136, + 8496.97127240622, + 8668.23492204573, + 8844.41335197165, + 9025.506562183995, + 9211.514552682765, + 9402.437323467948, + 9598.274874539551, + 9799.027205897582, + 10004.694317542024, + 10215.276209472891, + 10430.772881690174, + 10651.184334193875, + 10876.510566983996, + 5153.9454658, + 5197.475575587654, + 5245.920465661729, + 5299.280136022221, + 5357.5545866691355, + 5420.743817602469, + 5488.847828822222, + 5561.866620328393, + 5639.800192120989, + 5722.6485441999985, + 5810.4116765654335, + 5903.089589217284, + 6000.682282155555, + 6103.189755380245, + 6210.612008891359, + 6322.94904268889, + 6440.200856772842, + 6562.367451143209, + 6689.448825799998, + 6821.444980743212, + 6958.35591597284, + 7100.181631488889, + 7246.922127291359, + 7398.577403380248, + 7555.147459755554, + 7716.632296417286, + 7883.031913365432, + 8054.346310599996, + 8230.575488120987, + 8411.719445928395, + 8597.778184022221, + 8788.751702402471, + 8984.640001069134, + 9185.443080022225, + 9391.16093926173, + 9601.793578787656, + 9817.340998599995, + 5399.0569883, + 5445.816987865432, + 5497.491767717283, + 5554.081327855554, + 5615.585668280245, + 5682.0047889913585, + 5753.338689988888, + 5829.587371272837, + 5910.750832843211, + 5996.829074699999, + 6087.8220968432115, + 6183.729899272841, + 6284.552481988889, + 6390.289844991356, + 6500.941988280248, + 6616.508911855555, + 6736.990615717285, + 6862.387099865432, + 6992.6983642999985, + 7127.924409020989, + 7268.065234028396, + 7413.120839322221, + 7563.091224902471, + 7717.976390769137, + 7877.77633692222, + 8042.49106336173, + 8212.120570087654, + 8386.664857099997, + 8566.123924398766, + 8750.497771983952, + 8939.786399855555, + 9133.989808013583, + 9333.107996458024, + 9537.140965188893, + 9746.088714206175, + 9959.951243509875, + 10178.728553099998, + 5850.573147200001, + 5903.146948365432, + 5960.635529817283, + 6023.038891555556, + 6090.357033580245, + 6162.589955891359, + 6239.737658488889, + 6321.800141372838, + 6408.777404543211, + 6500.669448, + 6597.476271743211, + 6699.19787577284, + 6805.83426008889, + 6917.385424691355, + 7033.851369580247, + 7155.232094755555, + 7281.527600217284, + 7412.737885965433, + 7548.862951999999, + 7689.90279832099, + 7835.857424928396, + 7986.72683182222, + 8142.51101900247, + 8303.209986469137, + 8468.82373422222, + 8639.352262261731, + 8814.795570587654, + 8995.153659199997, + 9180.42652809877, + 9370.614177283951, + 9565.716606755554, + 9765.73381651358, + 9970.665806558023, + 10180.512576888892, + 10395.274127506176, + 10614.950458409876, + 10839.541569599996, + 5147.993072943998, + 5190.948946891653, + 5238.819601125727, + 5291.605035646223, + 5349.305250453134, + 5411.920245546469, + 5479.450020926221, + 5551.894576592392, + 5629.2539125449875, + 5711.528028783999, + 5798.716925309433, + 5890.820602121285, + 5987.839059219555, + 6089.772296604245, + 6196.6203142753575, + 6308.383112232888, + 6425.06069047684, + 6546.653049007208, + 6673.160187823999, + 6804.58210692721, + 6940.918806316839, + 7082.170285992887, + 7228.33654595536, + 7379.417586204246, + 7535.413406739553, + 7696.324007561284, + 7862.149388669432, + 8032.889550063999, + 8208.544491744988, + 8389.114213712395, + 8574.59871596622, + 8764.99799850647, + 8960.312061333134, + 9160.540904446225, + 9365.68452784573, + 9575.742931531653, + 9790.716115503996, + 5391.615070694001, + 5437.743375219432, + 5488.786460031283, + 5544.744325129557, + 5605.6169705142465, + 5671.4043961853595, + 5742.106602142889, + 5817.723588386837, + 5898.255354917209, + 5983.701901733999, + 6074.063228837211, + 6169.33933622684, + 6269.530223902888, + 6374.635891865356, + 6484.6563401142475, + 6599.591568649555, + 6719.441577471285, + 6844.206366579431, + 6973.885935973999, + 7108.4802856549895, + 7247.989415622395, + 7392.413325876221, + 7541.752016416471, + 7696.0054872431365, + 7855.17373835622, + 8019.2567697557315, + 8188.254581441653, + 8362.167173413998, + 8540.994545672767, + 8724.736698217952, + 8913.393631049556, + 9106.96534416758, + 9305.451837572024, + 9508.853111262893, + 9717.169165240173, + 9930.399999503876, + 10148.545614053999, + 5840.450085043999, + 5892.288764609431, + 5949.042224461284, + 6010.710464599554, + 6077.293485024245, + 6148.7912857353585, + 6225.203866732888, + 6306.531228016837, + 6392.77336958721, + 6483.930291443999, + 6580.0019935872115, + 6680.98847601684, + 6786.889738732887, + 6897.705781735357, + 7013.436605024247, + 7134.082208599553, + 7259.642592461285, + 7390.117756609433, + 7525.507701043997, + 7665.812425764987, + 7811.031930772396, + 7961.166216066221, + 8116.215281646469, + 8276.179127513136, + 8441.057753666222, + 8610.851160105729, + 8785.559346831653, + 8965.182313843996, + 9149.720061142765, + 9339.17258872795, + 9533.539896599554, + 9732.82198475758, + 9937.018853202024, + 10146.130501932892, + 10360.156930950176, + 10579.098140253876, + 10802.954129843996, + 5142.422237716, + 5184.803875823654, + 5232.100294217728, + 5284.31149289822, + 5341.437471865134, + 5403.478231118469, + 5470.433770658222, + 5542.304090484393, + 5619.0891905969875, + 5700.789070995998, + 5787.403731681434, + 5878.933172653284, + 5975.377393911554, + 6076.736395456244, + 6183.010177287359, + 6294.198739404888, + 6410.302081808842, + 6531.3202044992095, + 6657.253107475999, + 6788.10079073921, + 6923.86325428884, + 7064.540498124889, + 7210.13252224736, + 7360.639326656247, + 7516.060911351557, + 7676.397276333287, + 7841.6484216014305, + 8011.814347155998, + 8186.895052996988, + 8366.890539124395, + 8551.80080553822, + 8741.625852238472, + 8936.365679225135, + 9136.020286498224, + 9340.58967405773, + 9550.073841903655, + 9764.472790035996, + 5384.554710716, + 5430.051320201433, + 5480.462709973285, + 5535.788880031555, + 5596.029830376245, + 5661.185561007358, + 5731.256071924889, + 5806.241363128838, + 5886.1414346192105, + 5970.956286395998, + 6060.685918459212, + 6155.330330808841, + 6254.889523444888, + 6359.363496367356, + 6468.752249576247, + 6583.0557830715525, + 6702.2740968532835, + 6826.407190921431, + 6955.455065275999, + 7089.417719916989, + 7228.295154844396, + 7372.087370058221, + 7520.794365558471, + 7674.416141345136, + 7832.95269741822, + 7996.4040337777315, + 8164.770150423655, + 8338.051047355997, + 8516.246724574767, + 8699.35718207995, + 8887.382419871554, + 9080.322437949579, + 9278.177236314024, + 9480.946814964891, + 9688.631173902173, + 9901.23031312588, + 10118.744232635996, + 5830.708580516, + 5881.812138481431, + 5937.830476733282, + 5998.7635952715555, + 6064.611494096245, + 6135.374173207359, + 6211.051632604889, + 6291.643872288837, + 6377.150892259211, + 6467.572692515997, + 6562.90927305921, + 6663.1606338888405, + 6768.326775004889, + 6878.407696407356, + 6993.403398096248, + 7113.313880071553, + 7238.139142333286, + 7367.879184881433, + 7502.534007715997, + 7642.103610836989, + 7786.587994244395, + 7935.98715793822, + 8090.3011019184705, + 8249.529826185135, + 8413.67333073822, + 8582.73161557773, + 8756.704680703655, + 8935.592526115997, + 9119.395151814768, + 9308.112557799952, + 9501.744744071551, + 9700.29171062958, + 9903.753457474024, + 10112.129984604891, + 10325.421292022174, + 10543.627379725876, + 10766.748247715996, + 5137.232960116, + 5179.040362383655, + 5225.762544937729, + 5277.39950777822, + 5333.951250905135, + 5395.417774318469, + 5461.799078018221, + 5533.095162004393, + 5609.306026276988, + 5690.431670835998, + 5776.472095681433, + 5867.427300813285, + 5963.297286231555, + 6064.082051936245, + 6169.781597927358, + 6280.395924204887, + 6395.925030768841, + 6516.36891761921, + 6641.727584755998, + 6772.00103217921, + 6907.18925988884, + 7047.292267884888, + 7192.31005616736, + 7342.242624736248, + 7497.089973591555, + 7656.8521027332845, + 7821.52901216143, + 7991.120701875997, + 8165.627171876988, + 8345.048422164395, + 8529.38445273822, + 8718.635263598468, + 8912.800854745134, + 9111.881226178224, + 9315.876377897728, + 9524.786309903655, + 9738.611022195997, + 5377.875908366001, + 5422.740822811433, + 5472.520517543282, + 5527.214992561556, + 5586.824247866247, + 5651.348283457358, + 5720.78709933489, + 5795.140695498837, + 5874.40907194921, + 5958.592228685999, + 6047.690165709211, + 6141.70288301884, + 6240.630380614886, + 6344.472658497355, + 6453.2297166662465, + 6566.901555121553, + 6685.488173863284, + 6808.989572891431, + 6937.405752205999, + 7070.73671180699, + 7208.982451694396, + 7352.14297186822, + 7500.218272328471, + 7653.208353075134, + 7811.113214108222, + 7973.93285542773, + 8141.6672770336545, + 8314.316478925997, + 8491.880461104767, + 8674.35922356995, + 8861.752766321551, + 9054.06108935958, + 9251.284192684021, + 9453.42207629489, + 9660.474740192174, + 9872.442184375877, + 10089.324408845994, + 5821.348633616, + 5871.717069981431, + 5927.000286633283, + 5987.198283571556, + 6052.311060796244, + 6122.338618307357, + 6197.280956104887, + 6277.138074188837, + 6361.90997255921, + 6451.5966512159985, + 6546.19811015921, + 6645.71434938884, + 6750.1453689048885, + 6859.491168707356, + 6973.751748796247, + 7092.927109171553, + 7217.017249833284, + 7346.022170781432, + 7479.941872015998, + 7618.776353536988, + 7762.525615344394, + 7911.189657438219, + 8064.76847981847, + 8223.262082485135, + 8386.670465438217, + 8554.99362867773, + 8728.231572203655, + 8906.384296015996, + 9089.451800114768, + 9277.434084499951, + 9470.331149171554, + 9668.14299412958, + 9870.869619374022, + 10078.511024904892, + 10291.067210722174, + 10508.538176825874, + 10730.923923215994, + 5132.425240144, + 5173.658406571654, + 5219.806353285729, + 5270.86908028622, + 5326.8465875731345, + 5387.73887514647, + 5453.545943006222, + 5524.267791152392, + 5599.904419584987, + 5680.455828303999, + 5765.922017309434, + 5856.302986601284, + 5951.598736179554, + 6051.809266044246, + 6156.934576195358, + 6266.974666632887, + 6381.929537356841, + 6501.799188367208, + 6626.5836196639975, + 6756.28283124721, + 6890.896823116842, + 7030.425595272888, + 7174.869147715359, + 7324.227480444247, + 7478.500593459554, + 7637.688486761286, + 7801.791160349429, + 7970.808614223996, + 8144.7408483849895, + 8323.587862832394, + 8507.34965756622, + 8696.026232586471, + 8889.617587893137, + 9088.123723486227, + 9291.544639365731, + 9499.880335531654, + 9713.130811983998, + 5371.578663644, + 5415.81188304943, + 5464.959882741283, + 5519.022662719556, + 5578.000222984246, + 5641.892563535356, + 5710.699684372889, + 5784.421585496837, + 5863.058266907212, + 5946.609728603998, + 6035.0759705872115, + 6128.45699285684, + 6226.752795412887, + 6329.9633782553565, + 6438.0887413842465, + 6551.128884799553, + 6669.083808501284, + 6791.953512489432, + 6919.737996764, + 7052.437261324989, + 7190.051306172396, + 7332.580131306221, + 7480.023736726472, + 7632.382122433135, + 7789.655288426219, + 7951.843234705729, + 8118.945961271653, + 8290.963468123997, + 8467.895755262769, + 8649.74282268795, + 8836.504670399554, + 9028.18129839758, + 9224.772706682024, + 9426.27889525289, + 9632.699864110173, + 9844.035613253876, + 10060.286142683995, + 5812.370244343999, + 5862.003559109431, + 5916.551654161282, + 5976.014529499556, + 6040.392185124245, + 6109.684621035358, + 6183.891837232886, + 6263.013833716836, + 6347.050610487209, + 6436.002167543997, + 6529.868504887209, + 6628.649622516839, + 6732.345520432888, + 6840.956198635354, + 6954.481657124246, + 7072.921895899555, + 7196.276914961285, + 7324.546714309433, + 7457.731293943998, + 7595.830653864987, + 7738.8447940723945, + 7886.7737145662195, + 8039.61741534647, + 8197.375896413136, + 8360.04915776622, + 8527.637199405732, + 8700.140021331652, + 8877.557623543997, + 9059.890006042766, + 9247.13716882795, + 9439.29911189955, + 9636.37583525758, + 9838.367338902022, + 10045.27362283289, + 10257.094687050178, + 10473.830531553876, + 10695.481156343994, + 5127.999077799999, + 5168.658008387654, + 5214.231719261728, + 5264.7202104222215, + 5320.123481869134, + 5380.4415336024695, + 5445.674365622221, + 5515.8219779283945, + 5590.884370520987, + 5670.8615433999985, + 5755.753496565432, + 5845.560230017285, + 5940.281743755554, + 6039.918037780245, + 6144.4691120913585, + 6253.934966688889, + 6368.315601572841, + 6487.611016743211, + 6611.821212199996, + 6740.94618794321, + 6874.98594397284, + 7013.9404802888885, + 7157.80979689136, + 7306.593893780249, + 7460.292770955554, + 7618.9064284172855, + 7782.434866165431, + 7950.878084199998, + 8124.236082520991, + 8302.508861128395, + 8485.69642002222, + 8673.798759202471, + 8866.815878669135, + 9064.747778422226, + 9267.59445846173, + 9475.355918787654, + 9688.032159399996, + 5365.662976549999, + 5409.26450091543, + 5457.780805567284, + 5511.211890505555, + 5569.557755730244, + 5632.818401241358, + 5700.993827038887, + 5774.084033122837, + 5852.08901949321, + 5935.008786149998, + 6022.843333093211, + 6115.59266032284, + 6213.256767838887, + 6315.835655641355, + 6423.329323730247, + 6535.737772105555, + 6653.061000767282, + 6775.299009715431, + 6902.451798949999, + 7034.519368470988, + 7171.501718278394, + 7313.39884837222, + 7460.210758752471, + 7611.937449419136, + 7768.578920372219, + 7930.135171611729, + 8096.606203137652, + 8267.992014949996, + 8444.292607048767, + 8625.507979433949, + 8811.638132105554, + 9002.683065063582, + 9198.642778308023, + 9399.517271838893, + 9605.306545656174, + 9816.010599759877, + 10031.629434149994, + 5803.773412700001, + 5852.671605865432, + 5906.484579317283, + 5965.212333055556, + 6028.854867080246, + 6097.412181391357, + 6170.884275988887, + 6249.271150872838, + 6332.572806043212, + 6420.789241499999, + 6513.920457243211, + 6611.966453272838, + 6714.9272295888895, + 6822.802786191355, + 6935.593123080249, + 7053.298240255554, + 7175.9181377172845, + 7303.452815465434, + 7435.902273499997, + 7573.266511820988, + 7715.545530428395, + 7862.739329322219, + 8014.847908502471, + 8171.871267969136, + 8333.80940772222, + 8500.662327761731, + 8672.430028087654, + 8849.112508699998, + 9030.709769598767, + 9217.22181078395, + 9408.648632255552, + 9604.990234013581, + 9806.246616058022, + 10012.41777838889, + 10223.503721006175, + 10439.504443909876, + 10660.419947099997, + 5123.954473083999, + 5164.039167831654, + 5209.0386428657275, + 5258.952898186222, + 5313.781933793135, + 5373.52574968647, + 5438.184345866221, + 5507.757722332392, + 5582.245879084989, + 5661.648816123999, + 5745.966533449433, + 5835.199031061285, + 5929.346308959553, + 6028.408367144245, + 6132.385205615357, + 6241.276824372887, + 6355.08322341684, + 6473.804402747209, + 6597.440362363997, + 6725.99110226721, + 6859.45662245684, + 6997.836922932887, + 7141.132003695361, + 7289.341864744245, + 7442.466506079552, + 7600.505927701285, + 7763.46012960943, + 7931.329111803998, + 8104.112874284988, + 8281.811417052395, + 8464.42474010622, + 8651.952843446472, + 8844.395727073135, + 9041.753390986227, + 9244.02583518573, + 9451.213059671656, + 9663.315064443996, + 5360.128847084001, + 5403.098676409431, + 5450.983286021282, + 5503.782675919556, + 5561.496846104245, + 5624.1257965753575, + 5691.669527332888, + 5764.128038376837, + 5841.501329707209, + 5923.789401323999, + 6010.992253227209, + 6103.109885416839, + 6200.142297892886, + 6302.089490655355, + 6408.951463704247, + 6520.728217039553, + 6637.419750661284, + 6759.026064569432, + 6885.547158763999, + 7016.983033244987, + 7153.333688012395, + 7294.59912306622, + 7440.779338406468, + 7591.874334033134, + 7747.884109946219, + 7908.808666145729, + 8074.648002631655, + 8245.402119403998, + 8421.071016462769, + 8601.65469380795, + 8787.15315143955, + 8977.56638935758, + 9172.894407562022, + 9373.13720605289, + 9578.294784830174, + 9788.367143893875, + 10003.354283243993, + 5795.5581386839995, + 5843.72121024943, + 5896.799062101282, + 5954.791694239554, + 6017.699106664246, + 6085.5212993753585, + 6158.258272372888, + 6235.910025656837, + 6318.476559227211, + 6405.957873084, + 6498.353967227212, + 6595.66484165684, + 6697.890496372888, + 6805.030931375356, + 6917.086146664248, + 7034.056142239553, + 7155.940918101285, + 7282.740474249433, + 7414.454810683998, + 7551.083927404987, + 7692.627824412397, + 7839.08650170622, + 7990.45995928647, + 8146.748197153135, + 8307.951215306222, + 8474.06901374573, + 8645.10159247165, + 8821.048951483997, + 9001.911090782765, + 9187.68801036795, + 9378.379710239553, + 9573.986190397582, + 9774.507450842024, + 9979.94349157289, + 10190.294312590177, + 10405.559913893874, + 10625.740295483996, + 5120.291425996001, + 5159.801884903656, + 5204.22712409773, + 5253.567143578223, + 5307.821943345136, + 5366.99152339847, + 5431.075883738222, + 5500.075024364395, + 5573.988945276988, + 5652.817646476, + 5736.561127961433, + 5825.219389733285, + 5918.792431791556, + 6017.280254136245, + 6120.682856767359, + 6229.000239684888, + 6342.232402888843, + 6460.379346379209, + 6583.441070156001, + 6711.417574219212, + 6844.308858568841, + 6982.114923204887, + 7124.835768127362, + 7272.471393336246, + 7425.021798831556, + 7582.486984613285, + 7744.866950681432, + 7912.161697035999, + 8084.371223676991, + 8261.495530604396, + 8443.534617818219, + 8630.488485318472, + 8822.357133105135, + 9019.140561178227, + 9220.83876953773, + 9427.451758183654, + 9638.979527115996, + 5354.976275246001, + 5397.314409531432, + 5444.567324103285, + 5496.735018961555, + 5553.817494106246, + 5615.814749537359, + 5682.7267852548885, + 5754.553601258838, + 5831.295197549212, + 5912.951574125998, + 5999.5227309892125, + 6091.00866813884, + 6187.409385574889, + 6288.724883297357, + 6394.955161306247, + 6506.100219601554, + 6622.160058183285, + 6743.134677051434, + 6869.024076205999, + 6999.8282556469885, + 7135.547215374397, + 7276.180955388222, + 7421.729475688473, + 7572.192776275136, + 7727.570857148221, + 7887.863718307731, + 8053.071359753651, + 8223.193781485998, + 8398.230983504767, + 8578.18296580995, + 8763.049728401553, + 8952.831271279581, + 9147.527594444025, + 9347.138697894892, + 9551.664581632174, + 9761.105245655877, + 9975.460689965994, + 5787.724422296001, + 5835.152372261433, + 5887.495102513283, + 5944.752613051555, + 6006.9249038762455, + 6074.011974987358, + 6146.013826384889, + 6222.930458068838, + 6304.7618700392095, + 6391.5080622959995, + 6483.169034839212, + 6579.74478766884, + 6681.235320784889, + 6787.640634187356, + 6898.960727876247, + 7015.195601851556, + 7136.345256113285, + 7262.409690661432, + 7393.388905495999, + 7529.2829006169895, + 7670.0916760243945, + 7815.815231718222, + 7966.453567698471, + 8122.006683965138, + 8282.474580518221, + 8447.85725735773, + 8618.154714483653, + 8793.366951895998, + 8973.493969594769, + 9158.53576757995, + 9348.492345851553, + 9543.363704409581, + 9743.149843254023, + 9947.850762384893, + 10157.466461802172, + 10371.996941505877, + 10591.442201495998, + 5117.009936536, + 5155.946159603654, + 5199.797162957729, + 5248.562946598223, + 5302.243510525136, + 5360.838854738469, + 5424.348979238223, + 5492.773884024395, + 5566.1135690969895, + 5644.368034455999, + 5727.5372801014355, + 5815.621306033285, + 5908.620112251556, + 6006.533698756247, + 6109.36206554736, + 6217.105212624889, + 6329.763139988841, + 6447.335847639211, + 6569.823335575999, + 6697.225603799212, + 6829.542652308842, + 6966.77448110489, + 7108.921090187359, + 7255.982479556246, + 7407.958649211554, + 7564.849599153285, + 7726.655329381432, + 7893.375839895999, + 8065.011130696989, + 8241.561201784396, + 8423.02605315822, + 8609.405684818472, + 8800.700096765137, + 8996.909288998226, + 9198.033261517732, + 9404.072014323656, + 9615.025547415999, + 5350.205261036, + 5391.911700281432, + 5438.532919813284, + 5490.068919631556, + 5546.5196997362455, + 5607.885260127358, + 5674.165600804889, + 5745.360721768838, + 5821.470623019211, + 5902.495304555998, + 5988.434766379212, + 6079.289008488841, + 6175.058030884888, + 6275.7418335673565, + 6381.340416536249, + 6491.853779791555, + 6607.281923333284, + 6727.624847161432, + 6852.8825512759995, + 6983.055035676989, + 7118.142300364395, + 7258.144345338222, + 7403.061170598469, + 7552.892776145135, + 7707.639161978219, + 7867.300328097731, + 8031.876274503654, + 8201.367001195997, + 8375.772508174767, + 8555.09279543995, + 8739.327862991555, + 8928.47771082958, + 9122.542338954023, + 9321.521747364894, + 9525.415936062174, + 9734.224905045876, + 9947.948654315995, + 5780.272263535998, + 5826.965091901433, + 5878.5727005532835, + 5935.095089491556, + 5996.532258716245, + 6062.884208227358, + 6134.150938024889, + 6210.332448108839, + 6291.428738479212, + 6377.439809135999, + 6468.365660079211, + 6564.20629130884, + 6664.961702824889, + 6770.631894627356, + 6881.216866716247, + 6996.716619091554, + 7117.131151753284, + 7242.460464701434, + 7372.704557936, + 7507.863431456989, + 7647.937085264397, + 7792.925519358221, + 7942.828733738472, + 8097.646728405136, + 8257.37950335822, + 8422.02705859773, + 8591.589394123654, + 8766.066509935998, + 8945.458406034768, + 9129.76508241995, + 9318.986539091555, + 9513.122776049582, + 9712.173793294025, + 9916.13959082489, + 10125.020168642173, + 10338.815526745875, + 10557.525665135996, + 5114.110004704, + 5152.471991931655, + 5195.748759445727, + 5243.940307246224, + 5297.046635333135, + 5355.067743706469, + 5418.0036323662225, + 5485.8543013123935, + 5558.619750544988, + 5636.299980063999, + 5718.894989869434, + 5806.404779961285, + 5898.829350339555, + 5996.168701004246, + 6098.4228319553595, + 6205.591743192888, + 6317.675434716842, + 6434.673906527211, + 6556.587158624, + 6683.415191007213, + 6815.15800367684, + 6951.8155966328895, + 7093.387969875361, + 7239.8751234042475, + 7391.277057219552, + 7547.593771321285, + 7708.825265709433, + 7874.971540383999, + 8046.032595344991, + 8222.008430592396, + 8402.899046126218, + 8588.704441946473, + 8779.424618053135, + 8975.059574446226, + 9175.609311125732, + 9381.073828091654, + 9591.453125343996, + 5345.815804454, + 5386.890548659432, + 5432.880073151283, + 5483.784377929557, + 5539.603462994245, + 5600.337328345359, + 5665.985973982889, + 5736.5493999068385, + 5812.02760611721, + 5892.420592613999, + 5977.728359397212, + 6067.950906466841, + 6163.088233822889, + 6263.140341465356, + 6368.107229394248, + 6477.988897609555, + 6592.7853461112845, + 6712.496574899433, + 6837.122583974, + 6966.663373334988, + 7101.118942982395, + 7240.489292916219, + 7384.774423136471, + 7533.974333643137, + 7688.089024436221, + 7847.11849551573, + 8011.062746881654, + 8179.921778533997, + 8353.695590472767, + 8532.384182697951, + 8715.987555209551, + 8904.505708007582, + 9097.938641092025, + 9296.286354462893, + 9499.548848120176, + 9707.726122063874, + 9920.818176293998, + 5773.201662404001, + 5819.159369169431, + 5870.031856221283, + 5925.819123559556, + 5986.521171184246, + 6052.137999095358, + 6122.66960729289, + 6198.115995776839, + 6278.477164547211, + 6363.753113604, + 6453.943842947211, + 6549.049352576839, + 6649.069642492887, + 6754.004712695357, + 6863.854563184246, + 6978.619193959555, + 7098.298605021284, + 7222.892796369433, + 7352.401768003999, + 7486.82551992499, + 7626.164052132395, + 7770.41736462622, + 7919.58545740647, + 8073.668330473137, + 8232.665983826222, + 8396.578417465731, + 8565.405631391652, + 8739.147625603999, + 8917.804400102767, + 9101.37595488795, + 9289.86228995955, + 9483.26340531758, + 9681.579300962025, + 9884.809976892893, + 10092.955433110174, + 10306.015669613877, + 10523.990686403995, + 5111.591630499999, + 5149.379381887657, + 5192.081913561728, + 5239.699225522223, + 5292.231317769136, + 5349.678190302469, + 5412.039843122221, + 5479.316276228393, + 5551.507489620988, + 5628.6134833, + 5710.634257265434, + 5797.5698115172845, + 5889.420146055555, + 5986.185260880246, + 6087.865155991358, + 6194.459831388888, + 6305.969287072841, + 6422.393523043208, + 6543.7325393, + 6669.98633584321, + 6801.1549126728405, + 6937.238269788889, + 7078.236407191361, + 7224.149324880248, + 7374.977022855554, + 7530.719501117287, + 7691.376759665432, + 7856.948798499998, + 8027.435617620988, + 8202.837217028395, + 8383.15359672222, + 8568.38475670247, + 8758.530696969136, + 8953.591417522228, + 9153.566918361732, + 9358.457199487653, + 9568.262260899997, + 5341.807905500002, + 5382.250954665432, + 5427.608784117284, + 5477.881393855554, + 5533.068783880246, + 5593.170954191359, + 5658.187904788888, + 5728.11963567284, + 5802.966146843211, + 5882.727438299999, + 5967.403510043211, + 6056.994362072839, + 6151.499994388887, + 6250.920406991356, + 6355.255599880248, + 6464.505573055554, + 6578.670326517285, + 6697.749860265433, + 6821.744174299999, + 6950.6532686209885, + 7084.477143228397, + 7223.215798122222, + 7366.869233302471, + 7515.437448769138, + 7668.920444522221, + 7827.3182205617295, + 7990.630776887652, + 8158.858113499998, + 8332.000230398766, + 8510.057127583948, + 8693.028805055552, + 8880.915262813582, + 9073.716500858025, + 9271.432519188891, + 9474.063317806176, + 9681.608896709877, + 9894.069255899996, + 5766.5126188999975, + 5811.735204065432, + 5861.872569517284, + 5916.9247152555545, + 5976.8916412802455, + 6041.773347591357, + 6111.569834188889, + 6186.281101072838, + 6265.907148243211, + 6350.447975699999, + 6439.903583443212, + 6534.273971472839, + 6633.559139788888, + 6737.759088391356, + 6846.873817280248, + 6960.903326455554, + 7079.847615917286, + 7203.706685665433, + 7332.480535699999, + 7466.169166020989, + 7604.772576628396, + 7748.2907675222195, + 7896.72373870247, + 8050.071490169134, + 8208.334021922221, + 8371.51133396173, + 8539.603426287651, + 8712.610298899996, + 8890.531951798766, + 9073.36838498395, + 9261.11959845555, + 9453.78559221358, + 9651.366366258022, + 9853.86192058889, + 10061.272255206173, + 10273.597370109876, + 10490.8372653, + 5109.454813924, + 5146.668329471655, + 5188.7966253057275, + 5235.839701426224, + 5287.797557833135, + 5344.67019452647, + 5406.457611506222, + 5473.159808772394, + 5544.776786324989, + 5621.308544164, + 5702.755082289433, + 5789.116400701284, + 5880.392499399555, + 5976.5833783842445, + 6077.68903765536, + 6183.709477212888, + 6294.644697056842, + 6410.494697187211, + 6531.259477604, + 6656.939038307211, + 6787.53337929684, + 6923.042500572888, + 7063.466402135362, + 7208.805083984247, + 7359.058546119554, + 7514.226788541287, + 7674.309811249433, + 7839.307614243998, + 8009.220197524989, + 8184.047561092397, + 8363.78970494622, + 8548.446629086471, + 8738.018333513135, + 8932.504818226225, + 9131.90608322573, + 9336.222128511656, + 9545.452954083998, + 5338.181564174, + 5377.992918299433, + 5422.719052711284, + 5472.359967409556, + 5526.915662394246, + 5586.3861376653595, + 5650.771393222891, + 5720.071429066839, + 5794.28624519721, + 5873.415841613999, + 5957.460218317211, + 6046.41937530684, + 6140.293312582888, + 6239.082030145357, + 6342.785527994248, + 6451.403806129555, + 6564.936864551285, + 6683.384703259432, + 6806.747322254001, + 6935.024721534988, + 7068.216901102396, + 7206.323860956221, + 7349.34560109647, + 7497.282121523136, + 7650.13342223622, + 7807.899503235732, + 7970.580364521654, + 8138.176006093998, + 8310.686427952769, + 8488.11163009795, + 8670.451612529552, + 8857.706375247582, + 9049.875918252024, + 9246.960241542893, + 9448.959345120176, + 9655.873228983877, + 9867.701893133999, + 5760.205133024, + 5804.6925965894325, + 5854.094840441285, + 5908.411864579554, + 5967.643669004245, + 6031.790253715359, + 6100.851618712888, + 6174.827763996839, + 6253.71868956721, + 6337.5243954239995, + 6426.2448815672105, + 6519.8801479968415, + 6618.430194712888, + 6721.895021715356, + 6830.274629004246, + 6943.569016579553, + 7061.778184441286, + 7184.902132589431, + 7312.940861024, + 7445.894369744987, + 7583.7626587523955, + 7726.545728046219, + 7874.24357762647, + 8026.856207493138, + 8184.383617646221, + 8346.82580808573, + 8514.182778811652, + 8686.454529823997, + 8863.641061122767, + 9045.742372707951, + 9232.758464579554, + 9424.689336737583, + 9621.534989182024, + 9823.295421912891, + 10029.970634930174, + 10241.560628233876, + 10458.065401823998, + 5109.240942630787, + 5146.390654145177, + 5188.4551459459835, + 5235.434418033213, + 5287.328470406861, + 5344.137303066929, + 5405.8609160134165, + 5472.499309246323, + 5544.052482765652, + 5620.520436571397, + 5701.903170663567, + 5788.200685042152, + 5879.412979707158, + 5975.540054658582, + 6076.58190989643, + 6182.538545420696, + 6293.409961231381, + 6409.196157328486, + 6529.897133712008, + 6655.512890381957, + 6786.04342733832, + 6921.488744581103, + 7061.848842110308, + 7207.123719925931, + 7357.313378027973, + 7512.4178164164405, + 7672.43703509132, + 7837.371034052618, + 8007.219813300344, + 8181.9833728344875, + 8361.661712655046, + 8546.254832762032, + 8735.762733155429, + 8930.185413835254, + 9129.522874801494, + 9333.775116054152, + 9542.942137593229, + 5337.802189998385, + 5377.543355729889, + 5422.199301747812, + 5471.770028052157, + 5526.255534642918, + 5585.655821520101, + 5649.970888683704, + 5719.200736133724, + 5793.34536387017, + 5872.404771893027, + 5956.3789602023135, + 6045.267928798012, + 6139.071677680132, + 6237.790206848672, + 6341.423516303634, + 6449.971606045013, + 6563.4344760728145, + 6681.812126387035, + 6805.104556987672, + 6933.311767874732, + 7066.433759048211, + 7204.470530508107, + 7347.42208225443, + 7495.288414287167, + 7648.069526606321, + 7805.7654192119035, + 7968.376092103899, + 8135.901545282316, + 8308.341778747155, + 8485.696792498413, + 8667.966586536084, + 8855.151160860185, + 9047.2505154707, + 9244.264650367639, + 9446.193565550993, + 9653.037261020767, + 9864.795736776956, + 5759.527853660061, + 5803.93363698237, + 5853.254200591101, + 5907.489544486251, + 5966.639668667819, + 6030.704573135809, + 6099.684257890219, + 6173.578722931045, + 6252.387968258297, + 6336.111993871962, + 6424.750799772052, + 6518.30438595856, + 6616.772752431485, + 6720.155899190834, + 6828.4538262366, + 6941.666533568785, + 7059.794021187395, + 7182.836289092421, + 7310.793337283864, + 7443.665165761734, + 7581.451774526018, + 7724.153163576721, + 7871.76933291385, + 8024.300282537392, + 8181.746012447354, + 8344.106522643742, + 8511.381813126543, + 8683.571883895767, + 8860.676734951416, + 9042.696366293476, + 9229.630777921957, + 9421.479969836862, + 9618.243942038183, + 9819.92269452593, + 10026.51622730009, + 10238.02454036067, + 10454.447633707669, + 5257.762653799999, + 5275.771170698766, + 5298.694467883951, + 5326.532545355554, + 5359.2854031135785, + 5396.9530411580245, + 5439.535459488887, + 5487.03265810617, + 5539.444637009878, + 5596.7713962, + 5659.012935676544, + 5726.169255439505, + 5798.240355488887, + 5875.22623582469, + 5957.126896446912, + 6043.942337355555, + 6135.672558550616, + 6232.317560032098, + 6333.877341799997, + 6440.351903854322, + 6551.741246195063, + 6668.045368822221, + 6789.264271735803, + 6915.397954935802, + 7046.446418422219, + 7182.409662195062, + 7323.28768625432, + 7469.080490599995, + 7619.788075232098, + 7775.410440150615, + 7935.947585355554, + 8101.399510846915, + 8271.766216624692, + 8447.047702688891, + 8627.243969039508, + 8812.355015676541, + 9002.380842599996, + 5436.6730763000005, + 5455.357740754323, + 5478.957185495063, + 5507.471410522224, + 5540.900415835802, + 5579.244201435804, + 5622.502767322221, + 5670.676113495061, + 5723.764239954322, + 5781.767146699998, + 5844.684833732099, + 5912.51730105062, + 5985.264548655556, + 6062.926576546912, + 6145.503384724691, + 6232.994973188887, + 6325.401341939505, + 6422.722490976543, + 6524.9584202999995, + 6632.109129909875, + 6744.174619806175, + 6861.154889988886, + 6983.049940458026, + 7109.859771213582, + 7241.584382255553, + 7378.223773583953, + 7519.777945198765, + 7666.246897099996, + 7817.630629287657, + 7973.929141761728, + 8135.142434522219, + 8301.270507569136, + 8472.313360902468, + 8648.270994522225, + 8829.143408428397, + 9014.930602620985, + 9205.632577099997, + 5769.027255200001, + 5788.92898525432, + 5813.74549559506, + 5843.476786222222, + 5878.122857135802, + 5917.683708335801, + 5962.159339822222, + 6011.549751595059, + 6065.854943654322, + 6125.074915999999, + 6189.2096686321, + 6258.259201550618, + 6332.223514755557, + 6411.102608246912, + 6494.896482024692, + 6583.605136088887, + 6677.228570439505, + 6775.766785076542, + 6879.219779999997, + 6987.587555209877, + 7100.870110706175, + 7219.067446488888, + 7342.179562558025, + 7470.206458913581, + 7603.148135555554, + 7741.004592483952, + 7883.775829698764, + 8031.461847199996, + 8184.062644987655, + 8341.578223061728, + 8504.00858142222, + 8671.353720069139, + 8843.613639002466, + 9020.78833822222, + 9202.877817728397, + 9389.882077520988, + 9581.801117599995 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 4.571702450723529, + "volume": 1.135623 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC60A_MP.json b/examples/NyleC60A_MP.json new file mode 100644 index 0000000..890d9bf --- /dev/null +++ b/examples/NyleC60A_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0008201721666666667, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 12240.00000132, + 11989.99999929, + 11699.99999802, + 11390.00000109, + 11249.999997320001, + 10900.000000650001, + 16509.99999996, + 16110.000001479999, + 15629.99999971, + 15110.00000136, + 14349.99999915, + 13890.0000009, + 21759.99999834, + 21330.000002160003, + 20549.999999, + 19780.000000800002, + 18489.99999644, + 17769.9999972, + 24530.00000195, + 24120.00000072, + 23039.99999841, + 21670.00000282, + 19520.000001610002, + 18409.99999905 + ], + "input_power": [ + 3640.0, + 4110.0, + 4860.0, + 5970.0, + 8680.0, + 9950.0, + 3720.0, + 4270.0, + 4990.0, + 6030.0, + 8550.0, + 10020.0, + 3980.0, + 4530.0, + 5240.0, + 6240.0, + 8540.0, + 9550.0, + 4450.0, + 4680.0, + 5370.0, + 6340.0, + 8590.0, + 9550.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 5.162564063345445, + "volume": 1.3627476 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC60A_SP.json b/examples/NyleC60A_SP.json new file mode 100644 index 0000000..457c0d0 --- /dev/null +++ b/examples/NyleC60A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 11753.219939322718, + 11726.332194764565, + 11703.24093047996, + 11683.414463178458, + 11666.297173434521, + 11651.309505687554, + 11637.847968241875, + 11625.285133266716, + 11612.96963679624, + 11600.226178729536, + 11586.355522830614, + 11570.634496728395, + 11552.315991916734, + 11530.628963754407, + 11504.778431465113, + 11473.945478137472, + 11437.28725072503, + 11393.93696004624, + 11343.0038807845, + 11283.573351488118, + 11214.70677457032, + 11135.441616309274, + 11044.791406848046, + 10941.745740194643, + 10825.27027422199, + 10694.306730667926, + 10547.772895135227, + 10384.562617091571, + 10203.545809869578, + 10003.568450666788, + 9783.452580545663, + 9541.996304433562, + 9277.97379112282, + 8990.135273270627, + 8677.207047399155, + 8337.89147389548, + 7970.866977011585, + 11652.34598563085, + 11658.16622244155, + 11666.146455463475, + 11675.840965910224, + 11686.780098860305, + 11698.47026325717, + 11710.393931909168, + 11722.009641489582, + 11732.751992536621, + 11742.031649453413, + 11749.235340508007, + 11753.725857833382, + 11754.842057427422, + 11751.898859152963, + 11744.187246737736, + 11730.974267774394, + 11711.50303372054, + 11684.992719898686, + 11650.638565496247, + 11607.611873565584, + 11555.060011023972, + 11492.106408653608, + 11417.850561101626, + 11331.368026880064, + 11231.710428365875, + 11117.905451800963, + 10988.956847292131, + 10843.844428811122, + 10681.524074194585, + 10500.927725144107, + 10300.963387226193, + 10080.515129872249, + 9838.44308637864, + 9573.58345390661, + 9284.74849348238, + 8970.726529997064, + 8630.281952206687, + 11772.110485811148, + 11745.051640182497, + 11721.808313334242, + 11701.848242047818, + 11684.61522696957, + 11669.529132610787, + 11655.985887347659, + 11643.357483421309, + 11630.991976937781, + 11618.213487868043, + 11604.322200047982, + 11588.594361178411, + 11570.282282825052, + 11548.614340418582, + 11522.794973254571, + 11492.004684493519, + 11455.400041160852, + 11412.113674146909, + 11361.254278206974, + 11301.906611961229, + 11233.131497894788, + 11153.96582235769, + 11063.422535564894, + 10960.490651596285, + 10844.135248396673, + 10713.297467775763, + 10566.89451540823, + 10403.81966083363, + 10222.942237456456, + 10023.107642546147, + 9803.137337237029, + 9561.828846528353, + 9297.95575928433, + 9010.267728234032, + 8697.490469971519, + 8358.32576495574, + 7991.451457510567, + 11671.087586815634, + 11676.717284421882, + 11684.523242782016, + 11694.05924757795, + 11704.855148356522, + 11716.416858529508, + 11728.226355373588, + 11739.741680030382, + 11750.396937506406, + 11759.602296673125, + 11766.743990266921, + 11771.184314889082, + 11772.261631005838, + 11769.290362948337, + 11761.560998912651, + 11748.340090959751, + 11728.870255015569, + 11702.370170870934, + 11668.034582181604, + 11625.034296468257, + 11572.516185116498, + 11509.603183376848, + 11435.394290364773, + 11348.964569060628, + 11249.365146309712, + 11135.623212822225, + 11006.742023173329, + 10861.700895803073, + 10699.45521301644, + 10518.936420983347, + 10319.052029738608, + 10098.685613181982, + 9856.696809078147, + 9591.921319056677, + 9303.17090861212, + 8989.233407103906, + 8648.872707756409, + 11942.425505349333, + 11913.8053032206, + 11889.172593073512, + 11867.989892336433, + 11849.69578230264, + 11833.704908130363, + 11819.407978842723, + 11806.171767327782, + 11793.339110338507, + 11780.228908492812, + 11766.136126273519, + 11750.331792028368, + 11732.062997970037, + 11710.552900176106, + 11685.000718589097, + 11654.58173701644, + 11618.447303130504, + 11575.724828468567, + 11525.517788432833, + 11466.90572229041, + 11398.944233173383, + 11320.664988078694, + 11231.07571786825, + 11129.160217268867, + 11013.878344872279, + 10884.166023135154, + 10738.935238379077, + 10577.074040790556, + 10397.446544421007, + 10198.892927186804, + 9980.229430869207, + 9740.248361114414, + 9477.718087433554, + 9191.38304320265, + 8879.96372566269, + 8542.156695919552, + 8176.63457894405, + 11839.925633227254, + 11843.819517293936, + 11850.03678935538, + 11858.126775308448, + 11867.614864914918, + 11878.002511801513, + 11888.767233459848, + 11899.362611246479, + 11909.218290382876, + 11917.739979955439, + 11924.309452915484, + 11928.284546079256, + 11928.999160127913, + 11925.763259607545, + 11917.862872929169, + 11904.560092368694, + 11885.093074066994, + 11858.67603802984, + 11824.499268127935, + 11781.72911209689, + 11729.507981537257, + 11666.9543519145, + 11593.162762559012, + 11507.203816666106, + 11408.12418129601, + 11294.946587373885, + 11166.669829689805, + 11022.268766898782, + 10860.69432152073, + 10680.873479940512, + 10481.709292407882, + 10262.080873037532, + 10020.843399809088, + 9756.828114567072, + 9468.842323020966, + 9155.669394745137, + 8816.068763178906, + 12113.308678303696, + 12083.088053456882, + 12057.028021744269, + 12034.585881241166, + 12015.194993887784, + 11998.264785489286, + 11983.180745715725, + 11969.304428102103, + 11955.973450048328, + 11942.501492819238, + 11928.178301544593, + 11912.269685219067, + 11894.017516702266, + 11872.639732718722, + 11847.330333857879, + 11817.259384574112, + 11781.573013186713, + 11739.393411879897, + 11689.818836702801, + 11631.92360756949, + 11564.75810825895, + 11487.348786415087, + 11398.698153546722, + 11297.784785027616, + 11183.56332009644, + 11054.96446185679, + 10910.89497727719, + 10750.237697191074, + 10571.85151629681, + 10374.571393157694, + 10157.208350201923, + 9918.54947372263, + 9657.357913877884, + 9372.372884690634, + 9062.309664048807, + 8725.859593705216, + 8361.69007927761, + 12009.082286588493, + 12011.202157981723, + 12015.793888053196, + 12022.40234291472, + 12030.548452543006, + 12039.729210779713, + 12049.417675331413, + 12059.062967769592, + 12068.09027353066, + 12075.900841915964, + 12081.871986091755, + 12085.35708308922, + 12085.685573804465, + 12082.16296299852, + 12074.070819297329, + 12060.666775191758, + 12041.184527037618, + 12014.833835055624, + 11980.800523331407, + 11938.246479815532, + 11886.30965632349, + 11824.104068535678, + 11750.719795997444, + 11665.222982119029, + 11566.655834175608, + 11454.03662330728, + 11326.359684519064, + 11182.595416680912, + 11021.690282527681, + 10842.566808659165, + 10644.123585540074, + 10425.235267500033, + 10184.752572733612, + 9921.502283300264, + 9634.287245124426, + 9321.886367995396, + 8983.05462556744, + 12284.799900805185, + 12252.939130695035, + 12225.413182822967, + 12201.674135911238, + 12181.150132546985, + 12163.245379182299, + 12147.340146134182, + 12132.790767584554, + 12118.929641580282, + 12105.065230033111, + 12090.48205871975, + 12074.44071728182, + 12056.177859225842, + 12034.90620192329, + 12009.81452661054, + 11980.067678388903, + 11944.806566224612, + 11903.148162948813, + 11854.185505257574, + 11796.987693711893, + 11730.599892737706, + 11654.043330625835, + 11566.315299532047, + 11466.38915547704, + 11353.214318346407, + 11225.716271890687, + 11082.796563725351, + 10923.332805330743, + 10746.178672052185, + 10550.163903099889, + 10334.09430154902, + 10096.75173433961, + 9836.894132276675, + 9553.255490030104, + 9244.545866134767, + 8909.451382990394, + 8546.634226861679, + 12178.591888479774, + 12178.89888034892, + 12181.827545022377, + 12186.918288826904, + 12193.687581954153, + 12201.627958460733, + 12210.208016268132, + 12218.872417162793, + 12227.04188679607, + 12234.113214684245, + 12239.459254208523, + 12242.42892261501, + 12242.347201014763, + 12238.515134383753, + 12230.209831562875, + 12216.68446525792, + 12197.168272039655, + 12170.86655234372, + 12136.9606704707, + 12094.608054586097, + 12042.942196720338, + 11981.072652768771, + 11908.085042491675, + 11823.041049514239, + 11724.978421326578, + 11612.91096928373, + 11485.828568605662, + 11342.697158377254, + 11182.458741548315, + 11004.031384933573, + 10806.30921921269, + 10588.162438930212, + 10348.437302495675, + 10085.95613218345, + 9799.517314132934, + 9487.89529834836, + 9149.840598698927, + 12456.939258442737, + 12423.39796419677, + 12394.366849244096, + 12369.292772953893, + 12347.598658560242, + 12328.683493162178, + 12311.922327723621, + 12296.666277073446, + 12282.242519905423, + 12267.954298778264, + 12253.080920115603, + 12236.877754205983, + 12218.576235202878, + 12197.383861124685, + 12172.484193854722, + 12143.036859141232, + 12108.177546597384, + 12067.018009701247, + 12018.646065795843, + 11962.125596089096, + 11896.496545653868, + 11820.774923427936, + 11733.952802213986, + 11634.998318679649, + 11522.855673357466, + 11396.445130644901, + 11254.663018804362, + 11096.381729963134, + 10920.449720113464, + 10725.691509112505, + 10510.907680682349, + 10274.87488240998, + 10016.345825747334, + 9734.049286011243, + 9426.69010238349, + 9092.949177910772, + 8731.483479504697, + 12348.488969939548, + 12346.9435477172, + 12348.170955867843, + 12351.707140933164, + 12357.064113319764, + 12363.729947299184, + 12371.168781007871, + 12378.820816447185, + 12386.10231948345, + 12392.405619847867, + 12397.099111136587, + 12399.527250810661, + 12399.010560196084, + 12394.845624483765, + 12386.305092729548, + 12372.637677854174, + 12353.06815664332, + 12326.797369747588, + 12293.002221682505, + 12250.835680828512, + 12199.426779430974, + 12137.88061360018, + 12065.278343311351, + 11980.677192404624, + 11883.110448585045, + 11771.587463422595, + 11645.093652352185, + 11502.590494673637, + 11343.015533551696, + 11165.282376016037, + 10968.280692961254, + 10750.876219146852, + 10511.91075319729, + 10250.202157601892, + 9964.54435871498, + 9653.70734675574, + 9316.437175808318, + 12629.767026263327, + 12594.504172681814, + 12563.927983400135, + 12537.480098434384, + 12514.578221665584, + 12494.616120839699, + 12476.963627567595, + 12460.966637325071, + 12445.947109452834, + 12431.203067156535, + 12416.00859750674, + 12399.613851438924, + 12381.245043753499, + 12360.104453115799, + 12335.370422056083, + 12306.19735696951, + 12271.715728116189, + 12231.03206962114, + 12183.228979474308, + 12127.365119530556, + 12062.475215509668, + 11987.570056996374, + 11901.636497440279, + 11803.637454155963, + 11692.511908322896, + 11567.174904985475, + 11426.517553053038, + 11269.407025299814, + 11094.68655836498, + 10901.175452752635, + 10687.669072831786, + 10452.93884683636, + 10195.732266865238, + 9914.772888882173, + 9608.760332715896, + 9276.370282060028, + 8916.25448447311, + 12518.808251464281, + 12515.37021286627, + 12514.857505652517, + 12516.80161657966, + 12520.710096269226, + 12526.066559207713, + 12532.330683746492, + 12538.938212101892, + 12545.30095035514, + 12550.806768452409, + 12554.819600204766, + 12556.679443288227, + 12555.70235924372, + 12551.18047347709, + 12542.381975259124, + 12528.551117725496, + 12508.90821787684, + 12482.649656578702, + 12448.947878561532, + 12406.951392420717, + 12355.784770616568, + 12294.548649474316, + 12222.319729184122, + 12138.150773801059, + 12041.070611245119, + 11930.084133301223, + 11804.17229561922, + 11662.292117713878, + 11503.376682964878, + 11326.335138616843, + 11130.0526957793, + 10913.390629426705, + 10675.186278398443, + 10414.253045398793, + 10129.380396997018, + 9819.333863627236, + 9482.85503958854, + 12706.83790609463, + 12670.796297661975, + 12639.520180987221, + 12612.448875562108, + 12588.997764743275, + 12568.558295752315, + 12550.497979675723, + 12534.160391464915, + 12518.865169936245, + 12503.908017770975, + 12488.560701515295, + 12472.071051580326, + 12453.662962242091, + 12432.536391641559, + 12407.867361784605, + 12378.807958542033, + 12344.486331649568, + 12304.006694707865, + 12256.449325182482, + 12200.870564403916, + 12136.30281756759, + 12061.754553733841, + 11976.210305827924, + 11878.630670640026, + 11767.95230882525, + 11643.087944903627, + 11502.926367260117, + 11346.332428144575, + 11172.147043671808, + 10979.187193821537, + 10766.24592243841, + 10532.09233723196, + 10275.471609776714, + 9995.104975512048, + 9689.689733742307, + 9357.899247636753, + 8998.382944229557, + 12594.67691548885, + 12590.384334577204, + 12589.085318425312, + 12590.30937096935, + 12593.562060010438, + 12598.325017214605, + 12604.05593811281, + 12610.18858210093, + 12616.132772439762, + 12621.274396255032, + 12624.975404537388, + 12626.573812142393, + 12625.383697790545, + 12620.695204067244, + 12611.774537422843, + 12597.863968172594, + 12578.181830496675, + 12551.922522440196, + 12518.256505913176, + 12476.330306690563, + 12425.266514412242, + 12364.163782582984, + 12292.096828572525, + 12208.116433615505, + 12111.249442811468, + 12000.498765124908, + 11874.843373385236, + 11733.238304286775, + 11574.61465838878, + 11397.879600115426, + 11201.916357755812, + 10985.584223463944, + 10747.718553258788, + 10487.13076702417, + 10202.608348508911, + 9892.914845326719, + 9556.789868956219, + 12803.323668771956, + 12766.297564327948, + 12734.135737141616, + 12706.274607876003, + 12682.126661059057, + 12661.080445083682, + 12642.500572207677, + 12625.72771855377, + 12610.078624109618, + 12594.84609272779, + 12579.298992125794, + 12562.68225388604, + 12544.216873455873, + 12523.099910147565, + 12498.504487138298, + 12469.579791470183, + 12435.451074050265, + 12395.21964965048, + 12347.96289690772, + 12292.73425832378, + 12228.563240265385, + 12154.455412964187, + 12069.39241051674, + 11972.331930884553, + 11862.20773589403, + 11737.929651236496, + 11598.383566468236, + 11442.431435010405, + 11268.911274149124, + 11076.637165035421, + 10864.399252685234, + 10630.96374597943, + 10375.07291766383, + 10095.445104349115, + 9790.774706510947, + 9459.732188489887, + 9100.96407849141, + 12689.584643008477, + 12684.21311803387, + 12681.920768897384, + 12682.2346225706, + 12684.65776989, + 12688.669365557, + 12693.724628137925, + 12699.254840064046, + 12704.66734763153, + 12709.34556100148, + 12712.648954199924, + 12713.913065117806, + 12712.449495510991, + 12707.54591100028, + 12698.466041071384, + 12684.449679074934, + 12664.712682226509, + 12638.446971606563, + 12604.820532160513, + 12562.97741269869, + 12512.037725896344, + 12451.097648293633, + 12379.229420295667, + 12295.481346172464, + 12198.877794058957, + 12088.419195954999, + 11963.082047725393, + 11821.818909099838, + 11663.558403672963, + 11487.205218904328, + 11291.640106118406, + 11075.71988050458, + 10838.277421117193, + 10578.121670875458, + 10294.037636563577, + 9984.786388830616, + 9649.105062190598, + 12977.649839931632, + 12938.81813677094, + 12905.029451777094, + 12875.714986260075, + 12850.282005394754, + 12828.113838220983, + 12808.569877643486, + 12790.98558043193, + 12774.672467220911, + 12758.918122509931, + 12742.986194663432, + 12726.116395910756, + 12707.524502346187, + 12686.402353928926, + 12661.9178544831, + 12633.21497169775, + 12599.413737126846, + 12559.610246189275, + 12512.876658168854, + 12458.261196214313, + 12394.788147339319, + 12321.457862422449, + 12237.2467562072, + 12141.107307302009, + 12031.968058180213, + 11908.73361518009, + 11770.284648504843, + 11615.477892222567, + 11443.14614426631, + 11252.098266434044, + 11041.119184388643, + 10808.969887657904, + 10554.387429634584, + 10276.084927576288, + 9972.751562605634, + 9643.052579710109, + 9285.629287742122, + 12860.853243984653, + 12853.506694915748, + 12849.394509581438, + 12848.03925516823, + 12848.939562727543, + 12851.570127175752, + 12855.381707294116, + 12859.801125728836, + 12864.23126899103, + 12868.051087456748, + 12870.61559536695, + 12871.255870827517, + 12869.279055809271, + 12863.968356147938, + 12854.583041544183, + 12840.358445563563, + 12820.505965636597, + 12794.21306305871, + 12760.643262990241, + 12718.936154456447, + 12668.207390347534, + 12607.548687418608, + 12536.027826289705, + 12452.688651445795, + 12356.551071236743, + 12246.611057877357, + 12121.840647447372, + 11981.187939891426, + 11823.57709901909, + 11647.908352504866, + 11453.057991888172, + 11237.878372573325, + 11001.19791382961, + 10741.821098791192, + 10458.5284744572, + 10150.076651691643, + 9815.198305223494, + 13152.786383163408, + 13112.106077104601, + 13076.648658073129, + 13045.840108025908, + 13019.082472784752, + 12995.753862036432, + 12975.20844933262, + 12956.776472089927, + 12939.764231589854, + 12923.454092978858, + 12907.104485268315, + 12889.949901334501, + 12871.200897918634, + 12850.044095626849, + 12825.642178930204, + 12797.133896164683, + 12763.634059531183, + 12724.233545095536, + 12677.99929278848, + 12623.974306405693, + 12561.177653607761, + 12488.604465920214, + 12405.22593873348, + 12309.989331302917, + 12201.817966748818, + 12079.611232056373, + 11942.244578075732, + 11788.569519521925, + 11617.413634974942, + 11427.580566879671, + 11217.850021545939, + 10986.977769148463, + 10733.695643726945, + 10456.711543185927, + 10154.709429294955, + 9826.349327688447, + 9470.267327865755, + 13032.649343263347, + 13023.28556466568, + 13017.312681141671, + 13014.248800092768, + 13013.588092785336, + 13014.800794350675, + 13017.333203784996, + 13020.607683949438, + 13024.022661570063, + 13026.952627237846, + 13028.74813540872, + 13028.735804403485, + 13026.218316407903, + 13020.474417472651, + 13010.758917513323, + 12996.302690310433, + 12976.312673509428, + 12949.971868620676, + 12916.439341019463, + 12874.850219945987, + 12824.315698505387, + 12763.923033667714, + 12692.73554626795, + 12609.792621006, + 12514.109706446668, + 12404.678315019715, + 12280.4660230198, + 12140.416470606515, + 11983.44936180437, + 11808.460464502805, + 11614.32161045618, + 11399.880695283753, + 11163.961678469755, + 10905.36458336328, + 10622.865497178418, + 10315.216570994105, + 9981.146019754246, + 13328.774331346336, + 13286.201761880742, + 13249.033076254304, + 13216.689037070859, + 13188.566470799164, + 13164.038267772918, + 13142.453382190735, + 13123.136832116148, + 13105.389699477611, + 13088.489130068516, + 13071.688333547148, + 13054.216583436739, + 13035.279217125437, + 13014.057635866315, + 12989.709304777363, + 12961.367752841496, + 12928.142572906552, + 12889.119421685293, + 12843.360019755402, + 12789.902151559478, + 12727.759665405058, + 12655.922473464585, + 12573.35655177543, + 12479.003940239902, + 12371.782742625206, + 12250.587126563487, + 12114.287323551818, + 11961.729628952164, + 11791.736401991448, + 11603.106065761503, + 11394.61310721908, + 11165.008077185841, + 10913.01759034841, + 10637.344325258277, + 10336.667024331911, + 10009.640493850677, + 9654.895603960857, + 13205.00841917312, + 13193.584537895464, + 13185.70942647313, + 13180.896732522502, + 13178.63616752488, + 13178.39350682651, + 13179.610589638542, + 13181.70531903706, + 13184.07166196307, + 13186.079649222474, + 13187.07537548616, + 13186.380999289857, + 13183.294743034281, + 13177.090892985041, + 13167.019799272679, + 13152.307875892644, + 13132.157600705323, + 13105.747515436036, + 13072.232225674994, + 13030.742400877345, + 12980.384774363172, + 12920.242143317464, + 12849.373368790144, + 12766.813375696056, + 12671.57315281495, + 12562.639752791516, + 12438.976292135374, + 12299.52195122104, + 12143.191974287969, + 11968.877669440553, + 11775.446408648071, + 11561.74162774475, + 11326.582826429738, + 11068.765568267083, + 10787.061480685807, + 10480.2182549798, + 10146.9596463079, + 13505.654906817526, + 13461.14575710925, + 13422.222616003259, + 13388.301026750329, + 13358.772596466159, + 13333.004996131373, + 13310.341960591513, + 13290.103288557064, + 13271.58484260341, + 13254.058549170863, + 13236.772398564668, + 13218.950444954977, + 13199.792806376872, + 13178.475664730362, + 13154.151265780376, + 13125.947919156757, + 13092.969998354285, + 13054.297940732653, + 13008.988247516474, + 12956.073483795299, + 12894.562278523574, + 12823.439324520701, + 12741.66537847098, + 12648.177260923643, + 12541.88785629284, + 12421.686112857646, + 12286.43704276207, + 12134.981722015014, + 11966.137290490336, + 11778.69695192681, + 11571.429973928101, + 11343.081687962827, + 11092.373489364541, + 10818.002837331665, + 10518.643254927605, + 10192.944329080648, + 9839.531710584035, + 13377.966139500562, + 13364.438614674942, + 13354.619077928894, + 13348.016717093738, + 13344.116783865727, + 13342.38059380604, + 13342.245526340781, + 13343.12502476097, + 13344.408596222538, + 13345.461811746361, + 13345.626306218222, + 13344.219778388837, + 13340.535990873845, + 13333.844770153792, + 13323.392006574155, + 13308.399654345334, + 13288.06573154268, + 13261.564320106401, + 13228.045565841685, + 13186.63567841862, + 13136.436931372224, + 13076.527662102428, + 13005.962271874092, + 12923.771225817, + 12828.961052925859, + 12720.514346060287, + 12597.389761944833, + 12458.522021168976, + 12302.821908187112, + 12129.176271318553, + 11936.44802274754, + 11723.476138523232, + 11489.075658559723, + 11232.037686635993, + 10951.12939039601, + 10645.0940013486, + 10312.65081486756, + 13683.469521372088, + 13636.978818257989, + 13596.257376460631, + 13560.71551987772, + 13529.739636271897, + 13502.69217727071, + 13478.911658366655, + 13457.712658917135, + 13438.385822144468, + 13420.197855135906, + 13402.391528843631, + 13384.185678084723, + 13364.775201541212, + 13343.33106176003, + 13319.000285153044, + 13290.905961997036, + 13258.147246433711, + 13219.7993564697, + 13174.91357397656, + 13122.517244690767, + 13061.61377821371, + 12991.182648011722, + 12910.179391416024, + 12817.53560962281, + 12712.158967693143, + 12592.933194553043, + 12458.718082993455, + 12308.349489670207, + 12140.639335104095, + 11954.375603680832, + 11748.322343651027, + 11521.219667130206, + 11271.783750098875, + 10998.706832402386, + 10700.657217751092, + 10376.279273720202, + 10024.193431749889, + 13551.558361490317, + 13535.882984531963, + 13524.076157320025, + 13515.64260790079, + 13510.063128185431, + 13506.79457395007, + 13505.269864835742, + 13504.897984348414, + 13505.063979858975, + 13505.128962603227, + 13504.430107681897, + 13502.280654060643, + 13497.969904570036, + 13490.763225905568, + 13479.902048627673, + 13464.603867161679, + 13444.06223979785, + 13417.446788691395, + 13383.9031998624, + 13342.553223195906, + 13292.494672441864, + 13232.801425215157, + 13162.523422995584, + 13080.686671127878, + 12986.29323882166, + 12878.321259151511, + 12755.724929056927, + 12617.434509342314, + 12462.356324677005, + 12289.372763595265, + 12097.342278496271, + 11885.099385644122, + 11651.45466516786, + 11395.194761061393, + 11115.082381183647, + 10809.856297258377, + 10478.231344874323, + 13862.259776263141, + 13813.74189025285, + 13771.177646225065, + 13733.972148724457, + 13701.50656616056, + 13673.13813080789, + 13648.200138805858, + 13626.00195015882, + 13605.828988736015, + 13586.942742271634, + 13568.580762364792, + 13549.956664479514, + 13530.260127944743, + 13508.656895954367, + 13484.288775567178, + 13456.273637706896, + 13423.705417162164, + 13385.654112586544, + 13341.165786498526, + 13289.262565281511, + 13228.94263918385, + 13159.180262318787, + 13078.925752664496, + 12987.105492064082, + 12882.621926225565, + 12764.353564721887, + 12631.154980990941, + 12481.856812335482, + 12315.265759923232, + 12130.164588786842, + 11925.312127823869, + 11699.443269796762, + 11451.268971332966, + 11179.476252924771, + 10882.72819892945, + 10559.663957569177, + 10208.898740931027, + 13725.82113184498, + 13707.95302645238, + 13694.115375915646, + 13683.80844849599, + 13676.508576319546, + 13671.66815537738, + 13668.715645525448, + 13667.055570484676, + 13666.068517840884, + 13665.111139044819, + 13663.516149412155, + 13660.592328123472, + 13655.624518224295, + 13647.873626625063, + 13636.57662410114, + 13620.9465452928, + 13600.172488705257, + 13573.41961670864, + 13539.829155537987, + 13498.518395293284, + 13448.58068993943, + 13389.085457306228, + 13319.078179088425, + 13237.580400845703, + 13143.589732002632, + 13036.07984584871, + 12914.000479538383, + 12776.277434091013, + 12621.812574390853, + 12449.483829187124, + 12258.145191093941, + 12046.626716590337, + 11813.734526020298, + 11558.250803592688, + 11278.93379738134, + 10974.51781932499, + 10643.713245227285, + 14042.067462201861, + 13991.476107477762, + 13947.023903353269, + 13908.110735019965, + 13874.112551534361, + 13844.381365817877, + 13818.24525465687, + 13795.00835870262, + 13773.950882471314, + 13754.329094344073, + 13735.375326566944, + 13716.297975250884, + 13696.281500371784, + 13674.48642577046, + 13650.049339152632, + 13622.082892088962, + 13589.675800015026, + 13551.892842231318, + 13507.774861903268, + 13456.338766061213, + 13396.577525600427, + 13327.460175281107, + 13247.931813728344, + 13156.913603432191, + 13053.3027707476, + 12935.97260589444, + 12803.772462957539, + 12655.5277598866, + 12490.039978496274, + 12306.086664466142, + 12102.421427340698, + 11877.773940529334, + 11630.849941306411, + 11360.331230811173, + 11064.875674047818, + 10743.117199885453, + 10393.665801058098, + 13900.790686725217, + 13880.684308880089, + 13864.77163444286, + 13852.548471889713, + 13843.48669356169, + 13837.034235664816, + 13832.61509826999, + 13829.62934531307, + 13827.453104594815, + 13825.43856778092, + 13822.913990401998, + 13819.183691853583, + 13813.528055396124, + 13805.203528154998, + 13793.442621120526, + 13777.453909147911, + 13756.422030957317, + 13729.507689133803, + 13695.847650127362, + 13654.554744252913, + 13604.717865690287, + 13545.401972484246, + 13475.648086544474, + 13394.47329364558, + 13300.870743427087, + 13193.809649393435, + 13072.235288914011, + 12935.069003223103, + 12781.208197419935, + 12609.526340468645, + 12418.872965198285, + 12208.073668302848, + 11975.930110341254, + 11721.2200157373, + 11442.697172779774, + 11139.091433622341, + 10809.1087142836, + 14222.934559357409, + 14170.222793774661, + 14123.836815359928, + 14083.171289951733, + 14047.596947253533, + 14016.460580833673, + 13989.085048125446, + 13964.76927042707, + 13942.788232901661, + 13922.39298457728, + 13902.810638346902, + 13883.244370968438, + 13862.873423064688, + 13840.853099123411, + 13816.314767497275, + 13788.365860403856, + 13756.089873925685, + 13718.546368010186, + 13674.77096646971, + 13623.775356981543, + 13564.547291087894, + 13496.050584195882, + 13417.225115577547, + 13326.98682836987, + 13224.227729574735, + 13107.815890058951, + 12976.595444554281, + 12829.38659165736, + 12664.985593829779, + 12482.16477739805, + 12279.6725325536, + 12056.233313352748, + 11810.54763771682, + 11541.29208743196, + 11247.119308149322, + 10926.658009384939, + 10578.512964519765, + 14076.503451749717, + 14054.112589717002, + 14036.080023086843, + 14021.89710055034, + 14011.031234663484, + 14002.925901847231, + 13997.000642387438, + 13992.651060434906, + 13989.248824005332, + 13986.141664979332, + 13982.653379102476, + 13978.08382598524, + 13971.708929103017, + 13962.78067579612, + 13950.527117269805, + 13934.152368594221, + 13912.836608704472, + 13885.736080400571, + 13851.983090347441, + 13810.68600907493, + 13760.929270977831, + 13701.773374315835, + 13632.25488121358, + 13551.386417660598, + 13458.156673511356, + 13351.530402485258, + 13230.448422166604, + 13093.827614004638, + 12940.560923313515, + 12769.517359272317, + 12579.541994925054, + 12369.455967180636, + 12138.056476812935, + 11884.116788460691, + 11606.386230627633, + 11303.590195682358, + 10974.430139858418, + 14404.903237357019, + 14350.023462443522, + 14301.657239217786, + 14259.194014165274, + 14221.99929763635, + 14189.414663846319, + 14160.757750875388, + 14135.322260668721, + 14112.377959036383, + 14091.170675653344, + 14070.922304059528, + 14050.830801659768, + 14030.070189723821, + 14007.790553386374, + 13983.118041647012, + 13955.154867370262, + 13922.97930728559, + 13885.64570198734, + 13842.184455934823, + 13791.602037452243, + 13732.880978728745, + 13664.979875818377, + 13586.833388640125, + 13497.352240977905, + 13395.423220480528, + 13279.909178661752, + 13149.64903090025, + 13003.457756439617, + 12840.126398388362, + 12658.422063719938, + 12457.087923272704, + 12234.84321174994, + 11990.383227719858, + 11722.37933361557, + 11429.478955735158, + 11110.305584241583, + 10763.458773162749, + 14252.996041995175, + 14228.273816323073, + 14208.075821490764, + 14191.888946404286, + 14179.176143834573, + 14169.376430417535, + 14161.904886653947, + 14156.15265690957, + 14151.486949415026, + 14147.251036265889, + 14142.764253422667, + 14137.322000710765, + 14130.195741820526, + 14120.633004307198, + 14107.857379590992, + 14091.068522956992, + 14069.442153555237, + 14042.130054400675, + 14008.260072373178, + 13966.936118217545, + 13917.2381665435, + 13858.222255825682, + 13788.92048840365, + 13708.341030481899, + 13615.468112129836, + 13509.26202728179, + 13388.659133737014, + 13252.571853159689, + 13099.888671078916, + 12929.47413688872, + 12740.16886384804, + 12530.78952908074, + 12300.12887357562, + 12046.955702186373, + 11770.014883631668, + 11468.027350495031, + 11139.690099224965, + 14588.015855285896, + 14530.919816242342, + 14480.526221357604, + 14436.219297764088, + 14397.359336459083, + 14363.282692304843, + 14333.3017840285, + 14306.70509422216, + 14282.757169342796, + 14260.698619712357, + 14239.74611951767, + 14219.092406810518, + 14197.906283507578, + 14175.332615390482, + 14150.492332105758, + 14122.482427164856, + 14090.375957944167, + 14053.222045685001, + 14010.04587549356, + 13959.848696341029, + 13901.607821063459, + 13834.276626361843, + 13756.784552802103, + 13668.03710481508, + 13566.915850696529, + 13452.278422607133, + 13322.958516572511, + 13177.765892483187, + 13015.486374094613, + 12834.88184902717, + 12634.690268766144, + 12413.62564866175, + 12170.378067929163, + 11903.613669648406, + 11611.974660764488, + 11294.079312087328, + 10948.521958291747, + 14430.305261996344, + 14403.20412551627, + 14380.794498755824, + 14362.558810835988, + 14347.955554742637, + 14336.419287326607, + 14327.36062930364, + 14320.166265254426, + 14314.198943624522, + 14308.797476724447, + 14303.27674072964, + 14296.927675680465, + 14289.017285482205, + 14278.788637905038, + 14265.460864584122, + 14248.22916101947, + 14226.264786576083, + 14198.715064483842, + 14164.70338183755, + 14123.32918959696, + 14073.66800258673, + 14014.771399496442, + 13945.667022880602, + 13865.358579158634, + 13772.82583861489, + 13667.024635398644, + 13546.886867524097, + 13411.320496870361, + 13259.20954918147, + 13089.414114066401, + 12900.770344999042, + 12692.090459318182, + 12462.162738227575, + 12209.75152679584, + 11933.597233956596, + 11632.416332508325, + 11304.901359114443, + 14772.314961687312, + 14712.953747387142, + 14660.48499766817, + 14614.287720309734, + 14573.716986956062, + 14538.103933116332, + 14506.755758164622, + 14478.955725339967, + 14453.963161746296, + 14431.013458352449, + 14409.318069992232, + 14388.064515364336, + 14366.416377032383, + 14343.513301424937, + 14318.47099883546, + 14290.381243422342, + 14258.311873208904, + 14221.306790083388, + 14178.385959798954, + 14128.545411973682, + 14070.757240090583, + 14003.969601497583, + 13927.10671740754, + 13839.068872898213, + 13738.732416912317, + 13624.94976225746, + 13496.54938560619, + 13352.33582749597, + 13191.089692329178, + 13011.56764837315, + 12812.502427760091, + 12592.602826487158, + 12350.553704416454, + 12085.01598527494, + 11794.626656654566, + 11477.998770012173, + 11133.721440669522, + 14608.468105745955, + 14578.939843572576, + 14554.271713441258, + 14533.941684687912, + 14517.40379051338, + 14504.088127983416, + 14493.40085802871, + 14484.724205444887, + 14477.416458892456, + 14470.81197089688, + 14464.221157848528, + 14456.930500002705, + 14448.20254147964, + 14437.275890264458, + 14423.365218207244, + 14405.661261022962, + 14383.330818291555, + 14355.51675345784, + 14321.337993831563, + 14279.889530587414, + 14230.242418765003, + 14171.443777268838, + 14102.516788868379, + 14022.460700197984, + 13930.250821756954, + 13824.838527909487, + 13705.15125688474, + 13570.092510776769, + 13418.54185554454, + 13249.35492101197, + 13061.363400867896, + 12853.37505266604, + 12624.1736978251, + 12372.519221628638, + 12097.147573225222, + 11796.770765628245, + 11470.076875716108, + 14957.843294562528, + 14896.16733755195, + 14841.574993496271, + 14793.440050821757, + 14751.112361819587, + 14713.917842645864, + 14681.158473321602, + 14652.112297732774, + 14626.033423630233, + 14602.15202262977, + 14579.674330212105, + 14557.782645722886, + 14535.635332372662, + 14512.366817236923, + 14487.087591256077, + 14458.884209235439, + 14426.819289845283, + 14389.931515620758, + 14347.235632961989, + 14297.722452133963, + 14240.358847266642, + 14174.087756354886, + 14097.828181258483, + 14010.475187702134, + 13910.899905275486, + 13797.949527433067, + 13670.447311494392, + 13527.192578643831, + 13366.960713930705, + 13188.503166269273, + 12990.5474484387, + 12771.797137083073, + 12530.931872711402, + 12266.607359697613, + 11977.45536628058, + 11662.083724564078, + 11319.07633051681, + 14787.521756694787, + 14755.517486225996, + 14728.543313564289, + 14706.072748260529, + 14687.555363730484, + 14672.41679725487, + 14660.058749979306, + 14649.858986914358, + 14641.17133693547, + 14633.32569278306, + 14625.628011062427, + 14617.360312243827, + 14607.780680662418, + 14596.123264518274, + 14581.598275876413, + 14563.391990666767, + 14540.666748684174, + 14512.560953588425, + 14478.189072904206, + 14436.641638021147, + 14386.985244193775, + 14328.262550541576, + 14259.492280048913, + 14179.669219565123, + 14087.76421980442, + 13982.724195345956, + 13863.47212463383, + 13728.907049977026, + 13577.904077549469, + 13409.314377390005, + 13221.965183402415, + 13014.659793355358, + 12786.177568882484, + 12535.273935482297, + 12260.680382518278, + 11961.104463218802, + 11635.229794677178, + 15144.643781370847, + 15080.60285786883, + 15023.837823646738, + 14973.71724777777, + 14929.585763200033, + 14890.764066716563, + 14856.54891899533, + 14826.213144569223, + 14799.005631836031, + 14774.15133305848, + 14750.851264364244, + 14728.282505745876, + 14705.598201060888, + 14681.927558031683, + 14656.375848245601, + 14628.024407154917, + 14595.930634076822, + 14559.12799219341, + 14516.626008551715, + 14467.410274063694, + 14410.442443506226, + 14344.660235521107, + 14268.977432615053, + 14182.28388115972, + 14083.445491391667, + 13971.304237412378, + 13844.678157188282, + 13702.361352550692, + 13543.12398919587, + 13365.712296685013, + 13168.848568444211, + 12951.23116176447, + 12711.534497801775, + 12448.409061576953, + 12160.48140197583, + 11846.35413174911, + 11504.60592751243, + 14967.50358775164, + 14932.973758668575, + 14903.645336600206, + 14878.987371312356, + 14858.444976435732, + 14841.43932946598, + 14827.367671763675, + 14815.6033085543, + 14805.495608928279, + 14796.370005840932, + 14787.527996112523, + 14778.24714042824, + 14767.78106333818, + 14755.35945325737, + 14740.18806246576, + 14721.448707108213, + 14698.299267194529, + 14669.87368659943, + 14635.281973062547, + 14593.610198188437, + 14543.920497446592, + 14485.251070171405, + 14416.616179562225, + 14337.00615268329, + 14245.38738046377, + 14140.702317697771, + 14021.86948304431, + 13887.783459027329, + 13737.31489203568, + 13569.310492323168, + 13382.593034008498, + 13175.961355075284, + 12948.190357372107, + 12698.031006612406, + 12424.210332374625, + 12125.431428102065, + 11800.373451102972, + 15332.759539029596, + 15266.30276892787, + 15207.315292382405, + 15155.160459113364, + 15109.177682705755, + 15068.682440609567, + 15032.966274139699, + 15001.296788475971, + 14972.917652663105, + 14947.048599610787, + 14922.88542609359, + 14899.599992751024, + 14876.340224087522, + 14852.230108472437, + 14826.369698140048, + 14797.83510918954, + 14765.678521585049, + 14728.92817915562, + 14686.588389595207, + 14637.6395244627, + 14581.03801918191, + 14515.716373041585, + 14440.583149195367, + 14354.522974661839, + 14256.396540324498, + 14145.040600931772, + 14019.26797509702, + 13877.867545298492, + 13719.604257879377, + 13543.219123047807, + 13347.429214876807, + 13130.92767130435, + 12892.383694133297, + 12630.442549031459, + 12343.725565531571, + 12030.83013703128, + 11690.329720793154, + 15148.451161283338, + 15111.345555550344, + 15079.61400948229, + 15052.721113059912, + 15030.107520128855, + 15011.189948399724, + 14995.361179448026, + 14981.990058714186, + 14970.42149550356, + 14959.976462986424, + 14949.951998197976, + 14939.621202038346, + 14928.23323927257, + 14915.01333853062, + 14899.162792307376, + 14879.85895696266, + 14856.255252721206, + 14827.481163672672, + 14792.642237771628, + 14750.820086837582, + 14701.072386554959, + 14642.432876473105, + 14573.911360006286, + 14494.493704433708, + 14403.14184089948, + 14298.79376441262, + 14180.363533847109, + 14046.741271941835, + 13896.79316530058, + 13729.361464392088, + 13543.26448355001, + 13337.296600972906, + 13110.228258724299, + 12860.805962732558, + 12587.752282791074, + 12289.765852558086, + 11965.521369556787, + 15522.233873914105, + 15453.309720777179, + 15392.049393424173, + 15337.811022222186, + 15289.928801403166, + 15247.712989064043, + 15210.44990716663, + 15177.4019415377, + 15147.80754186893, + 15120.881221716894, + 15095.813558503125, + 15071.77119351407, + 15047.896831901087, + 15023.30924268048, + 14997.103258733438, + 14968.349776806104, + 14936.095757509538, + 14899.364225319709, + 14857.15426857754, + 14808.44103948882, + 14752.175754124322, + 14687.285692419704, + 14612.674198175555, + 14527.220679057398, + 14429.780606595663, + 14319.185516185704, + 14194.243007087813, + 14053.736742427187, + 13896.426449193943, + 13721.047918243157, + 13526.313004294783, + 13310.90962593371, + 13073.50176560977, + 12812.729469637681, + 12527.20884819712, + 12215.532075332674, + 11876.26738895385, + 15330.402229114703, + 15290.669960979407, + 15256.485748601863, + 15227.309722177739, + 15202.578075767655, + 15181.70306729713, + 15164.073018556619, + 15149.052315201498, + 15135.981406752053, + 15124.176806593501, + 15112.931091975983, + 15101.512904014573, + 15089.166947689257, + 15075.113991844926, + 15058.55086919142, + 15038.650476303494, + 15014.56177362082, + 14985.409785447995, + 14950.295599954541, + 14908.296369174901, + 14858.46530900845, + 14799.831699219458, + 14731.400883437147, + 14652.15426915565, + 14561.049327734032, + 14457.019594396244, + 14338.97466823121, + 14205.800212192755, + 14056.357953099616, + 13889.485681635466, + 13703.99725234889, + 13498.682583653404, + 13272.307657827458, + 13023.614521014379, + 12751.321283222485, + 12454.122118324958, + 12130.687264059949, + 15713.110281857762, + 15641.66655292288, + 15578.082309950922, + 15521.710463955891, + 15471.879989816689, + 15427.89592627717, + 15389.039375946093, + 15354.567505297164, + 15323.713544668964, + 15295.68678826505, + 15269.672594153857, + 15244.832384268788, + 15220.30364440812, + 15195.199924235096, + 15168.610837277847, + 15139.602060929436, + 15107.215336447876, + 15070.468468956064, + 15028.355327441837, + 14979.845844757954, + 14923.886017622097, + 14859.39790661687, + 14785.279636189807, + 14700.405394653335, + 14603.625434184845, + 14493.766070826618, + 14369.629684485886, + 14229.994718934771, + 14073.615681810334, + 13899.223144614578, + 13705.523742714393, + 13491.20017534161, + 13254.911205592987, + 12995.291660430183, + 12710.952430679808, + 12400.480471033392, + 12062.438800047352, + 15513.39473252864, + 15470.98424852187, + 15434.297159808257, + 15402.789136798432, + 15375.891913767939, + 15353.01328885725, + 15333.537124071754, + 15316.823345281768, + 15302.207942222512, + 15289.002968494164, + 15276.496541561793, + 15263.952842755418, + 15250.612117269944, + 15235.690674165238, + 15218.380886366056, + 15197.851190662112, + 15173.246087708008, + 15143.686142023282, + 15108.267981992409, + 15066.064299864758, + 15016.123851754648, + 14957.471457641293, + 14889.10800136886, + 14810.010430646425, + 14719.13175704797, + 14615.40105601242, + 14497.723466843623, + 14364.980192710344, + 14216.028500646264, + 14049.701721549996, + 13864.809250185079, + 13660.136545179948, + 13434.445129028003, + 13186.472588087518, + 12914.932572581743, + 12618.514796598818, + 12295.885038091812, + 15734.407232188387, + 15662.680299874897, + 15598.834663188285, + 15542.222653213992, + 15492.172664902335, + 15447.989157068569, + 15408.952652392889, + 15374.319737420401, + 15343.323062561125, + 15315.171342090018, + 15289.049354146948, + 15264.117940736713, + 15239.514007729029, + 15214.350524858544, + 15187.716525724816, + 15158.677107792328, + 15126.273432390488, + 15089.52272471364, + 15047.418273821022, + 14998.929432636816, + 14943.001617950118, + 14878.556310414955, + 14804.491054550259, + 14719.679458739922, + 14622.971195232702, + 14513.19200014232, + 14389.143673447421, + 14249.604078991548, + 14093.32714448318, + 13919.04286149574, + 13725.457285467532, + 13511.252535701802, + 13275.086795366726, + 13015.594311495384, + 12731.38539498581, + 12421.046420600936, + 12083.139826968612, + 15533.793189892498, + 15491.08191478603, + 15454.113600087547, + 15422.343420675597, + 15395.202615293649, + 15372.09848655011, + 15352.414400918302, + 15335.509788736474, + 15320.720144207784, + 15307.357025400312, + 15294.708054247083, + 15282.036916546034, + 15268.583361960022, + 15253.563204016824, + 15236.168320109122, + 15215.56665149456, + 15190.902203295695, + 15161.295044499977, + 15125.841307959805, + 15083.6131903925, + 15033.658952380278, + 14975.002918370326, + 14906.645476674707, + 14827.563079470434, + 14736.708242799434, + 14633.009546568554, + 14515.371634549569, + 14382.675214379176, + 14233.77705755899, + 14067.509999455544, + 13882.682939300323, + 13678.080840189677, + 13452.464729084953, + 13204.57169681234, + 12933.114898063028, + 12636.78355139308, + 12314.242939223497, + 23212.18670746429, + 23021.948348862486, + 22846.762908245306, + 22685.80873826311, + 22538.240255431225, + 22403.187940129857, + 22279.75833660412, + 22167.034052964133, + 22064.073761184838, + 21969.912197106158, + 21883.56016043292, + 21804.004514734876, + 21730.208187446722, + 21661.110169868043, + 21595.625517163353, + 21532.645348362126, + 21471.03684635868, + 21409.643257912358, + 21347.28389364734, + 21282.75412805276, + 21214.825399482696, + 21142.245210156096, + 21063.73712615689, + 20978.0007774339, + 20883.711857800845, + 20779.52212493644, + 20664.05940038424, + 20535.927569552783, + 20393.70658171549, + 20235.952450010736, + 20061.197251441816, + 19867.949126876876, + 19654.69228104911, + 19419.886982556538, + 19161.96956386212, + 18879.35242129379, + 18570.42401504434, + 22503.275859410263, + 22337.05583394641, + 22183.19714347686, + 22041.00630337865, + 21909.765892893654, + 21788.734555128696, + 21677.14699705555, + 21574.213989510885, + 21479.122367196298, + 21391.035028678314, + 21309.09093638837, + 21232.405116622842, + 21160.068659543016, + 21091.14871917509, + 21024.68851341023, + 20959.70732400445, + 20895.200496578756, + 20830.139440619056, + 20763.47162947616, + 20694.120600365826, + 20620.98595436872, + 20542.943356430416, + 20458.84453536144, + 20367.517283837242, + 20267.76545839817, + 20158.368979449515, + 20038.083831261454, + 19905.642061969145, + 19759.75178357264, + 19599.097171936886, + 19422.338466791807, + 19228.11197173218, + 19015.030054217787, + 18781.68114557326, + 18526.629740988214, + 18248.41639951713, + 17945.557744079455 + ], + "input_power": [ + 5245.755868799997, + 5295.666376809874, + 5350.491665106171, + 5410.231733688887, + 5474.886582558023, + 5544.456211713579, + 5618.940621155554, + 5698.339810883949, + 5782.653780898765, + 5871.882531199998, + 5966.026061787655, + 6065.084372661729, + 6169.057463822221, + 6277.9453352691335, + 6391.747987002468, + 6510.46541902222, + 6634.097631328397, + 6762.644623920986, + 6896.106396799997, + 7034.482949965432, + 7177.774283417284, + 7325.980397155553, + 7479.101291180248, + 7637.136965491355, + 7800.087420088886, + 7967.952654972841, + 8140.732670143208, + 8318.427465599998, + 8501.037041343212, + 8688.561397372836, + 8881.000533688886, + 9078.354450291357, + 9280.623147180246, + 9487.80662435556, + 9699.904881817285, + 9916.917919565434, + 10138.845737599995, + 5988.724320199999, + 6049.466139143209, + 6115.122738372839, + 6185.6941178888865, + 6261.180277691355, + 6341.581217780246, + 6426.896938155555, + 6517.1274388172815, + 6612.272719765432, + 6712.332780999998, + 6817.307622520988, + 6927.197244328397, + 7042.00164642222, + 7161.720828802467, + 7286.354791469136, + 7415.90353442222, + 7550.36705766173, + 7689.7453611876535, + 7834.0384449999965, + 7983.246309098767, + 8137.36895348395, + 8296.406378155552, + 8460.35858311358, + 8629.225568358024, + 8803.007333888885, + 8981.703879706174, + 9165.315205809873, + 9353.841312199995, + 9547.282198876543, + 9745.637865839504, + 9948.908313088888, + 10157.093540624694, + 10370.193548446912, + 10588.208336555559, + 10811.137904950616, + 11038.982253632099, + 11271.741382599994, + 5244.604590663999, + 5294.451294691654, + 5349.2127790057275, + 5408.889043606222, + 5473.480088493133, + 5542.985913666469, + 5617.406519126221, + 5696.741904872392, + 5780.9920709049875, + 5870.157017223999, + 5964.236743829431, + 6063.2312507212855, + 6167.140537899553, + 6275.964605364245, + 6389.703453115358, + 6508.357081152888, + 6631.925489476842, + 6760.4086780872085, + 6893.806646983999, + 7032.11939616721, + 7175.34692563684, + 7323.489235392886, + 7476.546325435359, + 7634.518195764245, + 7797.404846379553, + 7965.206277281284, + 8137.922488469431, + 8315.553479943997, + 8498.099251704987, + 8685.559803752394, + 8877.935136086218, + 9075.22524870647, + 9277.430141613135, + 9484.549814806225, + 9696.58426828573, + 9913.533502051654, + 10135.397516103994, + 5987.109634364, + 6047.76977312943, + 6113.344692181284, + 6183.834391519555, + 6259.2388711442445, + 6339.558131055358, + 6424.792171252889, + 6514.9409917368375, + 6610.00459250721, + 6709.982973563999, + 6814.876134907212, + 6924.684076536839, + 7039.4067984528865, + 7159.044300655353, + 7283.596583144246, + 7413.063645919552, + 7547.445488981284, + 7686.742112329431, + 7830.953515963996, + 7980.079699884987, + 8134.120664092393, + 8293.07640858622, + 8456.94693336647, + 8625.732238433135, + 8799.43232378622, + 8978.047189425728, + 9161.576835351652, + 9350.021261563996, + 9543.380468062765, + 9741.65445484795, + 9944.843221919551, + 10152.946769277582, + 10365.965096922022, + 10583.89820485289, + 10806.746093070173, + 11034.508761573874, + 11267.186210363996, + 5234.455063900001, + 5283.727532087653, + 5337.914780561729, + 5397.016809322222, + 5461.033618369134, + 5529.965207702469, + 5603.811577322221, + 5682.572727228394, + 5766.248657420987, + 5854.839367899998, + 5948.344858665431, + 6046.765129717283, + 6150.100181055556, + 6258.350012680245, + 6371.5146245913575, + 6489.594016788887, + 6612.58818927284, + 6740.497142043208, + 6873.320875099999, + 7011.059388443209, + 7153.712682072842, + 7301.280755988888, + 7453.763610191361, + 7611.1612446802465, + 7773.4736594555525, + 7940.700854517286, + 8112.84282986543, + 8289.8995855, + 8471.87112142099, + 8658.757437628396, + 8850.558534122218, + 9047.274410902472, + 9248.905067969134, + 9455.450505322226, + 9666.910722961731, + 9883.285720887654, + 10104.575499099996, + 5972.7894383, + 6032.7144554654315, + 6097.554252917284, + 6167.3088306555555, + 6241.978188680245, + 6321.562326991358, + 6406.061245588888, + 6495.474944472838, + 6589.80342364321, + 6689.046683099999, + 6793.204722843209, + 6902.277542872839, + 7016.265143188888, + 7135.167523791356, + 7258.984684680248, + 7387.716625855554, + 7521.363347317283, + 7659.924849065432, + 7803.401131099997, + 7951.792193420989, + 8105.098036028395, + 8263.31865892222, + 8426.45406210247, + 8594.504245569135, + 8767.469209322218, + 8945.34895336173, + 9128.143477687652, + 9315.852782299997, + 9508.476867198766, + 9706.015732383952, + 9908.469377855554, + 10115.837803613584, + 10328.121009658022, + 10545.318995988891, + 10767.431762606175, + 10994.459309509873, + 11226.401636699997, + 5224.687094763999, + 5273.385327111654, + 5326.998339745727, + 5385.526132666222, + 5448.968705873134, + 5517.326059366469, + 5590.598193146221, + 5668.785107212392, + 5751.886801564988, + 5839.903276203999, + 5932.834531129434, + 6030.680566341285, + 6133.441381839554, + 6241.116977624244, + 6353.707353695358, + 6471.212510052887, + 6593.632446696841, + 6720.96716362721, + 6853.216660843998, + 6990.38093834721, + 7132.459996136839, + 7279.453834212886, + 7431.362452575359, + 7588.185851224247, + 7749.924030159552, + 7916.576989381287, + 8088.144728889431, + 8264.627248683995, + 8446.02454876499, + 8632.336629132396, + 8823.563489786218, + 9019.705130726472, + 9220.761551953135, + 9426.732753466225, + 9637.618735265733, + 9853.419497351653, + 10074.135039723993, + 5958.850799863999, + 6018.040695429431, + 6082.145371281283, + 6151.164827419555, + 6225.0990638442445, + 6303.948080555356, + 6387.711877552887, + 6476.390454836838, + 6569.98381240721, + 6668.491950263999, + 6771.914868407211, + 6880.252566836838, + 6993.505045552887, + 7111.672304555355, + 7234.754343844247, + 7362.751163419552, + 7495.662763281284, + 7633.489143429431, + 7776.230303863997, + 7923.886244584988, + 8076.456965592396, + 8233.94246688622, + 8396.34274846647, + 8563.657810333136, + 8735.887652486219, + 8913.03227492573, + 9095.091677651651, + 9282.065860663995, + 9473.954823962767, + 9670.758567547951, + 9872.47709141955, + 10079.110395577583, + 10290.65848002202, + 10507.121344752892, + 10728.498989770174, + 10954.791415073872, + 11185.998620663995, + 5215.3006832559995, + 5263.424679763655, + 5316.463456557727, + 5374.417013638223, + 5437.285351005135, + 5505.06846865847, + 5577.766366598223, + 5655.379044824392, + 5737.906503336988, + 5825.348742135999, + 5917.705761221431, + 6014.9775605932855, + 6117.164140251555, + 6224.265500196245, + 6336.281640427357, + 6453.212560944888, + 6575.05826174884, + 6701.81874283921, + 6833.494004215999, + 6970.084045879209, + 7111.588867828841, + 7258.008470064888, + 7409.342852587359, + 7565.592015396248, + 7726.755958491553, + 7892.834681873284, + 8063.828185541432, + 8239.736469495996, + 8420.55953373699, + 8606.297378264393, + 8796.95000307822, + 8992.517408178472, + 9192.999593565135, + 9398.396559238225, + 9608.708305197732, + 9823.934831443656, + 10044.076137975995, + 5945.293719056001, + 6003.748493021432, + 6067.118047273284, + 6135.402381811557, + 6208.601496636245, + 6286.715391747359, + 6369.7440671448885, + 6457.687522828838, + 6550.5457587992105, + 6648.318775055998, + 6751.006571599212, + 6858.609148428841, + 6971.1265055448885, + 7088.558642947358, + 7210.905560636248, + 7338.167258611554, + 7470.343736873286, + 7607.434995421434, + 7749.4410342559995, + 7896.36185337699, + 8048.197452784397, + 8204.947832478221, + 8366.612992458473, + 8533.192932725136, + 8704.68765327822, + 8881.09715411773, + 9062.421435243654, + 9248.660496655997, + 9439.814338354769, + 9635.88296033995, + 9836.866362611554, + 10042.764545169583, + 10253.577508014025, + 10469.30525114489, + 10689.947774562177, + 10915.505078265876, + 11145.977162255997, + 5206.295829375998, + 5253.845590043655, + 5306.310130997728, + 5363.689452238223, + 5425.983553765133, + 5493.1924355784695, + 5565.316097678222, + 5642.354540064393, + 5724.307762736988, + 5811.175765695997, + 5902.958548941432, + 5999.656112473285, + 6101.268456291555, + 6207.795580396244, + 6319.237484787357, + 6435.594169464889, + 6556.865634428842, + 6683.05187967921, + 6814.1529052159985, + 6950.168711039211, + 7091.099297148841, + 7236.944663544889, + 7387.70481022736, + 7543.379737196247, + 7703.9694444515535, + 7869.473931993285, + 8039.893199821431, + 8215.227247935996, + 8395.476076336989, + 8580.639685024395, + 8770.718073998218, + 8965.711243258473, + 9165.619192805138, + 9370.441922638225, + 9580.179432757732, + 9794.831723163652, + 10014.398793855997, + 5932.118195876, + 5989.837848241431, + 6052.472280893284, + 6120.021493831556, + 6192.485487056247, + 6269.864260567358, + 6352.15781436489, + 6439.366148448836, + 6531.48926281921, + 6628.527157475999, + 6730.4798324192125, + 6837.34728764884, + 6949.129523164887, + 7065.826538967354, + 7187.438335056247, + 7313.964911431554, + 7445.406268093286, + 7581.762405041433, + 7723.033322275999, + 7869.21901979699, + 8020.319497604396, + 8176.334755698221, + 8337.26479407847, + 8503.109612745136, + 8673.86921169822, + 8849.543590937728, + 9030.132750463654, + 9215.636690275996, + 9406.055410374767, + 9601.388910759952, + 9801.637191431553, + 10006.800252389581, + 10216.878093634023, + 10431.870715164892, + 10651.778116982174, + 10876.600299085876, + 11106.337261475996, + 5197.6725331239995, + 5244.648057951653, + 5296.53836306573, + 5353.343448466222, + 5415.063314153134, + 5481.697960126469, + 5553.2473863862215, + 5629.7115929323945, + 5711.0905797649875, + 5797.384346884, + 5888.5928942894325, + 5984.716221981285, + 6085.754329959555, + 6191.707218224245, + 6302.574886775361, + 6418.357335612889, + 6539.054564736842, + 6664.66657414721, + 6795.193363844, + 6930.634933827212, + 7070.99128409684, + 7216.26241465289, + 7366.448325495359, + 7521.549016624248, + 7681.564488039553, + 7846.494739741285, + 8016.339771729431, + 8191.099584003997, + 8370.77417656499, + 8555.363549412396, + 8744.86770254622, + 8939.286635966471, + 9138.620349673134, + 9342.868843666225, + 9552.032117945731, + 9766.110172511655, + 9985.103007363996, + 5919.324230324, + 5976.308761089432, + 6038.208072141284, + 6105.022163479557, + 6176.751035104245, + 6253.3946870153595, + 6334.953119212887, + 6421.426331696838, + 6512.81432446721, + 6609.117097524001, + 6710.334650867212, + 6816.46698449684, + 6927.51409841289, + 7043.475992615356, + 7164.352667104248, + 7290.144121879554, + 7420.850356941285, + 7556.471372289433, + 7697.007167923999, + 7842.45774384499, + 7992.8231000523965, + 8148.10323654622, + 8308.298153326472, + 8473.407850393138, + 8643.432327746223, + 8818.371585385732, + 8998.225623311655, + 9182.994441523999, + 9372.678040022767, + 9567.27641880795, + 9766.789577879554, + 9971.217517237583, + 10180.560236882024, + 10394.817736812893, + 10613.990017030175, + 10838.077077533875, + 11067.078918323998, + 5193.961146958974, + 5240.681366532164, + 5292.316366391774, + 5348.866146537804, + 5410.330706970252, + 5476.710047689123, + 5548.004168694412, + 5624.213069986119, + 5705.33675156425, + 5791.375213428797, + 5882.328455579766, + 5978.196478017155, + 6078.97928074096, + 6184.676863751187, + 6295.289227047836, + 6410.816370630902, + 6531.2582945003915, + 6656.614998656297, + 6786.8864830986195, + 6922.072747827367, + 7062.173792842533, + 7207.189618144117, + 7357.120223732125, + 7511.965609606547, + 7671.72577576739, + 7836.400722214658, + 8005.990448948341, + 8180.494955968442, + 8359.91424327497, + 8544.248310867912, + 8733.497158747274, + 8927.660786913058, + 9126.73919536526, + 9330.732384103887, + 9539.640353128927, + 9753.463102440388, + 9972.200632038266, + 5913.758564588194, + 5970.416260290264, + 6031.988736278758, + 6098.475992553666, + 6169.878029115, + 6246.194845962751, + 6327.426443096921, + 6413.572820517511, + 6504.633978224524, + 6600.6099162179535, + 6701.500634497806, + 6807.306133064074, + 6918.026411916762, + 7033.661471055869, + 7154.211310481401, + 7279.675930193349, + 7410.055330191718, + 7545.349510476507, + 7685.558471047712, + 7830.682211905341, + 7980.720733049391, + 8135.674034479854, + 8295.542116196742, + 8460.324978200051, + 8630.022620489774, + 8804.635043065922, + 8984.162245928486, + 9168.604229077468, + 9357.960992512879, + 9552.232536234704, + 9751.418860242944, + 9955.519964537614, + 10164.535849118698, + 10378.466513986206, + 10597.311959140126, + 10821.07218458047, + 11049.747190307227, + 5189.430794500001, + 5235.832083487655, + 5287.148152761729, + 5343.379002322223, + 5404.524632169133, + 5470.585042302469, + 5541.560232722221, + 5617.450203428394, + 5698.254954420989, + 5783.9744857, + 5874.608797265434, + 5970.157889117286, + 6070.621761255556, + 6176.000413680245, + 6286.29384639136, + 6401.502059388888, + 6521.625052672844, + 6646.66282624321, + 6776.6153801, + 6911.482714243211, + 7051.26482867284, + 7195.961723388889, + 7345.573398391361, + 7500.099853680248, + 7659.541089255556, + 7823.897105117285, + 7993.167901265432, + 8167.353477699997, + 8346.45383442099, + 8530.468971428396, + 8719.39888872222, + 8913.243586302471, + 9112.003064169136, + 9315.677322322226, + 9524.26636076173, + 9737.770179487656, + 9956.188778499996, + 5906.911822400001, + 5963.161231565433, + 6024.325421017285, + 6090.404390755555, + 6161.398140780246, + 6237.306671091359, + 6318.129981688888, + 6403.868072572838, + 6494.520943743211, + 6590.0885952, + 6690.571026943212, + 6795.9682389728405, + 6906.280231288887, + 7021.5070038913545, + 7141.648556780246, + 7266.704889955554, + 7396.676003417288, + 7531.561897165433, + 7671.3625711999985, + 7816.078025520989, + 7965.708260128398, + 8120.253275022222, + 8279.713070202471, + 8444.087645669137, + 8613.377001422223, + 8787.58113746173, + 8966.700053787652, + 9150.733750399997, + 9339.682227298767, + 9533.54548448395, + 9732.323521955554, + 9936.016339713582, + 10144.623937758024, + 10358.146316088892, + 10576.583474706174, + 10799.935413609877, + 11028.202132799997, + 5181.570613503999, + 5227.397666651655, + 5278.139500085728, + 5333.796113806224, + 5394.367507813135, + 5459.85368210647, + 5530.254636686222, + 5605.570371552393, + 5685.800886704988, + 5770.946182144, + 5861.006257869434, + 5955.981113881285, + 6055.870750179554, + 6160.675166764245, + 6270.394363635359, + 6385.028340792889, + 6504.577098236841, + 6629.04063596721, + 6758.418953983999, + 6892.71205228721, + 7031.919930876841, + 7176.042589752887, + 7325.080028915359, + 7479.0322483642485, + 7637.899248099552, + 7801.681028121285, + 7970.377588429432, + 8143.988929023997, + 8322.515049904989, + 8505.955951072396, + 8694.311632526218, + 8887.58209426647, + 9085.767336293138, + 9288.867358606227, + 9496.882161205729, + 9709.811744091652, + 9927.656107263996, + 5894.880972103999, + 5950.395259669431, + 6010.824327521284, + 6076.168175659555, + 6146.426804084244, + 6221.600212795358, + 6301.688401792888, + 6386.691371076837, + 6476.609120647209, + 6571.441650503998, + 6671.188960647211, + 6775.851051076839, + 6885.427921792888, + 6999.919572795355, + 7119.326004084247, + 7243.647215659554, + 7372.883207521284, + 7507.0339796694325, + 7646.099532103999, + 7790.079864824988, + 7938.974977832396, + 8092.78487112622, + 8251.509544706469, + 8415.148998573135, + 8583.703232726219, + 8757.172247165729, + 8935.556041891652, + 9118.854616903996, + 9307.067972202767, + 9500.19610778795, + 9698.239023659555, + 9901.196719817583, + 10109.069196262024, + 10321.856452992892, + 10539.558490010173, + 10762.175307313875, + 10989.706904903995, + 5174.091990136, + 5219.344807443656, + 5269.512405037729, + 5324.594782918224, + 5384.591941085136, + 5449.503879538471, + 5519.330598278221, + 5594.072097304394, + 5673.728376616989, + 5758.299436215999, + 5847.785276101434, + 5942.185896273285, + 6041.501296731556, + 6145.731477476246, + 6254.876438507358, + 6368.936179824889, + 6487.910701428841, + 6611.800003319211, + 6740.604085495999, + 6874.322947959213, + 7012.956590708839, + 7156.505013744889, + 7304.968217067362, + 7458.3462006762475, + 7616.638964571555, + 7779.846508753286, + 7947.968833221431, + 8121.005937975996, + 8298.95782301699, + 8481.824488344395, + 8669.60593395822, + 8862.30215985847, + 9059.913166045137, + 9262.438952518227, + 9469.87951927773, + 9682.234866323653, + 9899.504993655997, + 5883.2316794359995, + 5938.010845401432, + 5997.704791653284, + 6062.313518191555, + 6131.837025016246, + 6206.275312127358, + 6285.628379524889, + 6369.896227208838, + 6459.078855179211, + 6553.1762634359975, + 6652.188451979212, + 6756.11542080884, + 6864.957169924888, + 6978.713699327357, + 7097.385009016249, + 7220.971098991555, + 7349.471969253285, + 7482.887619801431, + 7621.218050636, + 7764.4632617569905, + 7912.623253164396, + 8065.698024858221, + 8223.68757683847, + 8386.591909105136, + 8554.411021658218, + 8727.144914497732, + 8904.793587623655, + 9087.357041035997, + 9274.835274734765, + 9467.228288719949, + 9664.536082991553, + 9866.75865754958, + 10073.896012394023, + 10285.94814752489, + 10502.915062942175, + 10724.796758645876, + 10951.593234635997, + 5166.994924396, + 5211.673505863653, + 5261.266867617728, + 5315.775009658222, + 5375.197931985134, + 5439.535634598468, + 5508.78811749822, + 5582.955380684393, + 5662.037424156987, + 5746.034247916, + 5834.945851961434, + 5928.7722362932855, + 6027.5134009115545, + 6131.1693458162445, + 6239.740071007358, + 6353.225576484888, + 6471.62586224884, + 6594.940928299209, + 6723.170774636, + 6856.315401259211, + 6994.374808168842, + 7137.348995364888, + 7285.23796284736, + 7438.041710616247, + 7595.7602386715525, + 7758.3935470132865, + 7925.941635641432, + 8098.404504555997, + 8275.782153756989, + 8458.074583244394, + 8645.281793018221, + 8837.403783078471, + 9034.440553425135, + 9236.392104058226, + 9443.25843497773, + 9655.039546183654, + 9871.735437675996, + 5871.963944396, + 5926.007988761431, + 5984.9668134132835, + 6048.840418351555, + 6117.628803576245, + 6191.331969087358, + 6269.949914884888, + 6353.482640968837, + 6441.930147339212, + 6535.292433995997, + 6633.569500939213, + 6736.7613481688395, + 6844.867975684888, + 6957.889383487355, + 7075.825571576246, + 7198.676539951555, + 7326.442288613284, + 7459.122817561432, + 7596.718126795999, + 7739.228216316988, + 7886.6530861243955, + 8038.992736218221, + 8196.24716659847, + 8358.416377265137, + 8525.50036821822, + 8697.49913945773, + 8874.412690983654, + 9056.241022795995, + 9242.984134894765, + 9434.642027279951, + 9631.214699951553, + 9832.702152909582, + 10039.10438615402, + 10250.42139968489, + 10466.653193502176, + 10687.799767605877, + 10913.861121995997, + 5160.279416283999, + 5204.383761911653, + 5253.402887825729, + 5307.336794026222, + 5366.185480513134, + 5429.948947286469, + 5498.627194346222, + 5572.220221692393, + 5650.728029324988, + 5734.150617243999, + 5822.487985449432, + 5915.7401339412845, + 6013.907062719555, + 6116.988771784245, + 6224.985261135358, + 6337.896530772888, + 6455.722580696841, + 6578.4634109072085, + 6706.119021403997, + 6838.689412187211, + 6976.174583256839, + 7118.574534612888, + 7265.88926625536, + 7418.118778184247, + 7575.263070399553, + 7737.322142901286, + 7904.295995689433, + 8076.184628763998, + 8252.988042124989, + 8434.706235772395, + 8621.339209706219, + 8812.88696392647, + 9009.349498433136, + 9210.726813226227, + 9417.018908305732, + 9628.225783671654, + 9844.347439323996, + 5861.077766983998, + 5914.386689749431, + 5972.6103928012835, + 6035.748876139555, + 6103.802139764245, + 6176.770183675358, + 6254.653007872887, + 6337.450612356838, + 6425.16299712721, + 6517.790162183999, + 6615.33210752721, + 6717.788833156838, + 6825.160339072888, + 6937.446625275356, + 7054.647691764246, + 7176.7635385395515, + 7303.794165601286, + 7435.739572949433, + 7572.5997605839975, + 7714.374728504988, + 7861.064476712397, + 8012.66900520622, + 8169.18831398647, + 8330.622403053136, + 8496.97127240622, + 8668.23492204573, + 8844.41335197165, + 9025.506562183995, + 9211.514552682765, + 9402.437323467948, + 9598.274874539551, + 9799.027205897582, + 10004.694317542024, + 10215.276209472891, + 10430.772881690174, + 10651.184334193875, + 10876.510566983996, + 5153.9454658, + 5197.475575587654, + 5245.920465661729, + 5299.280136022221, + 5357.5545866691355, + 5420.743817602469, + 5488.847828822222, + 5561.866620328393, + 5639.800192120989, + 5722.6485441999985, + 5810.4116765654335, + 5903.089589217284, + 6000.682282155555, + 6103.189755380245, + 6210.612008891359, + 6322.94904268889, + 6440.200856772842, + 6562.367451143209, + 6689.448825799998, + 6821.444980743212, + 6958.35591597284, + 7100.181631488889, + 7246.922127291359, + 7398.577403380248, + 7555.147459755554, + 7716.632296417286, + 7883.031913365432, + 8054.346310599996, + 8230.575488120987, + 8411.719445928395, + 8597.778184022221, + 8788.751702402471, + 8984.640001069134, + 9185.443080022225, + 9391.16093926173, + 9601.793578787656, + 9817.340998599995, + 5850.573147200001, + 5903.146948365432, + 5960.635529817283, + 6023.038891555556, + 6090.357033580245, + 6162.589955891359, + 6239.737658488889, + 6321.800141372838, + 6408.777404543211, + 6500.669448, + 6597.476271743211, + 6699.19787577284, + 6805.83426008889, + 6917.385424691355, + 7033.851369580247, + 7155.232094755555, + 7281.527600217284, + 7412.737885965433, + 7548.862951999999, + 7689.90279832099, + 7835.857424928396, + 7986.72683182222, + 8142.51101900247, + 8303.209986469137, + 8468.82373422222, + 8639.352262261731, + 8814.795570587654, + 8995.153659199997, + 9180.42652809877, + 9370.614177283951, + 9565.716606755554, + 9765.73381651358, + 9970.665806558023, + 10180.512576888892, + 10395.274127506176, + 10614.950458409876, + 10839.541569599996, + 5147.993072943998, + 5190.948946891653, + 5238.819601125727, + 5291.605035646223, + 5349.305250453134, + 5411.920245546469, + 5479.450020926221, + 5551.894576592392, + 5629.2539125449875, + 5711.528028783999, + 5798.716925309433, + 5890.820602121285, + 5987.839059219555, + 6089.772296604245, + 6196.6203142753575, + 6308.383112232888, + 6425.06069047684, + 6546.653049007208, + 6673.160187823999, + 6804.58210692721, + 6940.918806316839, + 7082.170285992887, + 7228.33654595536, + 7379.417586204246, + 7535.413406739553, + 7696.324007561284, + 7862.149388669432, + 8032.889550063999, + 8208.544491744988, + 8389.114213712395, + 8574.59871596622, + 8764.99799850647, + 8960.312061333134, + 9160.540904446225, + 9365.68452784573, + 9575.742931531653, + 9790.716115503996, + 5840.450085043999, + 5892.288764609431, + 5949.042224461284, + 6010.710464599554, + 6077.293485024245, + 6148.7912857353585, + 6225.203866732888, + 6306.531228016837, + 6392.77336958721, + 6483.930291443999, + 6580.0019935872115, + 6680.98847601684, + 6786.889738732887, + 6897.705781735357, + 7013.436605024247, + 7134.082208599553, + 7259.642592461285, + 7390.117756609433, + 7525.507701043997, + 7665.812425764987, + 7811.031930772396, + 7961.166216066221, + 8116.215281646469, + 8276.179127513136, + 8441.057753666222, + 8610.851160105729, + 8785.559346831653, + 8965.182313843996, + 9149.720061142765, + 9339.17258872795, + 9533.539896599554, + 9732.82198475758, + 9937.018853202024, + 10146.130501932892, + 10360.156930950176, + 10579.098140253876, + 10802.954129843996, + 5142.422237716, + 5184.803875823654, + 5232.100294217728, + 5284.31149289822, + 5341.437471865134, + 5403.478231118469, + 5470.433770658222, + 5542.304090484393, + 5619.0891905969875, + 5700.789070995998, + 5787.403731681434, + 5878.933172653284, + 5975.377393911554, + 6076.736395456244, + 6183.010177287359, + 6294.198739404888, + 6410.302081808842, + 6531.3202044992095, + 6657.253107475999, + 6788.10079073921, + 6923.86325428884, + 7064.540498124889, + 7210.13252224736, + 7360.639326656247, + 7516.060911351557, + 7676.397276333287, + 7841.6484216014305, + 8011.814347155998, + 8186.895052996988, + 8366.890539124395, + 8551.80080553822, + 8741.625852238472, + 8936.365679225135, + 9136.020286498224, + 9340.58967405773, + 9550.073841903655, + 9764.472790035996, + 5830.708580516, + 5881.812138481431, + 5937.830476733282, + 5998.7635952715555, + 6064.611494096245, + 6135.374173207359, + 6211.051632604889, + 6291.643872288837, + 6377.150892259211, + 6467.572692515997, + 6562.90927305921, + 6663.1606338888405, + 6768.326775004889, + 6878.407696407356, + 6993.403398096248, + 7113.313880071553, + 7238.139142333286, + 7367.879184881433, + 7502.534007715997, + 7642.103610836989, + 7786.587994244395, + 7935.98715793822, + 8090.3011019184705, + 8249.529826185135, + 8413.67333073822, + 8582.73161557773, + 8756.704680703655, + 8935.592526115997, + 9119.395151814768, + 9308.112557799952, + 9501.744744071551, + 9700.29171062958, + 9903.753457474024, + 10112.129984604891, + 10325.421292022174, + 10543.627379725876, + 10766.748247715996, + 5137.232960116, + 5179.040362383655, + 5225.762544937729, + 5277.39950777822, + 5333.951250905135, + 5395.417774318469, + 5461.799078018221, + 5533.095162004393, + 5609.306026276988, + 5690.431670835998, + 5776.472095681433, + 5867.427300813285, + 5963.297286231555, + 6064.082051936245, + 6169.781597927358, + 6280.395924204887, + 6395.925030768841, + 6516.36891761921, + 6641.727584755998, + 6772.00103217921, + 6907.18925988884, + 7047.292267884888, + 7192.31005616736, + 7342.242624736248, + 7497.089973591555, + 7656.8521027332845, + 7821.52901216143, + 7991.120701875997, + 8165.627171876988, + 8345.048422164395, + 8529.38445273822, + 8718.635263598468, + 8912.800854745134, + 9111.881226178224, + 9315.876377897728, + 9524.786309903655, + 9738.611022195997, + 5821.348633616, + 5871.717069981431, + 5927.000286633283, + 5987.198283571556, + 6052.311060796244, + 6122.338618307357, + 6197.280956104887, + 6277.138074188837, + 6361.90997255921, + 6451.5966512159985, + 6546.19811015921, + 6645.71434938884, + 6750.1453689048885, + 6859.491168707356, + 6973.751748796247, + 7092.927109171553, + 7217.017249833284, + 7346.022170781432, + 7479.941872015998, + 7618.776353536988, + 7762.525615344394, + 7911.189657438219, + 8064.76847981847, + 8223.262082485135, + 8386.670465438217, + 8554.99362867773, + 8728.231572203655, + 8906.384296015996, + 9089.451800114768, + 9277.434084499951, + 9470.331149171554, + 9668.14299412958, + 9870.869619374022, + 10078.511024904892, + 10291.067210722174, + 10508.538176825874, + 10730.923923215994, + 5132.425240144, + 5173.658406571654, + 5219.806353285729, + 5270.86908028622, + 5326.8465875731345, + 5387.73887514647, + 5453.545943006222, + 5524.267791152392, + 5599.904419584987, + 5680.455828303999, + 5765.922017309434, + 5856.302986601284, + 5951.598736179554, + 6051.809266044246, + 6156.934576195358, + 6266.974666632887, + 6381.929537356841, + 6501.799188367208, + 6626.5836196639975, + 6756.28283124721, + 6890.896823116842, + 7030.425595272888, + 7174.869147715359, + 7324.227480444247, + 7478.500593459554, + 7637.688486761286, + 7801.791160349429, + 7970.808614223996, + 8144.7408483849895, + 8323.587862832394, + 8507.34965756622, + 8696.026232586471, + 8889.617587893137, + 9088.123723486227, + 9291.544639365731, + 9499.880335531654, + 9713.130811983998, + 5812.370244343999, + 5862.003559109431, + 5916.551654161282, + 5976.014529499556, + 6040.392185124245, + 6109.684621035358, + 6183.891837232886, + 6263.013833716836, + 6347.050610487209, + 6436.002167543997, + 6529.868504887209, + 6628.649622516839, + 6732.345520432888, + 6840.956198635354, + 6954.481657124246, + 7072.921895899555, + 7196.276914961285, + 7324.546714309433, + 7457.731293943998, + 7595.830653864987, + 7738.8447940723945, + 7886.7737145662195, + 8039.61741534647, + 8197.375896413136, + 8360.04915776622, + 8527.637199405732, + 8700.140021331652, + 8877.557623543997, + 9059.890006042766, + 9247.13716882795, + 9439.29911189955, + 9636.37583525758, + 9838.367338902022, + 10045.27362283289, + 10257.094687050178, + 10473.830531553876, + 10695.481156343994, + 5127.999077799999, + 5168.658008387654, + 5214.231719261728, + 5264.7202104222215, + 5320.123481869134, + 5380.4415336024695, + 5445.674365622221, + 5515.8219779283945, + 5590.884370520987, + 5670.8615433999985, + 5755.753496565432, + 5845.560230017285, + 5940.281743755554, + 6039.918037780245, + 6144.4691120913585, + 6253.934966688889, + 6368.315601572841, + 6487.611016743211, + 6611.821212199996, + 6740.94618794321, + 6874.98594397284, + 7013.9404802888885, + 7157.80979689136, + 7306.593893780249, + 7460.292770955554, + 7618.9064284172855, + 7782.434866165431, + 7950.878084199998, + 8124.236082520991, + 8302.508861128395, + 8485.69642002222, + 8673.798759202471, + 8866.815878669135, + 9064.747778422226, + 9267.59445846173, + 9475.355918787654, + 9688.032159399996, + 5803.773412700001, + 5852.671605865432, + 5906.484579317283, + 5965.212333055556, + 6028.854867080246, + 6097.412181391357, + 6170.884275988887, + 6249.271150872838, + 6332.572806043212, + 6420.789241499999, + 6513.920457243211, + 6611.966453272838, + 6714.9272295888895, + 6822.802786191355, + 6935.593123080249, + 7053.298240255554, + 7175.9181377172845, + 7303.452815465434, + 7435.902273499997, + 7573.266511820988, + 7715.545530428395, + 7862.739329322219, + 8014.847908502471, + 8171.871267969136, + 8333.80940772222, + 8500.662327761731, + 8672.430028087654, + 8849.112508699998, + 9030.709769598767, + 9217.22181078395, + 9408.648632255552, + 9604.990234013581, + 9806.246616058022, + 10012.41777838889, + 10223.503721006175, + 10439.504443909876, + 10660.419947099997, + 5123.954473083999, + 5164.039167831654, + 5209.0386428657275, + 5258.952898186222, + 5313.781933793135, + 5373.52574968647, + 5438.184345866221, + 5507.757722332392, + 5582.245879084989, + 5661.648816123999, + 5745.966533449433, + 5835.199031061285, + 5929.346308959553, + 6028.408367144245, + 6132.385205615357, + 6241.276824372887, + 6355.08322341684, + 6473.804402747209, + 6597.440362363997, + 6725.99110226721, + 6859.45662245684, + 6997.836922932887, + 7141.132003695361, + 7289.341864744245, + 7442.466506079552, + 7600.505927701285, + 7763.46012960943, + 7931.329111803998, + 8104.112874284988, + 8281.811417052395, + 8464.42474010622, + 8651.952843446472, + 8844.395727073135, + 9041.753390986227, + 9244.02583518573, + 9451.213059671656, + 9663.315064443996, + 5795.5581386839995, + 5843.72121024943, + 5896.799062101282, + 5954.791694239554, + 6017.699106664246, + 6085.5212993753585, + 6158.258272372888, + 6235.910025656837, + 6318.476559227211, + 6405.957873084, + 6498.353967227212, + 6595.66484165684, + 6697.890496372888, + 6805.030931375356, + 6917.086146664248, + 7034.056142239553, + 7155.940918101285, + 7282.740474249433, + 7414.454810683998, + 7551.083927404987, + 7692.627824412397, + 7839.08650170622, + 7990.45995928647, + 8146.748197153135, + 8307.951215306222, + 8474.06901374573, + 8645.10159247165, + 8821.048951483997, + 9001.911090782765, + 9187.68801036795, + 9378.379710239553, + 9573.986190397582, + 9774.507450842024, + 9979.94349157289, + 10190.294312590177, + 10405.559913893874, + 10625.740295483996, + 5120.291425996001, + 5159.801884903656, + 5204.22712409773, + 5253.567143578223, + 5307.821943345136, + 5366.99152339847, + 5431.075883738222, + 5500.075024364395, + 5573.988945276988, + 5652.817646476, + 5736.561127961433, + 5825.219389733285, + 5918.792431791556, + 6017.280254136245, + 6120.682856767359, + 6229.000239684888, + 6342.232402888843, + 6460.379346379209, + 6583.441070156001, + 6711.417574219212, + 6844.308858568841, + 6982.114923204887, + 7124.835768127362, + 7272.471393336246, + 7425.021798831556, + 7582.486984613285, + 7744.866950681432, + 7912.161697035999, + 8084.371223676991, + 8261.495530604396, + 8443.534617818219, + 8630.488485318472, + 8822.357133105135, + 9019.140561178227, + 9220.83876953773, + 9427.451758183654, + 9638.979527115996, + 5787.724422296001, + 5835.152372261433, + 5887.495102513283, + 5944.752613051555, + 6006.9249038762455, + 6074.011974987358, + 6146.013826384889, + 6222.930458068838, + 6304.7618700392095, + 6391.5080622959995, + 6483.169034839212, + 6579.74478766884, + 6681.235320784889, + 6787.640634187356, + 6898.960727876247, + 7015.195601851556, + 7136.345256113285, + 7262.409690661432, + 7393.388905495999, + 7529.2829006169895, + 7670.0916760243945, + 7815.815231718222, + 7966.453567698471, + 8122.006683965138, + 8282.474580518221, + 8447.85725735773, + 8618.154714483653, + 8793.366951895998, + 8973.493969594769, + 9158.53576757995, + 9348.492345851553, + 9543.363704409581, + 9743.149843254023, + 9947.850762384893, + 10157.466461802172, + 10371.996941505877, + 10591.442201495998, + 5117.009936536, + 5155.946159603654, + 5199.797162957729, + 5248.562946598223, + 5302.243510525136, + 5360.838854738469, + 5424.348979238223, + 5492.773884024395, + 5566.1135690969895, + 5644.368034455999, + 5727.5372801014355, + 5815.621306033285, + 5908.620112251556, + 6006.533698756247, + 6109.36206554736, + 6217.105212624889, + 6329.763139988841, + 6447.335847639211, + 6569.823335575999, + 6697.225603799212, + 6829.542652308842, + 6966.77448110489, + 7108.921090187359, + 7255.982479556246, + 7407.958649211554, + 7564.849599153285, + 7726.655329381432, + 7893.375839895999, + 8065.011130696989, + 8241.561201784396, + 8423.02605315822, + 8609.405684818472, + 8800.700096765137, + 8996.909288998226, + 9198.033261517732, + 9404.072014323656, + 9615.025547415999, + 5780.272263535998, + 5826.965091901433, + 5878.5727005532835, + 5935.095089491556, + 5996.532258716245, + 6062.884208227358, + 6134.150938024889, + 6210.332448108839, + 6291.428738479212, + 6377.439809135999, + 6468.365660079211, + 6564.20629130884, + 6664.961702824889, + 6770.631894627356, + 6881.216866716247, + 6996.716619091554, + 7117.131151753284, + 7242.460464701434, + 7372.704557936, + 7507.863431456989, + 7647.937085264397, + 7792.925519358221, + 7942.828733738472, + 8097.646728405136, + 8257.37950335822, + 8422.02705859773, + 8591.589394123654, + 8766.066509935998, + 8945.458406034768, + 9129.76508241995, + 9318.986539091555, + 9513.122776049582, + 9712.173793294025, + 9916.13959082489, + 10125.020168642173, + 10338.815526745875, + 10557.525665135996, + 5114.110004704, + 5152.471991931655, + 5195.748759445727, + 5243.940307246224, + 5297.046635333135, + 5355.067743706469, + 5418.0036323662225, + 5485.8543013123935, + 5558.619750544988, + 5636.299980063999, + 5718.894989869434, + 5806.404779961285, + 5898.829350339555, + 5996.168701004246, + 6098.4228319553595, + 6205.591743192888, + 6317.675434716842, + 6434.673906527211, + 6556.587158624, + 6683.415191007213, + 6815.15800367684, + 6951.8155966328895, + 7093.387969875361, + 7239.8751234042475, + 7391.277057219552, + 7547.593771321285, + 7708.825265709433, + 7874.971540383999, + 8046.032595344991, + 8222.008430592396, + 8402.899046126218, + 8588.704441946473, + 8779.424618053135, + 8975.059574446226, + 9175.609311125732, + 9381.073828091654, + 9591.453125343996, + 5773.201662404001, + 5819.159369169431, + 5870.031856221283, + 5925.819123559556, + 5986.521171184246, + 6052.137999095358, + 6122.66960729289, + 6198.115995776839, + 6278.477164547211, + 6363.753113604, + 6453.943842947211, + 6549.049352576839, + 6649.069642492887, + 6754.004712695357, + 6863.854563184246, + 6978.619193959555, + 7098.298605021284, + 7222.892796369433, + 7352.401768003999, + 7486.82551992499, + 7626.164052132395, + 7770.41736462622, + 7919.58545740647, + 8073.668330473137, + 8232.665983826222, + 8396.578417465731, + 8565.405631391652, + 8739.147625603999, + 8917.804400102767, + 9101.37595488795, + 9289.86228995955, + 9483.26340531758, + 9681.579300962025, + 9884.809976892893, + 10092.955433110174, + 10306.015669613877, + 10523.990686403995, + 5111.591630499999, + 5149.379381887657, + 5192.081913561728, + 5239.699225522223, + 5292.231317769136, + 5349.678190302469, + 5412.039843122221, + 5479.316276228393, + 5551.507489620988, + 5628.6134833, + 5710.634257265434, + 5797.5698115172845, + 5889.420146055555, + 5986.185260880246, + 6087.865155991358, + 6194.459831388888, + 6305.969287072841, + 6422.393523043208, + 6543.7325393, + 6669.98633584321, + 6801.1549126728405, + 6937.238269788889, + 7078.236407191361, + 7224.149324880248, + 7374.977022855554, + 7530.719501117287, + 7691.376759665432, + 7856.948798499998, + 8027.435617620988, + 8202.837217028395, + 8383.15359672222, + 8568.38475670247, + 8758.530696969136, + 8953.591417522228, + 9153.566918361732, + 9358.457199487653, + 9568.262260899997, + 5766.5126188999975, + 5811.735204065432, + 5861.872569517284, + 5916.9247152555545, + 5976.8916412802455, + 6041.773347591357, + 6111.569834188889, + 6186.281101072838, + 6265.907148243211, + 6350.447975699999, + 6439.903583443212, + 6534.273971472839, + 6633.559139788888, + 6737.759088391356, + 6846.873817280248, + 6960.903326455554, + 7079.847615917286, + 7203.706685665433, + 7332.480535699999, + 7466.169166020989, + 7604.772576628396, + 7748.2907675222195, + 7896.72373870247, + 8050.071490169134, + 8208.334021922221, + 8371.51133396173, + 8539.603426287651, + 8712.610298899996, + 8890.531951798766, + 9073.36838498395, + 9261.11959845555, + 9453.78559221358, + 9651.366366258022, + 9853.86192058889, + 10061.272255206173, + 10273.597370109876, + 10490.8372653, + 5109.454813924, + 5146.668329471655, + 5188.7966253057275, + 5235.839701426224, + 5287.797557833135, + 5344.67019452647, + 5406.457611506222, + 5473.159808772394, + 5544.776786324989, + 5621.308544164, + 5702.755082289433, + 5789.116400701284, + 5880.392499399555, + 5976.5833783842445, + 6077.68903765536, + 6183.709477212888, + 6294.644697056842, + 6410.494697187211, + 6531.259477604, + 6656.939038307211, + 6787.53337929684, + 6923.042500572888, + 7063.466402135362, + 7208.805083984247, + 7359.058546119554, + 7514.226788541287, + 7674.309811249433, + 7839.307614243998, + 8009.220197524989, + 8184.047561092397, + 8363.78970494622, + 8548.446629086471, + 8738.018333513135, + 8932.504818226225, + 9131.90608322573, + 9336.222128511656, + 9545.452954083998, + 5760.205133024, + 5804.6925965894325, + 5854.094840441285, + 5908.411864579554, + 5967.643669004245, + 6031.790253715359, + 6100.851618712888, + 6174.827763996839, + 6253.71868956721, + 6337.5243954239995, + 6426.2448815672105, + 6519.8801479968415, + 6618.430194712888, + 6721.895021715356, + 6830.274629004246, + 6943.569016579553, + 7061.778184441286, + 7184.902132589431, + 7312.940861024, + 7445.894369744987, + 7583.7626587523955, + 7726.545728046219, + 7874.24357762647, + 8026.856207493138, + 8184.383617646221, + 8346.82580808573, + 8514.182778811652, + 8686.454529823997, + 8863.641061122767, + 9045.742372707951, + 9232.758464579554, + 9424.689336737583, + 9621.534989182024, + 9823.295421912891, + 10029.970634930174, + 10241.560628233876, + 10458.065401823998, + 5109.240942630787, + 5146.390654145177, + 5188.4551459459835, + 5235.434418033213, + 5287.328470406861, + 5344.137303066929, + 5405.8609160134165, + 5472.499309246323, + 5544.052482765652, + 5620.520436571397, + 5701.903170663567, + 5788.200685042152, + 5879.412979707158, + 5975.540054658582, + 6076.58190989643, + 6182.538545420696, + 6293.409961231381, + 6409.196157328486, + 6529.897133712008, + 6655.512890381957, + 6786.04342733832, + 6921.488744581103, + 7061.848842110308, + 7207.123719925931, + 7357.313378027973, + 7512.4178164164405, + 7672.43703509132, + 7837.371034052618, + 8007.219813300344, + 8181.9833728344875, + 8361.661712655046, + 8546.254832762032, + 8735.762733155429, + 8930.185413835254, + 9129.522874801494, + 9333.775116054152, + 9542.942137593229, + 5759.527853660061, + 5803.93363698237, + 5853.254200591101, + 5907.489544486251, + 5966.639668667819, + 6030.704573135809, + 6099.684257890219, + 6173.578722931045, + 6252.387968258297, + 6336.111993871962, + 6424.750799772052, + 6518.30438595856, + 6616.772752431485, + 6720.155899190834, + 6828.4538262366, + 6941.666533568785, + 7059.794021187395, + 7182.836289092421, + 7310.793337283864, + 7443.665165761734, + 7581.451774526018, + 7724.153163576721, + 7871.76933291385, + 8024.300282537392, + 8181.746012447354, + 8344.106522643742, + 8511.381813126543, + 8683.571883895767, + 8860.676734951416, + 9042.696366293476, + 9229.630777921957, + 9421.479969836862, + 9618.243942038183, + 9819.92269452593, + 10026.51622730009, + 10238.02454036067, + 10454.447633707669, + 5257.762653799999, + 5275.771170698766, + 5298.694467883951, + 5326.532545355554, + 5359.2854031135785, + 5396.9530411580245, + 5439.535459488887, + 5487.03265810617, + 5539.444637009878, + 5596.7713962, + 5659.012935676544, + 5726.169255439505, + 5798.240355488887, + 5875.22623582469, + 5957.126896446912, + 6043.942337355555, + 6135.672558550616, + 6232.317560032098, + 6333.877341799997, + 6440.351903854322, + 6551.741246195063, + 6668.045368822221, + 6789.264271735803, + 6915.397954935802, + 7046.446418422219, + 7182.409662195062, + 7323.28768625432, + 7469.080490599995, + 7619.788075232098, + 7775.410440150615, + 7935.947585355554, + 8101.399510846915, + 8271.766216624692, + 8447.047702688891, + 8627.243969039508, + 8812.355015676541, + 9002.380842599996, + 5769.027255200001, + 5788.92898525432, + 5813.74549559506, + 5843.476786222222, + 5878.122857135802, + 5917.683708335801, + 5962.159339822222, + 6011.549751595059, + 6065.854943654322, + 6125.074915999999, + 6189.2096686321, + 6258.259201550618, + 6332.223514755557, + 6411.102608246912, + 6494.896482024692, + 6583.605136088887, + 6677.228570439505, + 6775.766785076542, + 6879.219779999997, + 6987.587555209877, + 7100.870110706175, + 7219.067446488888, + 7342.179562558025, + 7470.206458913581, + 7603.148135555554, + 7741.004592483952, + 7883.775829698764, + 8031.461847199996, + 8184.062644987655, + 8341.578223061728, + 8504.00858142222, + 8671.353720069139, + 8843.613639002466, + 9020.78833822222, + 9202.877817728397, + 9389.882077520988, + 9581.801117599995 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 4.571702450723529, + "volume": 1.135623 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC90A_C_MP.json b/examples/NyleC90A_C_MP.json new file mode 100644 index 0000000..768a7dc --- /dev/null +++ b/examples/NyleC90A_C_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0012618033333333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 21130.0000002, + 20980.00000136, + 20279.99999728, + 19899.99999632, + 19199.99999711, + 18740.00000001, + 29019.99999946, + 28189.99999858, + 27370.000003139998, + 26579.999995600003, + 25390.000001760003, + 24580.0000005, + 39400.00000159, + 37689.999998939995, + 36340.000001759996, + 34760.000003149995, + 32489.999994060003, + 30979.9999947, + 45769.999999140004, + 43659.99999711, + 41710.00000416, + 39439.999999399995, + 36269.9999955, + 34159.999998299994 + ], + "input_power": [ + 4410.0, + 6040.0, + 7240.0, + 9140.0, + 12230.0, + 14730.0, + 4780.0, + 6610.0, + 7740.0, + 9400.0, + 12470.0, + 14750.0, + 5510.0, + 6660.0, + 8440.0, + 9950.0, + 13060.0, + 15350.0, + 6780.0, + 7790.0, + 8810.0, + 10010.0, + 11910.0, + 13350.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.254000980880113, + "volume": 1.8169968 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC90A_C_SP.json b/examples/NyleC90A_C_SP.json new file mode 100644 index 0000000..c9c291b --- /dev/null +++ b/examples/NyleC90A_C_SP.json @@ -0,0 +1,7285 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, + 275.15, + 275.65, + 276.15, + 276.65, + 277.15, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 333.15, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 18411.63732183736, + 18506.84683999942, + 18587.973402125313, + 18655.861438209202, + 18711.359957023644, + 18755.32254611957, + 18788.607371826205, + 18812.0771792512, + 18826.59929228053, + 18833.045613578535, + 18832.29262458794, + 18825.221385529763, + 18812.71753540346, + 18795.67129198679, + 18774.977451835905, + 18751.535390285277, + 18726.249061447787, + 18700.02699821464, + 18673.782312255404, + 18648.432694018014, + 18624.90041272876, + 18604.11231639229, + 18586.999831791636, + 18574.49896448813, + 18567.550298821527, + 18567.098997909892, + 18574.09480364969, + 18589.492036715696, + 18614.249596561116, + 18649.330961417414, + 18695.70418829452, + 18754.341912980675, + 18826.22135004244, + 18912.324292824786, + 19013.63711345104, + 19131.150762822872, + 19265.86077062032, + 18484.147524031283, + 18592.636283183463, + 18686.362140496898, + 18766.203356845155, + 18833.04277188013, + 18887.767804032155, + 18931.270450509805, + 18964.447287300136, + 18988.199469168474, + 19003.43272965854, + 19011.057381092425, + 19011.988314570543, + 19007.144999971704, + 18997.451485953046, + 18983.836399950098, + 18967.23294817672, + 18948.57891562514, + 18928.816666065955, + 18908.893142048102, + 18889.759864898904, + 18872.372934723993, + 18857.693030407423, + 18846.685409611593, + 18840.319908777208, + 18839.570943123388, + 18845.41750664758, + 18858.84317212562, + 18880.836091111672, + 18912.388993938293, + 18954.499189716353, + 19008.168566335116, + 19074.40359046223, + 19154.215307543614, + 19248.619341803613, + 19358.635896244945, + 19485.28975264864, + 19629.610271574118, + 18757.810649361123, + 18886.995866200235, + 19000.29645451437, + 19098.651570759954, + 19183.004950171766, + 19254.304906762998, + 19313.504333325116, + 19361.560701428043, + 19399.436061419972, + 19428.097042427504, + 19448.51485235561, + 19461.665277887572, + 19468.528684485067, + 19470.09001638812, + 19467.338796615124, + 19461.269126962823, + 19452.879688006302, + 19443.173739099046, + 19433.15911837287, + 19423.84824273795, + 19416.258107882826, + 19411.410288274397, + 19410.330937157945, + 19414.05078655704, + 19423.605147273698, + 19440.033908888206, + 19464.3815397593, + 19497.69708702404, + 19541.034176597794, + 19595.451013174355, + 19662.010380225853, + 19741.779640002802, + 19835.830733534, + 19945.240180626657, + 20071.08907986638, + 20214.463108617056, + 20376.452523020987, + 18582.44286100068, + 18674.633393879045, + 18752.823925214696, + 18817.854061200906, + 18870.567986809372, + 18911.814465790136, + 18942.446840671535, + 18963.323032760363, + 18975.305542141694, + 18979.261447679004, + 18976.062407014128, + 18966.584656567225, + 18951.70901153683, + 18932.320865899877, + 18909.310192411576, + 18883.571542605598, + 18856.004046793885, + 18827.511414066776, + 18799.00193229297, + 18771.388468119505, + 18745.58846697182, + 18722.52395305367, + 18703.121529347198, + 18688.31237761287, + 18679.032258389558, + 18676.221510994437, + 18680.825053523098, + 18693.792382849475, + 18716.07757462582, + 18748.63928328281, + 18792.440742029412, + 18848.449762853015, + 18917.638736519326, + 19000.984632572417, + 19099.46899933475, + 19214.07796390709, + 19345.8022321686, + 18650.48026119171, + 18755.623013281398, + 18846.1026793131, + 18922.792309761873, + 18986.56953388115, + 19038.316559702733, + 19078.920174036728, + 19109.27174247165, + 19130.267209374364, + 19142.80709789009, + 19147.79650994241, + 19146.145126233245, + 19138.767206242905, + 19126.581588230027, + 19110.51168923164, + 19091.485505063112, + 19070.435610318185, + 19048.29915836893, + 19026.017881365806, + 19004.53809023762, + 18984.810674691547, + 18967.79110321309, + 18954.439423066182, + 18945.720260293012, + 18942.602819714215, + 18946.060884928742, + 18957.072818313914, + 18976.621561025426, + 19005.694632997296, + 19045.284132941953, + 19096.386738350117, + 19160.003705490923, + 19237.140869411847, + 19328.808643938704, + 19436.022021675722, + 19559.800574005414, + 19701.168451088717, + 18916.158690516448, + 19041.371548785675, + 19150.831013872168, + 19245.470335958154, + 19326.2273440042, + 19394.044445749278, + 19449.868627710654, + 19494.651455184026, + 19529.349072243374, + 19554.922201741105, + 19572.336145307956, + 19582.560783353016, + 19586.570575063724, + 19585.34455840592, + 19579.86635012376, + 19571.12414573979, + 19560.110719554898, + 19547.82342464833, + 19535.264192877697, + 19523.43953487896, + 19513.360540066456, + 19506.042876632844, + 19502.50679154923, + 19503.777110564955, + 19510.883238207825, + 19524.85915778392, + 19546.743431377756, + 19577.57919985217, + 19618.414182848348, + 19670.30067878584, + 19734.295564862583, + 19811.46029705486, + 19902.860910117273, + 20009.56801758283, + 20132.65681176289, + 20273.207063747166, + 20432.303123403704, + 18841.86330588979, + 18929.566294583383, + 19003.39487829248, + 19064.181427509087, + 19112.762891503542, + 19149.98079832459, + 19176.68125479924, + 19193.714946532946, + 19201.937137909514, + 19202.207672091066, + 19195.390971018114, + 19182.356035409513, + 19163.976444762495, + 19141.13035735264, + 19114.700510233866, + 19085.574219238508, + 19054.643378977195, + 19022.80446283895, + 18990.958522991157, + 18960.011190379548, + 18930.872674728205, + 18904.457764539588, + 18881.685827094527, + 18863.480808452157, + 18850.77123345004, + 18844.490205704038, + 18845.5754076084, + 18854.969100335762, + 18873.618123837066, + 18902.473896841628, + 18942.492416857156, + 18994.63426016967, + 19059.86458184358, + 19139.15311572165, + 19233.474174424984, + 19343.806649353082, + 19471.13401068375, + 18903.168839122867, + 19003.337400720786, + 19088.99376226025, + 19161.003158618576, + 19220.235403451436, + 19267.564889192876, + 19303.870587055277, + 19330.036047029396, + 19346.949397884367, + 19355.50334716763, + 19356.595181205033, + 19351.12676510076, + 19340.004542737366, + 19324.139536775754, + 19304.44734865519, + 19281.8481585933, + 19257.266725586065, + 19231.63238740783, + 19205.879060611307, + 19180.945240527555, + 19157.774001265974, + 19137.312995714357, + 19120.514455538872, + 19108.335191183956, + 19101.73659187251, + 19101.68462560573, + 19109.149839163183, + 19125.107358102847, + 19150.536886760954, + 19186.4227082522, + 19233.753684469568, + 19293.52325608445, + 19366.729442546544, + 19454.374842083944, + 19557.466631703108, + 19677.016567188843, + 19814.040983104307, + 19156.821321325107, + 19276.12994159963, + 19379.883114876873, + 19469.00523192772, + 19544.425262301433, + 19607.076754325655, + 19657.897835106334, + 19697.831210527856, + 19727.824165252896, + 19748.8285627225, + 19761.800845156125, + 19767.702033551523, + 19767.497727684837, + 19762.158106110564, + 19752.65792616156, + 19739.97652394902, + 19725.097814362533, + 19709.010291070033, + 19692.70702651782, + 19677.185671930518, + 19663.44845731114, + 19652.502191441064, + 19645.358261880043, + 19643.0326349661, + 19646.545855815726, + 19656.923048323697, + 19675.193915163192, + 19702.39273778574, + 19739.55837642119, + 19787.734270077828, + 19847.968436542204, + 19921.313472379297, + 20008.82655293242, + 20111.569432323264, + 20230.608443451838, + 20367.014497996544, + 20521.86308641414, + 19105.163433199636, + 19188.426447016423, + 19257.942050188653, + 19314.535377506974, + 19359.036142540437, + 19392.27863763645, + 19415.10173392071, + 19428.348881297374, + 19432.86810844888, + 19429.512022836076, + 19419.13781069814, + 19402.60723705261, + 19380.786645695385, + 19354.546959200747, + 19324.76367892129, + 19292.316884988024, + 19258.091236310273, + 19222.975970575728, + 19187.864904250455, + 19153.65643257886, + 19121.253529583744, + 19091.563748066204, + 19065.499219605772, + 19043.976654560272, + 19027.917342065928, + 19018.247150037285, + 19015.896525167296, + 19021.800492927257, + 19036.898657566784, + 19062.135202113906, + 19098.45888837498, + 19146.82305693475, + 19208.185627156265, + 19283.509097180973, + 19373.760543928685, + 19479.911623097574, + 19602.938569164115, + 19159.715007559877, + 19254.961386335788, + 19335.84784584683, + 19403.231805372576, + 19457.975262970955, + 19500.944795478266, + 19533.011558509115, + 19555.051286456564, + 19567.944292491935, + 19572.575468564974, + 19569.83428540377, + 19560.614792514752, + 19545.815618182725, + 19526.339969470842, + 19503.09563222063, + 19476.994971051976, + 19448.954929363103, + 19419.897029330616, + 19390.747371909478, + 19362.43663683297, + 19335.9000826128, + 19312.077546538978, + 19291.91344467993, + 19276.356771882354, + 19266.361101771396, + 19262.884586750504, + 19266.88995800151, + 19279.344525484623, + 19301.220177938358, + 19333.49338287963, + 19377.145186603695, + 19433.161214184194, + 19502.531669473086, + 19586.251335100707, + 19685.319572475793, + 19800.740321785357, + 19933.52210199483, + 19401.292047594878, + 19514.759407765203, + 19612.87057893016, + 19696.54109244929, + 19766.691058460565, + 19824.245165880304, + 19870.132682403128, + 19905.287454502082, + 19930.64790742857, + 19947.157045212298, + 19955.762450661397, + 19957.416285362313, + 19953.075289679848, + 19943.70078275721, + 19930.258662515906, + 19913.719405655847, + 19895.05806765529, + 19875.25428277084, + 19855.292264037478, + 19836.16080326851, + 19818.853271055654, + 19804.367616768945, + 19793.70636855681, + 19787.876633345975, + 19787.8900968416, + 19794.76302352715, + 19809.516256664487, + 19833.17521829381, + 19866.769909233673, + 19911.334909080986, + 19967.909376211057, + 20037.537047777518, + 20121.26623971235, + 20220.1498467259, + 20335.24534230691, + 20467.614778722458, + 20618.324787017933, + 19372.370025860084, + 19451.238889029486, + 19516.48873367593, + 19568.93745888876, + 19609.407542535686, + 19638.7260412628, + 19657.724590494494, + 19667.239404433578, + 19668.111276061216, + 19661.1855771369, + 19647.312258198504, + 19627.345848562243, + 19602.14545632271, + 19572.574768352843, + 19539.502050303952, + 19503.800146605696, + 19466.346480466094, + 19428.023053871522, + 19389.71644758672, + 19352.317821154793, + 19316.72291289719, + 19283.832039913712, + 19254.550098082585, + 19229.786562060282, + 19210.455485281742, + 19197.475499960165, + 19191.769817087203, + 19194.26622643282, + 19205.897096545326, + 19227.59937475141, + 19260.31458715614, + 19304.988838642912, + 19362.572812873488, + 19434.02177228797, + 19520.29555810485, + 19622.358590321015, + 19741.179867711584, + 19420.15129236576, + 19510.5254974802, + 19586.693458917438, + 19649.50478035926, + 19699.81364426588, + 19738.478811875826, + 19766.363623205998, + 19784.335997051643, + 19793.268430986405, + 19794.038001362245, + 19787.52636330951, + 19774.61975073688, + 19756.208976331425, + 19733.189431558545, + 19706.461086662028, + 19676.92849066399, + 19645.50077136493, + 19613.09163534368, + 19580.619367957475, + 19549.00683334187, + 19519.181474410783, + 19492.075312856497, + 19468.624949149693, + 19449.77156253932, + 19436.46091105278, + 19429.643331495772, + 19430.273739452383, + 19439.31162928505, + 19457.721074134577, + 19486.470725920102, + 19526.533815339157, + 19578.888151867635, + 19644.516123759735, + 19724.40469804805, + 19819.54542054355, + 19930.934415835545, + 20059.572387291686, + 19649.613732468457, + 19757.300355740692, + 19849.831359805914, + 19928.113416612374, + 19993.05777688672, + 20045.580270133938, + 20086.60130463733, + 20117.045867458666, + 20137.843524437965, + 20149.928420193657, + 20154.23927812254, + 20151.719400399732, + 20143.31666797875, + 20129.98354059145, + 20112.67705674805, + 20092.35883373711, + 20069.99506762558, + 20046.556533258758, + 20023.01858426029, + 20000.361153032198, + 19979.568750754817, + 19961.63046738692, + 19947.5399716656, + 19938.295511106262, + 19934.899912002762, + 19938.36057942721, + 19949.68949723017, + 19969.90322804054, + 20000.022913265526, + 20041.074273090737, + 20094.087606480152, + 20160.097791176082, + 20240.144283699203, + 20335.271119348537, + 20446.52691220152, + 20574.964855113874, + 20721.642719719708, + 19643.508256620473, + 19718.027048293367, + 19779.056611346583, + 19827.407609168135, + 19863.895283924412, + 19889.339456560218, + 19904.56452679859, + 19910.39947314106, + 19907.67785286743, + 19897.237802035896, + 19879.922035483007, + 19856.577846823675, + 19828.05710845115, + 19795.216271537076, + 19758.916366031433, + 19720.023000662546, + 19679.406362937127, + 19637.941219140255, + 19596.50691433533, + 19555.98737236413, + 19517.271095846805, + 19481.251166181835, + 19448.82524354611, + 19420.895566894804, + 19398.368953961522, + 19382.156801258156, + 19373.175084075032, + 19372.34435648081, + 19380.58975132247, + 19398.8409802254, + 19428.0323335933, + 19469.1026806083, + 19522.995469230813, + 19590.658726199654, + 19673.04505703198, + 19771.111646023317, + 19885.820256247545, + 19684.50860922301, + 19770.058651327323, + 19841.557520136128, + 19899.847003733492, + 19945.77346898185, + 19980.187861522023, + 20003.945705773123, + 20017.90710493268, + 20022.93674097658, + 20019.903874659038, + 20009.68234551264, + 19993.150571848342, + 19971.19155075545, + 19944.692858101633, + 19914.5466485329, + 19881.649655473662, + 19846.903191126643, + 19811.213146472943, + 19775.489991272036, + 19740.648774061734, + 19707.609122158203, + 19677.295241655997, + 19650.63591742803, + 19628.564513125526, + 19612.018971178102, + 19601.941812793753, + 19599.280137958787, + 19604.98562543792, + 19620.01453277419, + 19645.32769628901, + 19681.890531082132, + 19730.673031031703, + 19792.649768794203, + 19868.799895804466, + 19960.107142275734, + 20067.55981719952, + 20192.15080834579, + 19901.82762890802, + 20003.79158380386, + 20090.801801097536, + 20163.756093325977, + 20223.55685180449, + 20271.11104662676, + 20307.33022666479, + 20333.130519568997, + 20349.432631768097, + 20357.161848469204, + 20357.24803365778, + 20350.625630097657, + 20338.233659331, + 20321.015721678363, + 20299.919996238637, + 20275.899240889074, + 20249.910792285304, + 20222.91656586129, + 20195.88305582939, + 20169.781335180265, + 20145.587055682987, + 20124.280447884958, + 20106.84632111197, + 20094.27406346812, + 20087.55764183593, + 20087.69560187622, + 20095.69106802821, + 20112.551743509466, + 20139.289910315903, + 20176.922429221817, + 20226.47073977983, + 20288.960860320967, + 20365.42338795458, + 20456.893498568366, + 20564.41094682845, + 20689.02006617922, + 20831.76976884349, + 19918.601688049526, + 19988.81274229822, + 20045.66575561219, + 20089.964155678128, + 20122.51594896113, + 20144.133720704627, + 20155.6346349304, + 20157.84043443862, + 20151.577440807785, + 20137.676554394766, + 20116.973254334815, + 20090.30759854149, + 20058.524223706758, + 20022.47234530092, + 19983.005757572635, + 19940.98283354893, + 19897.266525035207, + 19852.724362615183, + 19808.228455650977, + 19764.655492283022, + 19722.886739430178, + 19683.808042789595, + 19648.309826836823, + 19617.287094825744, + 19591.639428788636, + 19572.270989536068, + 19560.090516657077, + 19556.01132851895, + 19560.95132226738, + 19575.832973826437, + 19601.58333789851, + 19639.134047964402, + 19689.421316283206, + 19753.3859338924, + 19831.97327060785, + 19926.133275023756, + 20036.820474512686, + 19952.816263633496, + 20033.588154869787, + 20100.465337986345, + 20154.281785469495, + 20195.87604858391, + 20226.09125737265, + 20245.77512065711, + 20255.77992603706, + 20256.96253989064, + 20250.184407374298, + 20236.311552422918, + 20216.214577749666, + 20190.768664846117, + 20160.853573982204, + 20127.353644206167, + 20091.157793344686, + 20053.15951800273, + 20014.256893563655, + 19975.352574189183, + 19937.35379281939, + 19901.17236117269, + 19867.724669745876, + 19837.931687814144, + 19812.718963430936, + 19793.01662342815, + 19779.759373416015, + 19773.88649778311, + 19776.34185969639, + 19788.07390110114, + 19810.035642721035, + 19843.184684058087, + 19888.483203392712, + 19946.8979577836, + 20019.40028306786, + 20106.966093860963, + 20210.57588355674, + 20331.214724327332, + 20157.973379695086, + 20254.270280051867, + 20335.81663621778, + 20403.501401318452, + 20458.218107257857, + 20500.864864718373, + 20532.34436316069, + 20553.563870823884, + 20565.43523472537, + 20568.874880660947, + 20564.803813204748, + 20554.147615709287, + 20537.836450305414, + 20516.805057902366, + 20491.99275818771, + 20464.34344962738, + 20434.805609465693, + 20404.332293725296, + 20373.881137207216, + 20344.4143534908, + 20316.89873493381, + 20292.30565267231, + 20271.611056620804, + 20255.79547547204, + 20245.844016697236, + 20242.746366545885, + 20247.496790045898, + 20261.094131003523, + 20284.541812003343, + 20318.847834408338, + 20365.024778359842, + 20424.089802777537, + 20497.06464535944, + 20584.97562258196, + 20688.853629699865, + 20809.73414074628, + 20948.65720853266, + 20197.672272535438, + 20263.616178353695, + 20316.334628703848, + 20356.62381557129, + 20385.28450971979, + 20403.122060691476, + 20410.94639680678, + 20409.57202516458, + 20399.81803164205, + 20382.50808089474, + 20358.470416356573, + 20328.537860239805, + 20293.54781353507, + 20254.342256011372, + 20211.76774621603, + 20166.675421474767, + 20119.92099789165, + 20072.364770349086, + 20024.871612507875, + 19978.31097680715, + 19933.556894464422, + 19891.487975475535, + 19852.987408614725, + 19818.942961434564, + 19790.246980265976, + 19767.796390218267, + 19752.49269517908, + 19745.241977814465, + 19746.95489956874, + 19758.546700664683, + 19780.937200103363, + 19815.050795664232, + 19861.816463905092, + 19922.167760162105, + 19997.042818549835, + 20087.384351961126, + 20194.13965206723, + 20225.10195091856, + 20301.139704919755, + 20363.44061077104, + 20412.830825360987, + 20450.141084356543, + 20476.206702203013, + 20491.867572124043, + 20497.96816612165, + 20495.35753497624, + 20484.889308246504, + 20467.42169426958, + 20443.81748016089, + 20414.94403181427, + 20381.673293901873, + 20344.881789874227, + 20305.45062196026, + 20264.265471167175, + 20222.2165972806, + 20180.1988388645, + 20139.11161326119, + 20099.858916591384, + 20063.34932375408, + 20030.49598842675, + 20002.216643065083, + 19979.43359890323, + 19963.073745953665, + 19954.068553007222, + 19953.354067633132, + 19961.870916178897, + 19980.564303770487, + 20010.384014312134, + 20052.284410486493, + 20107.22443375454, + 20176.167604355633, + 20260.082021307513, + 20359.940362406185, + 20476.71988422612, + 20418.089017430706, + 20508.77202240134, + 20584.908988398885, + 20647.38000913764, + 20697.069757110272, + 20734.867483587837, + 20761.667018619693, + 20778.36677103361, + 20785.869728435682, + 20785.08345721039, + 20776.92010252055, + 20762.296388307353, + 20742.13361729033, + 20717.35767096741, + 20688.899009614826, + 20657.69267228721, + 20624.67827681754, + 20590.800019817158, + 20557.006676675763, + 20524.251601561406, + 20493.492727420493, + 20465.69256597782, + 20441.818207736513, + 20422.841321978056, + 20409.73815676231, + 20403.489538927464, + 20405.080874090116, + 20415.50214664519, + 20435.747919765952, + 20466.81733540406, + 20509.714114289523, + 20565.446555930692, + 20635.027538614308, + 20719.47451940543, + 20819.809534147527, + 20937.05919746239, + 21072.25470275016, + 20480.740352285757, + 20542.45595358877, + 20591.080082671997, + 20627.40169581951, + 20652.214328093738, + 20666.316093335518, + 20670.509684163957, + 20665.602371976605, + 20652.406006949324, + 20631.737018036347, + 20604.416412970273, + 20571.26977826205, + 20533.127279200988, + 20490.823659854745, + 20445.198243069382, + 20397.09493046924, + 20347.3622024571, + 20296.853118214076, + 20246.425315699602, + 20196.9410116515, + 20149.267001585977, + 20104.274659797546, + 20062.839939359168, + 20025.843372122017, + 19994.17006871577, + 19968.70971854837, + 19950.356589806175, + 19940.009529453888, + 19938.57196323453, + 19946.95189566954, + 19966.061910058685, + 19996.81916848009, + 20040.145411790254, + 20096.96695962399, + 20168.214710394575, + 20254.82414129352, + 20357.735308290747, + 20501.391756218924, + 20572.737388108708, + 20630.50542661248, + 20675.514213021044, + 20708.586667403622, + 20730.550288607763, + 20742.23715425936, + 20744.48392076268, + 20738.13182330039, + 20724.026675833444, + 20703.01887110121, + 20675.963380621386, + 20643.71975469004, + 20607.152122381594, + 20567.129191548822, + 20524.524248822894, + 20480.215159613286, + 20435.08436810787, + 20390.01889727286, + 20345.91034885284, + 20303.654903370745, + 20264.153320127873, + 20228.31093720389, + 20197.037671456776, + 20171.24801852294, + 20151.861052817087, + 20139.800427532322, + 20135.99437464011, + 20141.37570489023, + 20156.881807810874, + 20183.454651708547, + 20222.040783668162, + 20273.591329552943, + 20339.06199400449, + 20419.413060442796, + 20515.60939106615, + 20628.620426851237, + 20682.210964535247, + 20767.33077858827, + 20838.11037069245, + 20895.42097515076, + 20940.138405044552, + 20973.143052233572, + 20995.31988735583, + 21007.558459827807, + 21010.752897844275, + 21005.801908378384, + 20993.608777181642, + 20975.081368783915, + 20951.13212649342, + 20922.678072396764, + 20890.64080735886, + 20855.946511023027, + 20819.525941810916, + 20782.314436922563, + 20745.25191233634, + 20709.28286280898, + 20675.356361875576, + 20644.426061849586, + 20617.450193822853, + 20595.391567665498, + 20579.217572026097, + 20569.900174331517, + 20568.415920787018, + 20575.745936376217, + 20592.87592486106, + 20620.796168781908, + 20660.501529457415, + 20712.991446984648, + 20779.269940239, + 20860.34560687422, + 20957.231623322477, + 21070.945744794204, + 21202.510305278243, + 20767.824659327558, + 20825.349054951974, + 20869.917359386593, + 20902.311293214174, + 20923.31715579582, + 20933.725825271045, + 20934.332758557674, + 20925.93799135187, + 20909.34613812824, + 20885.366392139662, + 20854.812525417445, + 20818.502888771178, + 20777.26041178889, + 20731.912602836914, + 20683.291549059966, + 20632.23391638112, + 20579.580949501775, + 20526.17847190177, + 20472.876885839192, + 20420.531172350584, + 20370.000891250802, + 20322.15018113306, + 20277.847759368975, + 20237.96692210841, + 20203.385544279758, + 20174.986079589584, + 20153.65556052299, + 20140.285598343304, + 20135.77238309228, + 20141.016683589998, + 20156.92384743492, + 20184.403801003864, + 20224.37104945198, + 20277.74467671282, + 20345.448345498255, + 20428.41029729857, + 20527.563352382324, + 20781.710154494805, + 20848.403680887663, + 20901.68026345246, + 20942.350427882266, + 20971.22927864853, + 20989.136499001066, + 20996.896350968, + 20995.337675355902, + 20985.293891749632, + 20967.602998512444, + 20943.107572785928, + 20912.65477049006, + 20877.096326323128, + 20837.28855376185, + 20794.092345061228, + 20748.37317125466, + 20701.00108215392, + 20652.85070634911, + 20604.80125120872, + 20557.736502879554, + 20512.544826286794, + 20470.119165134012, + 20431.357041903142, + 20397.16055785441, + 20368.436393026434, + 20346.095806236248, + 20331.054635079134, + 20324.23329592887, + 20326.556783937423, + 20338.954673035314, + 20362.361115931253, + 20397.714844112405, + 20445.959167844274, + 20508.041976170673, + 20584.91573691389, + 20677.537496674464, + 20786.868880831295, + 20950.374033248616, + 21029.978906168166, + 21095.450685969583, + 21147.65174754451, + 21187.449044563018, + 21215.714109473487, + 21233.323053502634, + 21241.156566655623, + 21240.099917715892, + 21231.04295424528, + 21214.88010258398, + 21192.510367850547, + 21164.83733394185, + 21132.769163533216, + 21097.218598078216, + 21059.10295780884, + 21019.34414173545, + 20978.868627646734, + 20938.60747210978, + 20899.496310469975, + 20862.47535685109, + 20828.48940415526, + 20798.48782406305, + 20773.424567033242, + 20754.25816230307, + 20741.951717888103, + 20737.472920582273, + 20741.794035957915, + 20755.891908365596, + 20780.747960934408, + 20817.348195571634, + 20866.68319296309, + 20929.748112572815, + 21007.542692643226, + 21101.0712501952, + 21211.342681027818, + 21339.370459718648, + 21058.94231550726, + 21112.310859211182, + 21152.86009053696, + 21181.36449436605, + 21198.603134358258, + 21205.359652951738, + 21202.422271362993, + 21190.583789586937, + 21170.641586396785, + 21143.397619344134, + 21109.658424758945, + 21070.235117749533, + 21025.943392202567, + 20977.603520783086, + 20926.040354934466, + 20872.08332487847, + 20816.56643961522, + 20760.328286923155, + 20704.212033359123, + 20649.065424258304, + 20595.740783734233, + 20545.09501467883, + 20497.989598762364, + 20455.290596433424, + 20417.868646919036, + 20386.598968224494, + 20362.36135713352, + 20346.04018920818, + 20338.524418788867, + 20340.707578994374, + 20353.48778172184, + 20377.767717646762, + 20414.454656222973, + 20464.460445682682, + 20528.70151303647, + 20608.098864073298, + 20703.578083360382, + 21066.080010525777, + 21128.159449527, + 21176.98398905215, + 21213.356339196576, + 21238.083788833974, + 21251.97820561641, + 21255.8560359743, + 21250.538305116388, + 21236.850617029857, + 21215.623154480174, + 21187.690679011204, + 21153.89253094515, + 21115.072629382586, + 21072.079472202455, + 21025.766136062026, + 20976.99027639697, + 20926.614127421268, + 20875.504502127304, + 20824.532792285798, + 20774.574968445835, + 20726.51157993486, + 20681.22775485867, + 20639.613200101445, + 20602.562201325676, + 20570.97362297226, + 20545.75090826042, + 20527.80207918776, + 20518.039736530252, + 20517.381059842188, + 20526.747807456246, + 20547.066316483473, + 20579.267502813265, + 20624.28686111335, + 20683.064464829837, + 20756.5449661872, + 20845.67759618829, + 20951.416164614246, + 21222.61142563007, + 21296.74715251591, + 21356.95822692077, + 21404.098164325023, + 21439.025058987365, + 21462.601583944914, + 21475.69499101304, + 21479.17711078559, + 21473.924352634684, + 21460.817704710837, + 21440.74273394294, + 21414.589586038208, + 21383.252985482217, + 21347.63223553894, + 21308.63121825067, + 21267.158394438058, + 21224.126803700146, + 21180.454064414298, + 21137.06237373629, + 21094.878507600195, + 21054.833820718457, + 21017.864246581936, + 20984.91029745979, + 20956.91706439955, + 20934.83421722711, + 20919.61600454673, + 20912.221253741023, + 20913.613370970976, + 20924.760341175876, + 20946.634728073463, + 20980.21367415977, + 21026.478900709197, + 21086.41670777452, + 21161.017974186838, + 21251.278157555673, + 21358.197294268866, + 21482.77999949258, + 21354.108832490776, + 21403.35513295372, + 21439.920297631885, + 21464.571575705377, + 21478.080795132693, + 21481.224362650686, + 21474.783263774516, + 21459.5430627978, + 21436.293902792408, + 21405.83050560865, + 21368.952171875135, + 21326.462780998892, + 21279.170791165245, + 21227.88923933793, + 21173.435741259, + 21116.632491448898, + 21058.30626320642, + 20999.28840860871, + 20940.414858511278, + 20882.526122547988, + 20826.46728913106, + 20773.088025451092, + 20723.242577477038, + 20677.789769956176, + 20637.593006414187, + 20603.520269155073, + 20576.44411926122, + 20557.24169659339, + 20546.794719790654, + 20545.989486270504, + 20555.71687222871, + 20576.872332639483, + 20610.355901255338, + 20657.072190607167, + 20717.93039200424, + 20793.844275534157, + 20885.732190062863, + 21354.522578910895, + 21412.023950116523, + 21456.433860992176, + 21488.54720603541, + 21509.163458522195, + 21519.08667050684, + 21519.125472822012, + 21510.093075078737, + 21492.80726566642, + 21468.09041175279, + 21436.769459283965, + 21399.675932984403, + 21357.645936356934, + 21311.52015168274, + 21262.14384002135, + 21210.366841210693, + 21157.04357386701, + 21103.033035384913, + 21049.1988019374, + 20996.409028475788, + 20945.536448729796, + 20897.458375207454, + 20853.0566991952, + 20813.217890757787, + 20778.832998738355, + 20750.79765075839, + 20730.012053217753, + 20717.380991294645, + 20713.813828945622, + 20720.224508905645, + 20737.531552687964, + 20766.658060584235, + 20808.53171166447, + 20864.08476377701, + 20934.254053548615, + 21019.98099638432, + 21122.211586467587, + 21498.954733558316, + 21567.664654825785, + 21622.659676055933, + 21664.784453317785, + 21694.888221458743, + 21713.824794104585, + 21722.45256365938, + 21721.634501305653, + 21712.238157004194, + 21695.135659494223, + 21671.20371629328, + 21641.32361369729, + 21606.381216780504, + 21567.266969395558, + 21524.875894173434, + 21480.107592523484, + 21433.86624463341, + 21387.06060946928, + 21340.604024775523, + 21295.414407074903, + 21252.414251668568, + 21212.530632636015, + 21176.695202835126, + 21145.84419390209, + 21120.918416251494, + 21102.863259076268, + 21092.62869034772, + 21091.169256815498, + 21099.4440840076, + 21118.416876230433, + 21149.055916568683, + 21192.334066885476, + 21249.22876782224, + 21320.72203879878, + 21407.80047801329, + 21511.455262442258, + 21632.682147840584, + 21486.643791427112, + 21534.06767879889, + 21568.87231257533, + 21591.82172494373, + 21603.684526869776, + 21605.23390809751, + 21597.247637149292, + 21580.508061325916, + 21555.802106706484, + 21523.92127814845, + 21485.661659287674, + 21441.82391253832, + 21393.213279092957, + 21340.639578922477, + 21284.917210776144, + 21226.865152181606, + 21167.306959444817, + 21107.070767650148, + 21046.989290660287, + 20987.899821116294, + 20930.6442304376, + 20876.068968821965, + 20825.025065245565, + 20778.368127462847, + 20736.958342006707, + 20701.660474188335, + 20673.343868097305, + 20652.882446601587, + 20641.154711347426, + 20639.04374275951, + 20647.43720004082, + 20667.22732117274, + 20699.310922915003, + 20744.589400805664, + 20803.96872916122, + 20878.35946107644, + 20968.67672842447, + 21484.07723267943, + 21539.55423910738, + 21582.012898166297, + 21612.244629538993, + 21631.045431686664, + 21639.215881848868, + 21637.561136043507, + 21626.89092906686, + 21608.019574493574, + 21581.7659646766, + 21548.95357074732, + 21510.410442615423, + 21466.96920896898, + 21419.467077274418, + 21368.74583377651, + 21315.651843498432, + 21261.03605024164, + 21205.753976586013, + 21150.665723889782, + 21096.635972289514, + 21044.533980700144, + 20995.233586814975, + 20949.61320710568, + 20908.555836822237, + 20872.94904999305, + 20843.684999424815, + 20821.660416702667, + 20807.77661219003, + 20802.939475028717, + 20808.059473138906, + 20824.05165321911, + 20851.83564074624, + 20892.335639975503, + 20946.480433940516, + 21015.203384453274, + 21099.442432104057, + 21200.14009626156, + 21623.143423899684, + 21689.45430774892, + 21742.143968763703, + 21782.053124118775, + 21810.027069767275, + 21826.915680440696, + 21833.573409648852, + 21830.859289679986, + 21819.636931600628, + 21800.7745252557, + 21775.1448392685, + 21743.62522104066, + 21707.097596752148, + 21666.448471361364, + 21622.568928604993, + 21576.35463099812, + 21528.70581983418, + 21480.527315184958, + 21432.728515900613, + 21386.223399609647, + 21341.930522718914, + 21300.773020413668, + 21263.678606657508, + 21231.57957419232, + 21205.412794538468, + 21186.11971799459, + 21174.6463736377, + 21171.94336932321, + 21178.965891684828, + 21196.673706134672, + 21226.03115686319, + 21268.00716683922, + 21323.575237809906, + 21393.713450300795, + 21479.404463615803, + 21581.63551583716, + 21701.39842382546, + 21653.33811176339, + 21698.494032586343, + 21731.108391999547, + 21751.941203481783, + 21761.75705929023, + 21761.32513046042, + 21751.419166806205, + 21732.817496919863, + 21706.303028171973, + 21672.66324671149, + 21632.69021746575, + 21587.180584140435, + 21536.935569219557, + 21482.760973965527, + 21425.46717841908, + 21365.869141399344, + 21304.78640050381, + 21243.043072108278, + 21181.467851366957, + 21120.894012212386, + 21062.159407355466, + 21006.106468285474, + 20953.582205270064, + 20905.438207355164, + 20862.53064236517, + 20825.72025690274, + 20795.872376348958, + 20773.856904863253, + 20760.54832538339, + 20756.825699625508, + 20763.57266808413, + 20781.677450032093, + 20812.0328435206, + 20855.536225379223, + 20913.089551215922, + 20985.599355416998, + 21073.97675114705, + 21647.0575040686, + 21700.014828565505, + 21740.04552667255, + 21767.93667728957, + 21784.47993809476, + 21790.471545544722, + 21786.71231487434, + 21774.007640096905, + 21753.167494004076, + 21725.00642816583, + 21690.34357293055, + 21650.00263742493, + 21604.811909554064, + 21555.604256001385, + 21503.21712222867, + 21448.492532476113, + 21392.277089762185, + 21335.421975883786, + 21278.782951416135, + 21223.220355712816, + 21169.599106905793, + 21118.788701905356, + 21071.663216400197, + 21029.101304857315, + 20991.986200522115, + 20961.205715418317, + 20937.652240348038, + 20922.22274489176, + 20915.818777408265, + 20919.34646503475, + 20933.716513686762, + 20959.844208058214, + 20998.649411621303, + 21051.05656662668, + 21117.994694103327, + 21200.397393858584, + 21299.20284447812, + 21779.433938731505, + 21842.758940111573, + 21892.580105704415, + 21929.733232167775, + 21955.058694937707, + 21969.401448228677, + 21973.611025033442, + 21968.541537123205, + 21955.051675047438, + 21934.004708134027, + 21906.26848448923, + 21872.715430997603, + 21834.222553322117, + 21791.671435904085, + 21745.94824196316, + 21697.94371349737, + 21648.553171283118, + 21598.67651487514, + 21549.218222606538, + 21501.08735158878, + 21455.19753771168, + 21412.46699564342, + 21373.818518830565, + 21340.179479497972, + 21312.481828648935, + 21291.66209606505, + 21278.661390306297, + 21274.425398711028, + 21279.904387395905, + 21296.053201256007, + 21323.83126396475, + 21364.202577973898, + 21418.13572451355, + 21486.60386359223, + 21570.58473399678, + 21671.060653292418, + 21789.01851782267, + 21956.642444629826, + 21997.73810433522, + 22026.433174787562, + 22043.480433764325, + 22049.637237821364, + 22045.665522292897, + 22032.331801291464, + 22010.40716770798, + 21980.66729321177, + 21943.892428250434, + 21900.867402049997, + 21852.3816226148, + 21799.229076727566, + 21742.20832994938, + 21682.122526619667, + 21619.779389856245, + 21555.99122155522, + 21491.57490239116, + 21427.351891816903, + 21364.148228063674, + 21302.794528141087, + 21244.125987837073, + 21188.982381717968, + 21138.208063128386, + 21092.651964191395, + 21053.16759580836, + 21020.613047659022, + 20995.850988201506, + 20979.748664672257, + 20973.1779030861, + 20977.0151082362, + 20992.141263694117, + 21019.441931809724, + 21059.80725371129, + 21114.13194930544, + 21183.31531727713, + 21268.261235089696, + 21943.702820236787, + 21992.1481206026, + 22027.833023312745, + 22051.53679166931, + 22064.043267752742, + 22066.14087242189, + 22058.622605313893, + 22042.286044844303, + 22017.933348207018, + 21986.371251374276, + 21948.411069096725, + 21904.868694903293, + 21856.564601101334, + 21804.323838776527, + 21748.976037792934, + 21691.35540679294, + 21632.30073319732, + 21572.655383205212, + 21513.267301794087, + 21454.989012719787, + 21398.67761851652, + 21345.19480049683, + 21295.40681875167, + 21250.18451215029, + 21210.40329834033, + 21176.943173747797, + 21150.688713577038, + 21132.529071810775, + 21123.357981210076, + 21124.073753314384, + 21135.579278441477, + 21158.782025687495, + 21194.594042926976, + 21243.931956812765, + 21307.716972776103, + 21386.874875026562, + 21482.3360265521, + 22064.077412667164, + 22122.05592520639, + 22166.742978014994, + 22198.96550833936, + 22219.555032204244, + 22229.34764441279, + 22229.18401854643, + 22219.90940696505, + 22202.37364080681, + 22177.431129988287, + 22145.940863204396, + 22108.76640792839, + 22066.77591041192, + 22020.842095684973, + 21971.842267555894, + 21920.65830861139, + 21868.176680216526, + 21815.288422514757, + 21762.889154427834, + 21711.879073655917, + 21663.162956677497, + 21617.650158749446, + 21576.25461390701, + 21539.894834963725, + 21509.49391351156, + 21485.979519920802, + 21470.28390334011, + 21463.34389169652, + 21466.100891695365, + 21479.50088882041, + 21504.494447333745, + 21542.036710275836, + 21593.08739946546, + 21658.610815499807, + 21739.575837754397, + 21836.955924383135, + 21951.72911231825, + 22264.032512214264, + 22301.096284245974, + 22325.901836963003, + 22339.194712441527, + 22341.725031536047, + 22334.247493879513, + 22317.521377883095, + 22292.310540736442, + 22259.38341840751, + 22219.513025642613, + 22173.476955966456, + 22122.057381682036, + 22066.0410538708, + 22006.219302392466, + 21943.38803588518, + 21878.34774176539, + 21811.903486227962, + 21744.86491424608, + 21678.04624957128, + 21612.2662947335, + 21548.348431040988, + 21487.120618580386, + 21429.415396216697, + 21376.069881593223, + 21327.92577113173, + 21285.829340032218, + 21250.631442273167, + 21223.18751061134, + 21204.357556581876, + 21195.00617049829, + 21196.00252145242, + 21208.220357314523, + 21232.538004733127, + 21269.838369135206, + 21321.008934726047, + 21386.94176448931, + 21468.53350018697, + 22244.47495147277, + 22288.43825177592, + 22319.808777951665, + 22339.357977704316, + 22347.861877516607, + 22346.101082649617, + 22334.860777142727, + 22314.930723813755, + 22287.105264258887, + 22252.18331885258, + 22210.968386747707, + 22164.268545875497, + 22112.89645294553, + 22057.669343445767, + 21999.409031642463, + 21938.94191058033, + 21877.098952082368, + 21814.715706749925, + 21752.632303962797, + 21691.69345187901, + 21632.748437435086, + 21576.65112634578, + 21524.259963104312, + 21476.437970982184, + 21434.05275202929, + 21397.976487073887, + 21369.085935722575, + 21348.262436360346, + 21336.39190615048, + 21334.36484103471, + 21343.076315733048, + 21363.425983743906, + 21396.318077344073, + 21442.661407588603, + 21503.36936431105, + 21579.359916123205, + 21671.555610415297, + 22352.911916702313, + 22405.57991676291, + 22445.170144955893, + 22472.50067911639, + 22488.394175857797, + 22493.677870571966, + 22489.183577428998, + 22475.747689377466, + 22454.211178144218, + 22425.419594234485, + 22390.223066931896, + 22349.47630429836, + 22304.03859317423, + 22254.77379917815, + 22202.550366707164, + 22148.24131893667, + 22092.7242578204, + 22036.881364090477, + 21981.59939725736, + 21927.76969560988, + 21876.2881762152, + 21828.05533491891, + 21783.976246344886, + 21744.96056389536, + 21711.92251975102, + 21685.78092487077, + 21667.45916899201, + 21657.88522063041, + 21657.99162708004, + 21668.7155144133, + 21690.998587480964, + 21725.787129912194, + 21774.03200411444, + 21836.68865127359, + 21914.717091353843, + 22009.08192309777, + 22120.752324026253, + 22575.517385460298, + 22608.575898183626, + 22629.519959312336, + 22639.087875221277, + 22638.022531063656, + 22627.071390771063, + 22606.98649705339, + 22578.52447139893, + 22542.446514074356, + 22499.51840412464, + 22450.510499373162, + 22396.197736421636, + 22337.35963065015, + 22274.780276217138, + 22209.24834605939, + 22141.557091892082, + 22072.50434420873, + 22002.892512281185, + 21933.5285841597, + 21865.22412667287, + 21798.79528542764, + 21735.062784809325, + 21674.851927981606, + 21618.992596886488, + 21568.319252244393, + 21523.67093355401, + 21485.891259092503, + 21455.828425915326, + 21434.33520985628, + 21422.268965527564, + 21420.49162631972, + 21429.869704401648, + 21451.274290720612, + 21485.581055002207, + 21533.670245750436, + 21596.426690247645, + 21674.739794554487, + 22549.388711653293, + 22588.898037453007, + 22615.983607447608, + 22631.409053743697, + 22635.942587226225, + 22630.35699755854, + 22615.429653182302, + 22591.942501317568, + 22560.682067962716, + 22522.439457894525, + 22478.01035466811, + 22428.195020616942, + 22373.798296852856, + 22315.629603266054, + 22254.502938525082, + 22191.23688007685, + 22126.65458414665, + 22061.583785738076, + 21996.856798633158, + 21933.310515392222, + 21871.786407353968, + 21813.13052463547, + 21758.19349613219, + 21707.83052951785, + 21662.90141124463, + 21624.270506543016, + 21592.806759421877, + 21569.38369266845, + 21554.87940784827, + 21550.17658530531, + 21556.162484161872, + 21573.72894231861, + 21603.77237645451, + 21647.193782026956, + 21704.898733271708, + 21777.797383202836, + 21866.80446361278, + 22645.962601993364, + 22693.35361125308, + 22727.88184831472, + 22750.35653160205, + 22761.591458317183, + 22762.40500444063, + 22753.620124731176, + 22736.064352726087, + 22710.56980074087, + 22677.973159869463, + 22639.115699984155, + 22594.843269735567, + 22546.006296552685, + 22493.45978664289, + 22438.06332499187, + 22380.681075363693, + 22322.181780300816, + 22263.438761124005, + 22205.329917932442, + 22148.737729603596, + 22094.54925379333, + 22043.656126935894, + 21996.954564243893, + 21955.345359708215, + 21919.733886098205, + 21891.030094961487, + 21870.14851662412, + 21858.008260190465, + 21855.533013543256, + 21863.651043343616, + 21883.295195030958, + 21915.402892823135, + 21960.91613971629, + 22020.781517484975, + 22095.950186682094, + 22187.377886638867, + 22296.024935464917, + 22891.10452513093, + 22920.18266183264, + 22937.291512441476, + 22943.162147630956, + 22938.53021685298, + 22924.135948337815, + 22900.724149094018, + 22869.044204908605, + 22829.850080346878, + 22783.900318752527, + 22731.958042247614, + 22674.79095173251, + 22613.171326886004, + 22547.8760261652, + 22479.68648680559, + 22409.388724820994, + 22337.77333500364, + 22265.63549092407, + 22193.774944931185, + 22122.99602815228, + 22054.107650492977, + 21987.923300637274, + 21925.261046047544, + 21866.94353296446, + 21813.79798640711, + 21766.656210172907, + 21726.354586837664, + 21693.73407775552, + 21669.64022305896, + 21654.923141658877, + 21650.43753124447, + 21657.04266828336, + 21675.60240802146, + 21706.985184483045, + 21752.064010470804, + 21811.716477565777, + 21886.82475612729, + 22858.457304474527, + 22893.538682820814, + 22916.366718478348, + 22927.69722795599, + 22928.29060654096, + 22918.91182829885, + 22900.330446073553, + 22873.320591487376, + 22838.660974941005, + 22797.134885613425, + 22749.530191462014, + 22696.639339222493, + 22639.259354408958, + 22578.191841313852, + 22514.242983007978, + 22448.22354134052, + 22380.948856938987, + 22313.238849209258, + 22245.918016335574, + 22179.81543528056, + 22115.76476178515, + 22054.604230368677, + 21997.17665432884, + 21944.32942574163, + 21896.914515461467, + 21855.788473121098, + 21821.812427131645, + 21795.852084682585, + 21778.77773174174, + 21771.464233055303, + 21774.791032147827, + 21789.642151322238, + 21816.906191659775, + 21857.47633302005, + 21912.25033404109, + 21982.13053213924, + 22068.02384350917, + 22943.25300951618, + 22985.398094968416, + 23014.896719698565, + 23032.54924271907, + 23039.160601820717, + 23035.540313572707, + 23022.502473322507, + 23000.86575519605, + 22971.453412097537, + 22935.093275709583, + 22892.617756493168, + 22844.86384368758, + 22792.673105310503, + 22736.891688157986, + 22678.37031780439, + 22617.964298602496, + 22556.5335136834, + 22494.942424956593, + 22434.060073109904, + 22374.760077609495, + 22317.92063669992, + 22264.424527404102, + 22215.159105523322, + 22171.016305637157, + 22132.892641103637, + 22101.68920405907, + 22078.311665418165, + 22063.67027487401, + 22058.67986089798, + 22064.259830739895, + 22081.334170427865, + 22110.83144476842, + 22153.684797346377, + 22210.83195052495, + 22283.215205445737, + 22371.781442028678, + 22477.482118972017, + 23210.799781808604, + 23235.92068069691, + 23249.21885677574, + 23251.418145017335, + 23243.246959172226, + 23225.438291769406, + 23198.729714116103, + 23163.86337629798, + 23121.58600717907, + 23072.648914401714, + 23017.80798438667, + 22957.82368233298, + 22893.46105221812, + 22825.48971679787, + 22754.683877606403, + 22681.822314956247, + 22607.68838793827, + 22533.07003442171, + 22458.759771054174, + 22385.554693261594, + 22314.256475248316, + 22245.671369997002, + 22180.610209268696, + 22119.88840360277, + 22064.32594231698, + 22014.747393507445, + 21971.981904048618, + 21936.863199593343, + 21910.229584572808, + 21892.923942196547, + 21885.79373445248, + 21889.691002106858, + 21905.4723647043, + 21933.999020567786, + 21976.136746798693, + 22032.75589927668, + 22104.7314126598, + 23171.692323452062, + 23202.3697828857, + 23220.96570754103, + 23228.228098329157, + 23224.909534939536, + 23211.76717584002, + 23189.56275827676, + 23159.062598274348, + 23121.037590635657, + 23076.26320894195, + 23025.519505552882, + 22969.5911116064, + 22909.267237018877, + 22845.341670484984, + 22778.612779477804, + 22709.883510248732, + 22639.961387827574, + 22569.658516022446, + 22499.79157741983, + 22431.181833384628, + 22364.65512405999, + 22301.041868367534, + 22241.177064007203, + 22185.90028745723, + 22136.05569397431, + 22092.492017593424, + 22056.062571127954, + 22027.62524616964, + 22008.04251308853, + 21998.181421033103, + 21998.91359793015, + 22011.115250484814, + 22035.66716418064, + 22073.454703279476, + 22125.36781082162, + 22192.301008625618, + 22275.15339728842, + 23244.80507006598, + 23281.73284401975, + 23306.23178053388, + 23319.09337920949, + 23321.113718426066, + 23313.09345534146, + 23295.837825891853, + 23270.156644791838, + 23236.864305534313, + 23196.779780390552, + 23150.726620410234, + 23099.532955421324, + 23044.03149403019, + 22985.05952362155, + 22923.458910358477, + 22860.076099182388, + 22795.762113813103, + 22731.372556748775, + 22667.767609265906, + 22605.812031419347, + 22546.375162042357, + 22490.330918746506, + 22438.55779792176, + 22391.938874736406, + 22351.361803137115, + 22317.718815848904, + 22291.90672437517, + 22274.826918997656, + 22267.385368776442, + 22270.49262155, + 22285.063803935158, + 22312.018621327104, + 22352.281357899337, + 22406.780876603767, + 22476.450619170664, + 22562.228606108638, + 22665.057436704632, + 23534.607395895215, + 23555.792450099747, + 23565.30274255993, + 23563.854872546613, + 23552.170018109082, + 23530.97393607496, + 23500.996962050176, + 23462.974010419086, + 23417.64457434438, + 23365.752725767106, + 23308.047115406658, + 23245.280972760826, + 23178.212106105715, + 23107.602902495822, + 23034.220327763975, + 22958.835926521377, + 22882.22582215761, + 22805.170716840563, + 22728.45589151655, + 22652.87120591018, + 22579.211098524458, + 22508.274586640735, + 22440.865266318746, + 22377.79131239655, + 22319.86547849057, + 22267.905096995622, + 22222.732079084806, + 22185.17291470971, + 22156.05867260014, + 22136.225000264352, + 22126.5121239889, + 22127.764848838782, + 22140.83255865728, + 22166.56921606602, + 22205.83336246508, + 22259.48811803279, + 22328.401181725934, + 23489.103751920942, + 23515.39932247353, + 23529.78656095229, + 23533.005652670592, + 23525.801361720143, + 23508.92303097105, + 23483.124582071738, + 23449.164515448996, + 23407.805910308, + 23359.81642463224, + 23305.968295183648, + 23247.0383375024, + 23183.807945907127, + 23117.06309349475, + 23047.594332140623, + 22976.1967924984, + 22903.670184000075, + 22830.818794856088, + 22758.451492055156, + 22687.381721364418, + 22618.427507329296, + 22552.411453273646, + 22490.160741299667, + 22432.507132287847, + 22380.286965897136, + 22334.341160564763, + 22295.51521350638, + 22264.659200715934, + 22242.627776965794, + 22230.280175806616, + 22228.480209567515, + 22238.09626935585, + 22260.001325057405, + 22295.072925336335, + 22344.193197635097, + 22408.2488481746, + 22488.131161953977, + 23550.639104257523, + 23582.37572433743, + 23601.90244206662, + 23610.001897634873, + 23607.46131001039, + 23595.072476939677, + 23573.631774947607, + 23543.94015933745, + 23506.803164190773, + 23463.03090236758, + 23413.43806550616, + 23358.843924023222, + 23300.072327113772, + 23237.95170275124, + 23173.31505768737, + 23106.999977452262, + 23039.8486263544, + 22972.70774748062, + 22906.428662696144, + 22841.86727264447, + 22779.884056747538, + 22721.34407320559, + 22667.116958997325, + 22618.076929879666, + 22575.10278038797, + 22539.077883835947, + 22510.89019231566, + 22491.43223669757, + 22481.60112663038, + 22482.29855054132, + 22494.430775635807, + 22518.90864789777, + 22556.647592089394, + 22608.56761175124, + 22675.593289202297, + 22758.653785539787, + 22858.682840639434, + 23862.52999761204, + 23879.79885518391, + 23885.54230985819, + 23880.46972520444, + 23865.295043570593, + 23840.73678608298, + 23807.518052646217, + 23766.36652194332, + 23718.01445143566, + 23663.19867736298, + 23602.660614743352, + 23537.146257373242, + 23467.406177827448, + 23394.195527459124, + 23318.274036399805, + 23240.406013559368, + 23161.360346626076, + 23081.9105020665, + 23002.834525125625, + 22924.91503982676, + 22848.939248971565, + 22775.698934140117, + 22705.990455690797, + 22640.614752760328, + 22580.37734326386, + 22526.08832389486, + 22478.562370125146, + 22438.618736204917, + 22407.081255162728, + 22384.778338805478, + 22372.542977718458, + 22371.21274126528, + 22381.62977758793, + 22404.640813606722, + 22441.097155020394, + 22491.854686306026, + 22557.77387071899, + 23810.699963035604, + 23832.63367622951, + 23842.833654848142, + 23842.032268607116, + 23830.966466000402, + 23810.377774300356, + 23781.012299557635, + 23743.620726601293, + 23698.958319038793, + 23647.78491925585, + 23590.86494841663, + 23528.967406463587, + 23462.865872117596, + 23393.338502877854, + 23321.168035021918, + 23247.14178360573, + 23172.05164246355, + 23096.694084208048, + 23021.8701602302, + 22948.385500699373, + 22877.050314563283, + 22808.679389548008, + 22744.092092158022, + 22684.112367676058, + 22629.56874016331, + 22581.29431245928, + 22540.12676618183, + 22506.908361727226, + 22482.485938270034, + 22467.710913763185, + 22463.43928493802, + 22470.531627304215, + 22489.853095149767, + 22522.273421541046, + 22568.66691832283, + 22629.91247611824, + 22706.89356432868, + 23860.7738225249, + 23887.342991671172, + 23901.92250536211, + 23905.286144376176, + 23898.212268270232, + 23881.4838153795, + 23855.888302817522, + 23822.217826476237, + 23781.269061025923, + 23733.843259915222, + 23680.74625537115, + 23622.788458399064, + 23560.78485878267, + 23495.555025084064, + 23427.923104643673, + 23358.717823580297, + 23288.77248679109, + 23218.92497795158, + 23150.017759515635, + 23082.897872715483, + 23018.416937561695, + 22957.43115284326, + 22900.801296127487, + 22849.39272376002, + 22804.075370864888, + 22765.723751344496, + 22735.216957879573, + 22713.43866192924, + 22701.27711373095, + 22699.625142300516, + 22709.380155432133, + 22731.444139698375, + 22766.723660450083, + 22816.129861816527, + 22880.57846670534, + 22960.98977680251, + 23058.28867257234, + 24194.568606999812, + 24207.93917091156, + 24209.935088554164, + 24201.25848779586, + 24182.61607528329, + 24154.719136441443, + 24118.28353547361, + 24074.029715361514, + 24022.6826978652, + 23964.97208352307, + 23901.632051651904, + 23833.401360346845, + 23761.02334648134, + 23685.245925707288, + 23606.821592454853, + 23526.507419932608, + 23445.065060127505, + 23363.26074380479, + 23281.865280508126, + 23201.654058559507, + 23123.40704505928, + 23047.908785886186, + 22975.948405697305, + 22908.319607928046, + 22845.82067479224, + 22789.254467282, + 22739.428425167862, + 22697.15456699871, + 22663.249490101756, + 22638.5343705826, + 22623.834963325193, + 22619.98160199182, + 22627.809199023184, + 22648.157245638286, + 22681.86981183453, + 22729.79554638764, + 22792.787676851713, + 24136.48771976993, + 24154.077608618314, + 24160.10975518404, + 24155.308713584967, + 24140.403616717325, + 24116.128176255712, + 24083.220682653056, + 24042.424005140663, + 23994.48559172823, + 23940.157469203736, + 23880.196243133596, + 23815.36309786253, + 23746.42379651365, + 23674.1486809884, + 23599.31267196662, + 23522.695268906482, + 23445.0805500445, + 23367.257172395588, + 23290.018371753013, + 23214.161962688344, + 23140.49033855159, + 23069.810471471075, + 23002.933912353496, + 22940.676790883877, + 22883.859815525648, + 22833.308273520546, + 22789.85203088873, + 22754.325532428673, + 22727.567801717207, + 22710.422441109553, + 22703.73763173926, + 22708.366133518248, + 22725.1652851368, + 22754.997004063538, + 22798.727786545514, + 22857.228707608003, + 22931.37542105478, + 24175.226325121686, + 24196.649291590144, + 24206.30416130511, + 24204.95585563374, + 24193.373874721576, + 24172.332297492525, + 24142.609781648793, + 24104.989563671006, + 24060.259458818146, + 24009.211861127515, + 23952.643743414814, + 23891.35665727408, + 23826.156733077703, + 23757.85467997645, + 23687.265785899443, + 23615.209917554173, + 23542.511520426462, + 23469.99961878052, + 23398.507815658886, + 23328.87429288248, + 23261.941811050565, + 23198.557709540793, + 23139.57390650916, + 23085.846898889988, + 23038.237762396013, + 22997.61215151828, + 22964.84029952623, + 22940.797018467656, + 22926.36169916868, + 22922.41831123383, + 22929.855403045953, + 22949.566101766286, + 22982.448113334387, + 23029.403722468203, + 23091.339792664076, + 23169.1677661966, + 23263.803664118812, + 24530.722633918693, + 24540.211062064296, + 24538.47699835088, + 24526.215334945373, + 24504.125542793092, + 24472.911671617712, + 24433.28234992119, + 24385.95078498394, + 24331.634762864698, + 24271.05664840054, + 24204.94338520693, + 24134.026495677674, + 24059.04208098494, + 23980.730821079258, + 23899.837974689504, + 23817.113379322942, + 23733.311451265166, + 23649.19118558016, + 23565.516156110214, + 23483.054515476033, + 23402.578995076656, + 23324.86690508946, + 23250.700134470262, + 23180.865150953105, + 23116.15300105053, + 23057.35931005331, + 23005.284282030712, + 22960.73269983023, + 22924.51392507781, + 22897.441898177705, + 22880.33513831255, + 22874.01674344336, + 22879.314390309453, + 22897.06033442854, + 22928.091410096695, + 22973.24903038835, + 23033.37918715626, + 24466.47217491723, + 24479.73427392405, + 24481.61601773487, + 24472.83414486982, + 24454.109972627375, + 24426.169397084403, + 24389.742893096067, + 24345.56551429593, + 24294.37689309593, + 24236.921240686315, + 24173.947347035748, + 24106.208580891205, + 24034.46288977806, + 23959.472799999992, + 23882.00541663908, + 23802.832423555792, + 23722.73008338886, + 23642.479237555453, + 23562.865306251115, + 23484.67828844966, + 23408.71276190333, + 23335.767883142726, + 23266.64738747677, + 23202.159588992767, + 23143.11738055637, + 23090.3382338116, + 23044.644199180868, + 23006.861905864873, + 22977.82256184272, + 22958.361953871867, + 22949.320447488135, + 22951.54298700571, + 22965.879095517077, + 22993.18287489317, + 23034.31300578321, + 23090.13274761484, + 23161.509938593987, + 24494.012102120858, + 24510.307659482925, + 24515.057990599817, + 24509.01915742739, + 24492.951800699833, + 24467.62113992976, + 24433.796973408047, + 24392.253678204022, + 24343.7702101653, + 24289.130103917916, + 24229.121472866223, + 24164.537009192944, + 24096.173983859153, + 24024.83424660432, + 23951.32422594623, + 23876.45492918102, + 23801.041942383246, + 23725.905430405764, + 23651.870136879832, + 23579.76538421503, + 23510.425073599283, + 23444.687684998957, + 23383.39627715871, + 23327.398487601564, + 23277.546532628912, + 23234.697207320474, + 23199.711885534423, + 23173.456519907188, + 23156.80164185359, + 23150.622361566824, + 23155.798368018422, + 23173.213928958332, + 23203.757890914763, + 23248.32367919435, + 23307.809297882093, + 23383.117329841316, + 23475.15493671371, + 24870.98987804828, + 24876.61058324315, + 24871.162348770835, + 24855.332831096915, + 24829.814265465386, + 24795.303465898596, + 24752.50182519721, + 24702.11531494032, + 24644.85448548531, + 24581.434465967977, + 24512.574964302446, + 24439.000267181218, + 24361.439240075124, + 24280.625327233392, + 24197.296551683587, + 24112.19551523162, + 24026.069398461797, + 23939.669960736737, + 23853.753540197496, + 23769.081053763402, + 23686.41799713216, + 23606.53444477987, + 23530.205049961012, + 23458.209044708343, + 23391.330239833012, + 23330.357024924546, + 23276.082368350828, + 23229.30381725811, + 23190.823497570953, + 23161.448113992337, + 23141.988950003542, + 23133.26186786429, + 23136.087308612583, + 23151.290292064758, + 23179.700416815675, + 23222.15186023834, + 23279.483378484263, + 24800.656871090247, + 24809.60521625024, + 24807.351988094957, + 24794.606109546803, + 24772.081082306482, + 24740.494986853115, + 24700.570482444138, + 24653.034807115357, + 24598.619777680946, + 24538.061789733434, + 24472.10181764374, + 24401.485414561048, + 24326.96271241303, + 24249.288421905585, + 24169.221832523093, + 24087.52681252823, + 24004.97180896199, + 23922.329847643814, + 23840.378533171453, + 23759.900048921034, + 23681.68115704701, + 23606.513198482244, + 23535.192092937934, + 23468.518338903596, + 23407.29701364719, + 23352.33777321492, + 23304.454852431514, + 23264.46706489988, + 23233.19780300142, + 23211.475037895798, + 23200.131319521133, + 23200.003776593803, + 23211.9341166086, + 23236.76862583869, + 23275.358169335548, + 23328.558190929096, + 23397.228713227454, + 24817.14503341484, + 24828.329520557556, + 24828.192963769903, + 24817.48256559638, + 24796.950107359888, + 24767.351949161697, + 24729.44902988137, + 24684.00686717694, + 24631.795557484675, + 24573.589776019326, + 24510.16877677387, + 24442.316392519777, + 24370.82103480676, + 24296.475693962984, + 24220.0779390949, + 24142.429918087368, + 24064.33835760357, + 23986.614563085077, + 23910.07441875183, + 23835.53838760207, + 23763.831511412434, + 23695.78341073793, + 23632.228284911933, + 23574.004912046126, + 23521.956649030573, + 23476.931431533747, + 23439.781774002382, + 23411.364769661694, + 23392.54209051511, + 23384.179987344585, + 23387.14928971025, + 23402.325405950793, + 23430.588323183096, + 23472.82260730243, + 23529.91740298255, + 23602.766433675377, + 23692.268001611363, + 25215.366528887527, + 25217.132178868567, + 25207.983839155888, + 25188.60193051378, + 25159.671452484905, + 25121.881983390314, + 25075.927680329343, + 25022.507279179725, + 24962.324094597596, + 24896.08602001739, + 24824.505527651916, + 24748.299668492367, + 24668.190072308244, + 24584.90294764748, + 24499.169081836284, + 24411.723840979295, + 24323.30716995947, + 24234.663592438115, + 24146.542210854965, + 24059.69670642801, + 23974.885339153698, + 23892.87094780676, + 23814.420949940362, + 23740.30734188593, + 23671.30669875334, + 23608.200174430774, + 23551.773501584783, + 23502.816991660315, + 23462.12553488062, + 23430.49860024733, + 23408.740235540463, + 23397.659067318375, + 23398.068300917734, + 23410.78572045363, + 23436.633688819507, + 23476.439147687157, + 23531.0336175067, + 25139.04374072113, + 25143.690369519805, + 25137.31560167802, + 25120.620544520385, + 25094.310884149905, + 25059.096885447918, + 25015.693392074114, + 24964.819826466577, + 24907.20018984173, + 24843.56306219433, + 24774.641602297546, + 24701.173547702867, + 24623.901214740144, + 24543.57149851761, + 24460.935872921826, + 24376.750390617734, + 24291.775683048632, + 24206.77696043617, + 24122.524011780355, + 24039.791204859575, + 23959.357486230532, + 23882.006381228344, + 23808.525993966447, + 23739.709007336645, + 23676.352683009114, + 23619.25886143236, + 23569.23396183328, + 23527.088982217127, + 23493.639499367484, + 23469.705668846316, + 23456.112224993947, + 23453.688480929086, + 23463.268328548715, + 23485.69023852825, + 23521.79726032145, + 23572.43702216045, + 23638.4617310557, + 25144.637388715422, + 25150.72468984145, + 25145.716441158347, + 25130.350985799312, + 25105.37124567592, + 25071.52472147813, + 25029.563492674202, + 24980.244217510808, + 24924.32813301294, + 24862.581054983973, + 24795.77337800564, + 24724.680075438042, + 24650.080699419592, + 24572.759380867134, + 24493.504829475794, + 24413.1103337191, + 24332.373760848946, + 24252.097556895587, + 24173.088746667603, + 24096.158933751958, + 24022.124300513955, + 23951.805608097282, + 23886.02819642398, + 23825.62198419444, + 23771.421468887416, + 23724.26572676002, + 23684.998412847704, + 23654.46776096433, + 23633.52658370207, + 23623.032272431486, + 23623.846797301463, + 23636.836707239283, + 23662.87312995056, + 23702.831771919282, + 23757.592918407812, + 23828.041433456823, + 23915.06675988538, + 25563.84716575492, + 25561.768683180435, + 25548.9325586674, + 25526.011977278777, + 25493.684702855917, + 25452.63307801853, + 25403.544024164676, + 25347.10904147074, + 25284.02420889155, + 25214.990184160204, + 25140.712203788218, + 25061.900083065444, + 24979.26821606009, + 24893.535575618735, + 24805.425713366298, + 24715.6667597061, + 24624.991423819756, + 24534.136993667278, + 24443.84533598707, + 24354.8628962958, + 24267.9406988886, + 24183.834346838903, + 24103.304021998516, + 24027.114484997586, + 23956.03507524464, + 23890.839710926564, + 23832.306889008592, + 23781.21968523433, + 23738.36575412573, + 23704.5373289831, + 23680.53122188514, + 23667.148823688847, + 23665.19610402965, + 23675.48361132126, + 23698.82647275583, + 23736.04439430381, + 23787.961660714034, + 25481.633106061458, + 25481.988057475155, + 25471.503183717232, + 25450.871776514578, + 25420.791706372427, + 25381.965422574372, + 25335.099953182376, + 25280.90690503675, + 25220.10246375619, + 25153.407393737696, + 25081.547038156707, + 25005.251318966937, + 24925.25473690051, + 24842.29637146791, + 24757.119880957933, + 24670.473502437788, + 24583.110051753032, + 24495.786923527554, + 24409.26609116363, + 24324.3141068419, + 24241.702101521296, + 24162.205784939193, + 24086.6054456113, + 24015.68595083168, + 23950.236746672723, + 23891.051857985225, + 23838.929888398307, + 23794.674020319504, + 23759.09201493464, + 23732.99621220793, + 23717.20353088196, + 23712.535468477636, + 23719.818101294277, + 23739.8820844095, + 23773.56265167937, + 23821.6996157382, + 23885.13736799873, + 25476.49982755392, + 25477.501372181512, + 25467.634172927676, + 25447.627713514332, + 25418.216056441714, + 25380.137842988446, + 25334.13629321149, + 25280.959205946194, + 25221.358958806242, + 25156.092508183676, + 25085.921389248924, + 25011.611715950756, + 24933.934181016255, + 24853.664055950965, + 24771.58119103869, + 24688.470015341674, + 24605.119536700426, + 24522.323341733914, + 24440.879595839404, + 24361.591043192533, + 24285.2650067473, + 24212.713388236054, + 24144.75266816954, + 24082.203905836814, + 24025.892739305305, + 23976.64938542082, + 23935.308639807492, + 23902.709876867862, + 23879.69704978278, + 23867.118690511474, + 23865.827909791547, + 23876.682397138964, + 23900.544420847975, + 23938.28082799128, + 23990.763044419906, + 24058.86707476324, + 24143.473502429, + 25916.424757788307, + 25910.511320238063, + 25893.99798628611, + 25867.550705294096, + 25831.840005402046, + 25787.540993528368, + 25735.333355369745, + 25675.901355401344, + 25609.933836876593, + 25538.124221827304, + 25461.170511063672, + 25379.77528417422, + 25294.645699525856, + 25206.49349426382, + 25116.03498431173, + 25023.99106437156, + 24931.08720792364, + 24838.05346722666, + 24745.624473317668, + 24654.539436012077, + 24565.54214390364, + 24479.38096436448, + 24396.808843545135, + 24318.583306374385, + 24245.466456559465, + 24178.224976585916, + 24117.630127717664, + 24064.457749997007, + 24019.48826224457, + 23983.50666205936, + 23957.302525818715, + 23941.670008678364, + 23937.407844572383, + 23945.319346213193, + 23966.212405091595, + 24000.89949147674, + 24050.197654416133, + 25828.423679182277, + 25824.494993678087, + 25809.909449265193, + 25785.352522072728, + 25751.514267008188, + 25709.08931775742, + 25658.77688678464, + 25601.280765332394, + 25537.309323421643, + 25467.575509851664, + 25392.796852200085, + 25313.695456822938, + 25230.998008854578, + 25145.435772207722, + 25057.74458957344, + 24968.664882421217, + 24878.941650998808, + 24789.324474332385, + 24700.567510226483, + 24613.429495263958, + 24528.673744806045, + 24447.06815299235, + 24369.385192740854, + 24296.40191574782, + 24228.89995248794, + 24167.665512214247, + 24113.489382958105, + 24067.16693152932, + 24029.498103515958, + 24001.28742328449, + 23983.34399397975, + 23976.48149752491, + 23981.51819462153, + 23999.276924749487, + 24030.58510616708, + 24076.274735910887, + 24137.18238979592, + 25812.741399281025, + 25808.66616224403, + 25793.95029905981, + 25769.31443403894, + 25735.483770270344, + 25693.188089621344, + 25643.161752737567, + 25586.143699043052, + 25522.877446740134, + 25454.111092809577, + 25380.59731301046, + 25303.093361880256, + 25222.36107273473, + 25139.166857668082, + 25054.281707552833, + 24968.481192039857, + 24882.5454595584, + 24797.259237316088, + 24713.411831298865, + 24631.79712627104, + 24553.213585775324, + 24478.464252132726, + 24408.35674644267, + 24343.703268582896, + 24285.320597209527, + 24234.030089757023, + 24190.657682438232, + 24156.033890244362, + 24130.993806944945, + 24116.377105087897, + 24113.028035999483, + 24121.795429784343, + 24143.532695325448, + 24179.097820284158, + 24229.35337110018, + 24295.166492991568, + 24377.408909954745, + 26273.090663944997, + 26263.349703920205, + 26243.167990812217, + 26213.204238281374, + 26174.12173876637, + 26126.588363484312, + 26071.27656243057, + 26008.863364378947, + 25940.0303768816, + 25865.463786269003, + 25785.85435765004, + 25701.8974349119, + 25614.292940720192, + 25523.745376518815, + 25430.9638225301, + 25336.66193775466, + 25241.557959971553, + 25146.374705738126, + 25051.839570390108, + 24958.68452804158, + 24867.646131585007, + 24779.465512691193, + 24694.888381809327, + 24614.665028166884, + 24539.550319769787, + 24470.303703402245, + 24407.68920462689, + 24352.475427784695, + 24305.43555599494, + 24267.34735115532, + 24238.99315394189, + 24221.15988380904, + 24214.639038989506, + 24220.22669649441, + 24238.723512113243, + 24270.934720413832, + 24317.670134742348, + 26179.412561974037, + 26171.206281509858, + 26152.527503193953, + 26124.053887557697, + 26086.46767391084, + 26040.4556803415, + 25986.709303716114, + 25925.924519679513, + 25858.80188265489, + 25786.04652584378, + 25708.368161226084, + 25626.48107956004, + 25541.104150382296, + 25452.9608220078, + 25362.7791215299, + 25271.291654820317, + 25179.235606529048, + 25087.352740084545, + 24996.38939769358, + 24907.09650034126, + 24820.229547791067, + 24736.548618584893, + 24656.818370042933, + 24581.808038263705, + 24512.29143812417, + 24449.046963279616, + 24392.857586163675, + 24344.51085798836, + 24304.798908744007, + 24274.518447199363, + 24254.470760901484, + 24245.461716175843, + 24248.30175812619, + 24263.805910634703, + 24292.793776361894, + 24336.089536746655, + 24394.521952006184, + 26153.369543066838, + 26144.224044514736, + 26124.66734935607, + 26095.411222490082, + 26057.17200759439, + 26010.670627124997, + 25956.6325823162, + 25895.78795318073, + 25828.871398509604, + 25756.622155872265, + 25679.784041616473, + 25599.105450868366, + 25515.33935753242, + 25429.243314291507, + 25341.57945260682, + 25253.114482717905, + 25164.61969364273, + 25076.870953177557, + 24990.648707897042, + 24906.73798315416, + 24825.92838308028, + 24749.01409058514, + 24676.79386735685, + 24610.07105386178, + 24549.65356934477, + 24496.353911828952, + 24450.98915811585, + 24414.380963785374, + 24387.3555631957, + 24370.74376948345, + 24365.380974563563, + 24372.107149129395, + 24391.766842652552, + 24425.20918338309, + 24473.2878783494, + 24536.86121335823, + 24616.792052994664, + 26633.834633001683, + 26620.271837924993, + 26596.428830865305, + 26562.95708978164, + 26520.512671411372, + 26469.75621127029, + 26411.35292365246, + 26345.972601630365, + 26274.28961705482, + 26196.982920554987, + 26114.736041538436, + 26028.23708819106, + 25938.1787474771, + 25845.258285139196, + 25750.177545698312, + 25653.642952453774, + 25556.365507483297, + 25459.06079164292, + 25362.44896456705, + 25267.254764668476, + 25174.20750913831, + 25084.041093946038, + 24997.493993839544, + 24915.309262344985, + 24838.234531766968, + 24767.022013188376, + 24702.428496470522, + 24645.215350253064, + 24596.148521953957, + 24555.9985377696, + 24525.540502674692, + 24505.554100422327, + 24496.82359354394, + 24500.137823349298, + 24516.290209926585, + 24546.07875214233, + 24590.30602764136, + 26534.59524614657, + 26522.11541417109, + 26499.34884019491, + 26466.96536915167, + 26425.639424753357, + 26376.050009490355, + 26318.880704631363, + 26254.819670223445, + 26184.559645092064, + 26108.797946840972, + 26028.236471852368, + 25943.581695286735, + 25855.544671082942, + 25764.84103195823, + 25672.190989408176, + 25578.319333706753, + 25483.955433906223, + 25389.83323783728, + 25296.691272108947, + 25205.272642108586, + 25116.32503200196, + 25030.600704733173, + 24948.856502024682, + 24871.85384437728, + 24800.358731070184, + 24735.141740160878, + 24676.97802848531, + 24626.647331657718, + 24584.933964070697, + 24552.62681889523, + 24530.519368080662, + 24519.409662354698, + 24520.10033122333, + 24533.398582971, + 24560.11620466047, + 24601.06956213289, + 24657.0796000077, + 26498.390087900898, + 26484.17839329878, + 26459.7862434372, + 26425.916543804116, + 26383.27677866581, + 26332.57901106697, + 26274.539882830562, + 26209.88061455802, + 26139.32700562904, + 26063.609434201724, + 25983.462857212544, + 25899.626810376292, + 25812.84540818616, + 25723.867343913666, + 25633.445889608676, + 25542.33889609948, + 25451.308792992644, + 25361.12258867317, + 25272.551870304378, + 25186.372803827933, + 25103.366133963893, + 25024.317184210646, + 24950.01585684498, + 24881.256632921977, + 24818.83857227516, + 24763.56531351631, + 24716.245074035673, + 24677.690650001798, + 24648.719416361575, + 24630.1533268403, + 24622.818913941588, + 24627.547288947484, + 24645.174141918254, + 24676.539741692653, + 24722.48893588776, + 24783.871150898987, + 24861.540391900107, + 26998.644803554555, + 26981.264115770045, + 26953.76515488444, + 26916.792163155398, + 26870.993961619024, + 26817.02395008974, + 26755.540107160297, + 26687.20499020189, + 26612.685735363975, + 26532.654057574455, + 26447.786250539524, + 26358.76318674378, + 26266.270317450137, + 26170.997672699938, + 26073.639861312804, + 25974.89607088675, + 25875.470067798182, + 25776.070197201785, + 25677.409383030725, + 25580.205127996385, + 25485.179513588595, + 25393.059200075546, + 25304.575426503758, + 25220.464010698124, + 25141.465349261864, + 25068.324417576605, + 25001.790769802312, + 24942.61853887732, + 24891.566436518275, + 24849.397753220273, + 24816.88035825665, + 24794.786699679215, + 24783.893804318093, + 24784.983277781706, + 24798.841304456953, + 24826.25864750898, + 24868.030648881373, + 26893.96561322923, + 26877.21427468191, + 26850.363344778983, + 26814.074852856356, + 26769.015407028244, + 26715.856194187305, + 26655.27298000446, + 26587.94610892906, + 26514.560504188805, + 26435.805667789693, + 26352.375680516216, + 26264.969201931035, + 26174.28947037534, + 26081.044302968603, + 25985.94609560865, + 25889.711822971694, + 25793.063038512275, + 25696.72587446332, + 25601.43104183612, + 25507.913830420293, + 25416.914108783825, + 25329.17632427311, + 25245.44950301285, + 25166.48724990606, + 25093.047748634242, + 25025.893761657113, + 24965.792630212894, + 24913.516274318048, + 24869.841192767464, + 24835.548463134342, + 24811.423741770315, + 24798.257263805273, + 24796.843843147522, + 24807.982872483757, + 24832.478323278952, + 24871.13874577656, + 24924.77726899824, + 26847.807252592225, + 26828.53097272074, + 26799.306290743432, + 26760.82725273685, + 26713.79248355604, + 26658.905186834298, + 26596.87314498332, + 26528.408719193198, + 26454.228849432304, + 26375.055054447454, + 26291.61343176377, + 26204.634657684757, + 26114.853987292223, + 26023.011254446443, + 25929.85087178594, + 25836.12183072767, + 25742.577701466897, + 25649.976632977286, + 25559.081353010857, + 25470.659168097947, + 25385.481963547278, + 25304.326203445955, + 25227.972930659434, + 25157.207766831485, + 25092.820912384268, + 25035.607146518323, + 24986.3658272125, + 24945.900891224086, + 24915.020854088612, + 24894.538810120106, + 24885.27243241079, + 24888.04397283143, + 24903.680262031026, + 24933.012709436913, + 24976.877303254947, + 25036.114610469136, + 25111.569776842003, + 27039.429730047217, + 27021.624999173608, + 26993.720074705274, + 26956.358394932453, + 26910.187976923746, + 26855.861416526164, + 26794.035888364986, + 26725.373145843936, + 26650.53952114504, + 26570.205925228725, + 26485.04784783375, + 26395.745357477233, + 26302.983101454647, + 26207.450305839866, + 26109.840775485052, + 26010.852894020787, + 25911.189623856004, + 25811.558506177953, + 25712.671660952285, + 25615.24578692299, + 25520.002161612432, + 25427.66664132131, + 25338.969661128733, + 25254.646234892072, + 25175.435955247172, + 25102.08299360815, + 25035.33610016753, + 24975.94860389618, + 24924.678412543322, + 24882.288012636527, + 24849.544469481778, + 24827.21942716336, + 24816.089108543925, + 24816.93431526448, + 24830.540427744447, + 24857.69740518155, + 24899.199785551853, + 26934.153864954504, + 26916.927953604794, + 26889.62333153072, + 26852.901159667723, + 26807.427177729594, + 26753.871704208526, + 26692.90963637501, + 26625.22045027795, + 26551.48820074459, + 26472.401521380525, + 26388.65362456972, + 26300.942301474486, + 26209.96992203551, + 26116.443434971836, + 26021.074367780842, + 25924.578826738307, + 25827.677496898308, + 25731.095642093354, + 25635.56310493427, + 25541.81430681023, + 25450.588247888794, + 25362.628507115875, + 25278.68324221575, + 25199.505189691037, + 25125.851664822716, + 25058.484561670117, + 24998.17035307097, + 24945.680090641345, + 24901.789404775634, + 24867.278504646634, + 24842.932178205487, + 24829.539792181702, + 24827.89529208311, + 24838.797202195936, + 24863.048625584768, + 24901.457244092537, + 24954.835318340523, + 26886.902938446063, + 26867.063919230895, + 26837.302362590028, + 26798.31133022022, + 26750.78846259664, + 26695.43597897283, + 26632.960677380623, + 26564.07393463029, + 26489.49170631041, + 26409.93452678792, + 26326.127509208178, + 26238.800345494805, + 26148.68730634986, + 26056.52724125373, + 25963.06357846514, + 25869.04432502123, + 25775.22206673744, + 25682.353968207597, + 25591.20177280391, + 25502.531802676884, + 25417.114958755443, + 25335.72672074685, + 25259.147147136726, + 25188.16087518903, + 25123.557120946123, + 25066.12967922867, + 25016.676923635754, + 24976.001806544788, + 24944.91185911153, + 24924.21919127012, + 24914.74049173303, + 24917.297027991186, + 24932.7146463137, + 24961.82377174819, + 25005.45940812058, + 25064.46113803514, + 25139.67312287452, + 41361.04533536548, + 41206.372501828904, + 41047.80245611964, + 40885.73744648464, + 40720.5842999492, + 40552.75442231702, + 40382.66379817007, + 40210.732990868746, + 40037.38714255178, + 39863.05597413629, + 39688.173785317704, + 39513.179454569894, + 39338.516439144965, + 39164.6327750735, + 38991.9810771644, + 38821.018539004835, + 38652.20693296052, + 38486.01261017535, + 38322.90650057168, + 38163.36411285022, + 38007.86553448997, + 37856.895431748366, + 37710.94304966117, + 37570.50221204253, + 37436.07132148485, + 37308.15335935907, + 37187.255885814295, + 37073.89103977816, + 36968.575538956546, + 36871.830679833736, + 36784.18233767239, + 36706.16096651345, + 36638.30159917635, + 36581.14384725871, + 36535.231901136656, + 36501.1145299646, + 36479.34508167537, + 41183.48847149236, + 41011.45659875208, + 40836.38766816773, + 40658.68232075058, + 40478.74577629019, + 40296.98783335454, + 40113.82286928992, + 39929.669840221024, + 39744.95228105088, + 39560.09830546085, + 39375.540605910726, + 39191.71645363863, + 39009.06769866098, + 38828.040769772626, + 38649.086674546765, + 38472.660999334934, + 38299.22390926704, + 38129.24014825133, + 37963.17903897443, + 37801.514482901344, + 37644.72496027537, + 37493.293530118244, + 37347.70783023003, + 37208.46007718915, + 37076.04706635231, + 36950.97017185473, + 36833.73534660984, + 36724.85312230955, + 36624.838609424034, + 36534.211497201846, + 36453.49605366998, + 36383.221125633645, + 36323.92013867658, + 36276.13109716071, + 36240.396584226415, + 36217.26376179246, + 36207.284370555906, + 40995.143014651905, + 40790.70769642199, + 40584.840449219715, + 40377.93902103203, + 40170.40573862425, + 39962.64750754008, + 39755.07581210154, + 39548.10671540906, + 39342.16085934138, + 39137.663464555626, + 38935.044330487224, + 38734.73783535014, + 38537.18293613645, + 38342.82316861678, + 38152.10664734001, + 37965.48606563343, + 37783.41869560266, + 37606.36638813167, + 37434.795572882875, + 37269.17725829694, + 37109.98703159293, + 36957.70505876829, + 36812.816084598795, + 36675.809432638605, + 36547.17900522021, + 36427.4232834545, + 36317.04532723061, + 36216.55277521626, + 36126.45784485728, + 36047.277332378006, + 35979.532612781106, + 35923.7496398476, + 35880.45894613683, + 35850.195642986546, + 35833.499420512875, + 35830.91454761022, + 35842.98987195144 + ], + "input_power": [ + 6881.49261962, + 7087.236340745924, + 7293.4828921414855, + 7500.232273806669, + 7707.484485741482, + 7915.239527945929, + 8123.497400420001, + 8332.258103163704, + 8541.521636177042, + 8751.287999459999, + 8961.557193012597, + 9172.329216834818, + 9383.604070926665, + 9595.381755288146, + 9807.662269919261, + 10020.445614819997, + 10233.731789990376, + 10447.520795430371, + 10661.81263114, + 10876.60729711926, + 11091.904793368149, + 11307.705119886665, + 11524.008276674816, + 11740.814263732593, + 11958.123081059997, + 12175.934728657041, + 12394.249206523706, + 12613.066514659999, + 12832.386653065934, + 13052.20962174148, + 13272.535420686665, + 13493.364049901484, + 13714.695509385927, + 13936.529799140004, + 14158.866919163707, + 14381.706869457037, + 14605.049650019999, + 6952.605191620003, + 7165.671410879261, + 7379.240460408152, + 7593.312340206671, + 7807.887050274814, + 8022.964590612599, + 8238.544961220003, + 8454.628162097039, + 8671.21419324371, + 8888.303054660002, + 9105.894746345932, + 9323.989268301488, + 9542.58662052667, + 9761.686803021481, + 9981.289815785929, + 10201.395658820002, + 10422.004332123712, + 10643.115835697043, + 10864.73016954, + 11086.847333652599, + 11309.467328034816, + 11532.590152686666, + 11756.215807608152, + 11980.344292799262, + 12204.97560826, + 12430.109753990375, + 12655.746729990373, + 12881.886536259997, + 13108.529172799266, + 13335.67463960815, + 13563.322936686664, + 13791.474064034817, + 14020.128021652594, + 14249.284809540004, + 14478.944427697037, + 14709.106876123704, + 14939.772154819999, + 7131.348808720005, + 7357.595524619261, + 7584.345070788151, + 7811.597447226671, + 8039.352653934815, + 8267.610690912597, + 8496.371558160003, + 8725.635255677038, + 8955.40178346371, + 9185.67114152, + 9416.443329845933, + 9647.718348441489, + 9879.49619730667, + 10111.776876441481, + 10344.560385845929, + 10577.846725520003, + 10811.63589546371, + 11045.92789567704, + 11280.72272616, + 11516.020386912598, + 11751.820877934817, + 11988.124199226666, + 12224.930350788152, + 12462.239332619261, + 12700.051144720002, + 12938.365787090373, + 13177.18325973037, + 13416.503562639999, + 13656.326695819267, + 13896.652659268151, + 14137.481452986665, + 14378.813076974819, + 14620.647531232597, + 14862.984815760003, + 15105.824930557043, + 15349.167875623707, + 15593.01365096, + 6909.007019692402, + 7113.763655378324, + 7319.023121333886, + 7524.785417559068, + 7731.05054405388, + 7937.818500818327, + 8145.0892878524, + 8352.862905156102, + 8561.139352729439, + 8769.918630572398, + 8979.200738684996, + 9188.98567706722, + 9399.273445719065, + 9610.064044640547, + 9821.35747383166, + 10033.1537332924, + 10245.452823022775, + 10458.254743022773, + 10671.5594932924, + 10885.367073831661, + 11099.677484640548, + 11314.490725719066, + 11529.806797067216, + 11745.625698684993, + 11961.9474305724, + 12178.771992729442, + 12396.099385156103, + 12613.929607852398, + 12832.262660818331, + 13051.098544053883, + 13270.437257559064, + 13490.278801333881, + 13710.623175378327, + 13931.470379692406, + 14152.820414276104, + 14374.673279129436, + 14597.028974252396, + 6981.382963872401, + 7193.37096681166, + 7405.861800020552, + 7618.8554634990705, + 7832.351957247214, + 8046.351281264995, + 8260.853435552403, + 8475.858420109438, + 8691.366234936106, + 8907.3768800324, + 9123.890355398331, + 9340.906661033885, + 9558.42579693907, + 9776.44776311388, + 9994.972559558331, + 10214.0001862724, + 10433.530643256112, + 10653.563930509441, + 10874.1000480324, + 11095.138995824998, + 11316.680773887221, + 11538.725382219069, + 11761.272820820557, + 11984.323089691661, + 12207.876188832399, + 12431.932118242776, + 12656.490877922774, + 12881.552467872396, + 13107.116888091665, + 13333.184138580553, + 13559.754219339067, + 13786.827130367219, + 14014.402871665, + 14242.48144323241, + 14471.06284506944, + 14700.147077176105, + 14929.734139552402, + 7162.400650896403, + 7387.405114891661, + 7612.912409156553, + 7838.922533691071, + 8065.435488495216, + 8292.451273568997, + 8519.969888912403, + 8747.991334525439, + 8976.515610408109, + 9205.542716560401, + 9435.072652982333, + 9665.105419673891, + 9895.641016635069, + 10126.679443865882, + 10358.220701366332, + 10590.264789136401, + 10822.811707176112, + 11055.861455485441, + 11289.414034064403, + 11523.469442913001, + 11758.027682031221, + 11993.088751419069, + 12228.652651076554, + 12464.719381003662, + 12701.288941200402, + 12938.361331666776, + 13175.936552402773, + 13414.014603408397, + 13652.595484683667, + 13891.679196228552, + 14131.265738043066, + 14371.355110127219, + 14611.947312480996, + 14853.04234510441, + 15094.640207997443, + 15336.74090116011, + 15579.344424592402, + 6949.83965858, + 7153.115666105925, + 7356.894503901481, + 7561.1761719666665, + 7765.960670301478, + 7971.2479989059275, + 8177.038157779998, + 8383.331146923698, + 8590.126966337039, + 8797.425616019998, + 9005.227095972596, + 9213.531406194816, + 9422.338546686666, + 9631.648517448146, + 9841.461318479258, + 10051.776949779998, + 10262.595411350376, + 10473.91670319037, + 10685.740825299998, + 10898.067777679262, + 11110.897560328149, + 11324.230173246664, + 11538.065616434815, + 11752.40388989259, + 11967.244993619996, + 12182.58892761704, + 12398.435691883702, + 12614.785286419994, + 12831.637711225929, + 13048.992966301477, + 13266.851051646665, + 13485.21196726148, + 13704.075713145925, + 13923.442289300003, + 14143.311695723703, + 14363.68393241704, + 14584.558999379993, + 7024.110661030001, + 7234.481339489261, + 7445.35484821815, + 7656.731187216669, + 7868.610356484814, + 8080.992356022594, + 8293.87718583, + 8507.264845907037, + 8721.155336253709, + 8935.548656870002, + 9150.444807755932, + 9365.843788911485, + 9581.745600336668, + 9798.150242031481, + 10015.057713995928, + 10232.468016230001, + 10450.381148733708, + 10668.797111507036, + 10887.715904549998, + 11107.137527862596, + 11327.061981444815, + 11547.489265296665, + 11768.419379418152, + 11989.85232380926, + 12211.788098469999, + 12434.226703400373, + 12657.168138600367, + 12880.612404069998, + 13104.559499809262, + 13329.009425818149, + 13553.962182096668, + 13779.417768644818, + 14005.376185462595, + 14231.837432550004, + 14458.801509907038, + 14686.268417533705, + 14914.23815543, + 7208.539452940002, + 7431.680539079259, + 7655.3244554881485, + 7879.471202166667, + 8104.120779114812, + 8329.273186332595, + 8554.92842382, + 8781.086491577034, + 9007.747389603708, + 9234.911117899997, + 9462.57767646593, + 9690.747065301483, + 9919.419284406667, + 10148.59433378148, + 10378.272213425931, + 10608.452923339999, + 10839.136463523708, + 11070.322833977036, + 11302.0120347, + 11534.204065692595, + 11766.898926954815, + 12000.096618486665, + 12233.797140288154, + 12468.00049235926, + 12702.7066747, + 12937.915687310373, + 13173.627530190373, + 13409.842203339998, + 13646.559706759263, + 13883.780040448151, + 14121.503204406663, + 14359.729198634821, + 14598.458023132593, + 14837.689677900005, + 15077.424162937043, + 15317.661478243708, + 15558.40162382, + 6990.145544002401, + 7191.940923368325, + 7394.239133003884, + 7597.040172909066, + 7800.344043083879, + 8004.150743528327, + 8208.4602742424, + 8413.272635226102, + 8618.58782647944, + 8824.4058480024, + 9030.726699794997, + 9237.550381857218, + 9444.876894189067, + 9652.706236790547, + 9861.03840966166, + 10069.8734128024, + 10279.211246212775, + 10489.051909892773, + 10699.395403842398, + 10910.24172806166, + 11121.59088255055, + 11333.442867309064, + 11545.797682337216, + 11758.655327634993, + 11972.0158032024, + 12185.879109039437, + 12400.245245146105, + 12615.114211522397, + 12830.486008168327, + 13046.360635083882, + 13262.73809226906, + 13479.618379723881, + 13697.001497448326, + 13914.887445442404, + 14133.276223706105, + 14352.167832239438, + 14571.562271042396, + 7066.311604722402, + 7275.0649587016605, + 7484.321142950552, + 7694.080157469068, + 7904.342002257215, + 8115.106677314998, + 8326.374182642401, + 8538.144518239438, + 8750.417684106107, + 8963.1936802424, + 9176.472506648332, + 9390.254163323887, + 9604.53865026907, + 9819.325967483881, + 10034.616114968328, + 10250.4090927224, + 10466.704900746106, + 10683.503539039439, + 10900.805007602401, + 11118.609306434995, + 11336.916435537216, + 11555.726394909065, + 11775.039184550555, + 11994.854804461662, + 12215.1732546424, + 12435.994535092774, + 12657.318645812771, + 12879.145586802399, + 13101.475358061667, + 13324.30795959055, + 13547.643391389065, + 13771.481653457218, + 13995.822745794994, + 14220.666668402408, + 14446.013421279442, + 14671.863004426108, + 14898.215417842397, + 7254.151501518403, + 7475.4292098016585, + 7697.209748354552, + 7919.493117177068, + 8142.279316269214, + 8365.568345630998, + 8589.360205262401, + 8813.654895163436, + 9038.452415334108, + 9263.7527657744, + 9489.55594648433, + 9715.861957463887, + 9942.670798713067, + 10169.982470231882, + 10397.79697202033, + 10626.1143040784, + 10854.934466406108, + 11084.257459003438, + 11314.083281870402, + 11544.411935006998, + 11775.243418413216, + 12006.577732089068, + 12238.414876034554, + 12470.754850249661, + 12703.597654734398, + 12936.943289488774, + 13170.791754512773, + 13405.143049806398, + 13639.997175369665, + 13875.354131202548, + 14111.213917305067, + 14347.576533677217, + 14584.441980318996, + 14821.810257230407, + 15059.68136441144, + 15298.055301862109, + 15536.932069582399, + 7029.924675959602, + 7230.239427165524, + 7431.057008641082, + 7632.377420386268, + 7834.200662401081, + 8036.526734685529, + 8239.355637239601, + 8442.6873700633, + 8646.52193315664, + 8850.859326519601, + 9055.699550152198, + 9261.042604054419, + 9466.888488226268, + 9673.237202667746, + 9880.088747378863, + 10087.4431223596, + 10295.300327609977, + 10503.660363129973, + 10712.5232289196, + 10921.888924978863, + 11131.757451307752, + 11342.128807906263, + 11553.00299477442, + 11764.380011912195, + 11976.259859319598, + 12188.642536996638, + 12401.528044943305, + 12614.916383159598, + 12828.807551645532, + 13043.201550401081, + 13258.098379426265, + 13473.49803872108, + 13689.400528285529, + 13905.805848119606, + 14122.713998223302, + 14340.124978596641, + 14558.038789239596, + 7107.985794949604, + 7315.12182444886, + 7522.760684217753, + 7730.9023742562695, + 7939.546894564416, + 8148.6942451421955, + 8358.344425989602, + 8568.497437106638, + 8779.15327849331, + 8990.311950149602, + 9201.973452075532, + 9414.137784271086, + 9626.804946736269, + 9839.97493947108, + 10053.64776247553, + 10267.8234157496, + 10482.501899293311, + 10697.68321310664, + 10913.3673571896, + 11129.554331542198, + 11346.24413616442, + 11563.436771056267, + 11781.132236217754, + 11999.330531648862, + 12218.031657349598, + 12437.235613319974, + 12656.942399559974, + 12877.152016069596, + 13097.864462848867, + 13319.079739897754, + 13540.797847216269, + 13763.018784804419, + 13985.742552662197, + 14208.969150789606, + 14432.698579186643, + 14656.930837853306, + 14881.665926789598, + 7299.236796631602, + 7518.651127058859, + 7738.568287755751, + 7958.988278722267, + 8179.911099958414, + 8401.336751464198, + 8623.265233239601, + 8845.696545284638, + 9068.63068759931, + 9292.067660183602, + 9516.007463037531, + 9740.450096161087, + 9965.395559554268, + 10190.84385321708, + 10416.794977149531, + 10643.248931351605, + 10870.20571582331, + 11097.66533056464, + 11325.6277755756, + 11554.0930508562, + 11783.061156406413, + 12012.532092226265, + 12242.505858315753, + 12472.982454674859, + 12703.961881303603, + 12935.444138201976, + 13167.429225369971, + 13399.917142807602, + 13632.907890514869, + 13866.401468491747, + 14100.397876738269, + 14334.897115254422, + 14569.8991840402, + 14805.404083095607, + 15041.411812420645, + 15277.922372015311, + 15514.9357618796, + 7069.177054451599, + 7268.011177497522, + 7467.348130813083, + 7667.187914398267, + 7867.530528253077, + 8068.375972377527, + 8269.724246771599, + 8471.5753514353, + 8673.929286368639, + 8876.786051571598, + 9080.145647044194, + 9284.008072786417, + 9488.373328798265, + 9693.241415079745, + 9898.612331630862, + 10104.4860784516, + 10310.862655541974, + 10517.742062901973, + 10725.1243005316, + 10933.00936843086, + 11141.39726659975, + 11350.287995038265, + 11559.681553746417, + 11769.577942724192, + 11979.977161971601, + 12190.879211488636, + 12402.284091275302, + 12614.191801331599, + 12826.60234165753, + 13039.515712253082, + 13252.931913118262, + 13466.850944253081, + 13681.272805657527, + 13896.197497331603, + 14111.625019275305, + 14327.55537148864, + 14543.988553971594, + 7149.133231711601, + 7354.651936730859, + 7560.673472019753, + 7767.197837578269, + 7974.225033406413, + 8181.755059504194, + 8389.7879158716, + 8598.323602508635, + 8807.362119415307, + 9016.9034665916, + 9226.94764403753, + 9437.494651753084, + 9648.544489738268, + 9860.09715799308, + 10072.152656517528, + 10284.7109853116, + 10497.77214437531, + 10711.336133708639, + 10925.402953311599, + 11139.972603184196, + 11355.045083326417, + 11570.620393738265, + 11786.69853441975, + 12003.279505370863, + 12220.363306591595, + 12437.949938081974, + 12656.03939984197, + 12874.631691871595, + 13093.726814170865, + 13313.32476673975, + 13533.425549578269, + 13754.029162686418, + 13975.135606064196, + 14196.744879711603, + 14418.856983628642, + 14641.471917815303, + 14864.5896822716, + 7343.795338279603, + 7561.346290850859, + 7779.40007369175, + 7997.9566868022675, + 8217.016130182412, + 8436.578403832193, + 8656.6435077516, + 8877.211441940633, + 9098.282206399308, + 9319.855801127602, + 9541.932226125527, + 9764.511481393087, + 9987.593566930267, + 10211.17848273708, + 10435.266228813529, + 10659.856805159603, + 10884.950211775309, + 11110.546448660638, + 11336.6455158156, + 11563.247413240195, + 11790.35214093442, + 12017.959698898267, + 12246.070087131751, + 12474.683305634859, + 12703.799354407594, + 12933.418233449976, + 13163.539942761972, + 13394.164482343598, + 13625.291852194867, + 13856.922052315751, + 14089.055082706265, + 14321.69094336642, + 14554.829634296198, + 14788.471155495608, + 15022.615506964641, + 15257.262688703308, + 15492.4127007116, + 7107.9026794784, + 7305.256174364324, + 7503.112499519884, + 7701.471654945068, + 7900.33364063988, + 8099.6984566043275, + 8299.566102838402, + 8499.936579342102, + 8700.80988611544, + 8902.186023158398, + 9104.064990470997, + 9306.446788053217, + 9509.331415905066, + 9712.718874026546, + 9916.60916241766, + 10121.0022810784, + 10325.898230008775, + 10531.29700920877, + 10737.1986186784, + 10943.60305841766, + 11150.51032842655, + 11357.920428705067, + 11565.833359253218, + 11774.249120070994, + 11983.1677111584, + 12192.589132515435, + 12402.513384142107, + 12612.940466038399, + 12823.87037820433, + 13035.303120639881, + 13247.238693345063, + 13459.677096319885, + 13672.61832956433, + 13886.062393078408, + 14100.009286862103, + 14314.459010915436, + 14529.411565238397, + 7189.753915008404, + 7393.655295547659, + 7598.0595063565515, + 7802.9665474350695, + 8008.376418783217, + 8214.289120400996, + 8420.704652288401, + 8627.623014445437, + 8835.04420687211, + 9042.968229568402, + 9251.395082534333, + 9460.324765769887, + 9669.757279275067, + 9879.692623049883, + 10090.130797094329, + 10301.071801408401, + 10512.515635992111, + 10724.46230084544, + 10936.911795968399, + 11149.864121360999, + 11363.319277023218, + 11577.277262955065, + 11791.738079156556, + 12006.701725627665, + 12222.168202368397, + 12438.137509378776, + 12654.609646658775, + 12871.5846142084, + 13089.062412027666, + 13307.043040116554, + 13525.526498475067, + 13744.51278710322, + 13964.001906000996, + 14183.993855168406, + 14404.48863460544, + 14625.486244312106, + 14846.9866842884, + 7387.827126462402, + 7603.514701177661, + 7819.7051061625525, + 8036.398341417071, + 8253.594406941214, + 8471.293302734995, + 8689.495028798403, + 8908.199585131439, + 9127.40697173411, + 9347.117188606404, + 9567.330235748334, + 9788.046113159888, + 10009.26482084107, + 10230.986358791883, + 10453.21072701233, + 10675.937925502403, + 10899.16795426211, + 11122.900813291439, + 11347.136502590405, + 11571.875022158998, + 11797.116371997221, + 12022.860552105065, + 12249.107562482555, + 12475.857403129663, + 12703.110074046399, + 12930.865575232776, + 13159.123906688774, + 13387.8850684144, + 13617.149060409663, + 13846.915882674548, + 14077.185535209068, + 14307.95801801322, + 14539.233331086998, + 14771.011474430406, + 15003.292448043443, + 15236.076251926106, + 15469.362886078403, + 7146.101551040001, + 7341.974417765926, + 7538.350114761483, + 7735.228642026667, + 7932.6099995614795, + 8130.49418736593, + 8328.88120544, + 8527.771053783701, + 8727.16373239704, + 8927.05924128, + 9127.457580432596, + 9328.358749854819, + 9529.762749546666, + 9731.669579508147, + 9934.079239739262, + 10136.99173024, + 10340.407051010377, + 10544.32520205037, + 10748.746183359997, + 10953.669994939262, + 11159.096636788148, + 11365.026108906664, + 11571.458411294814, + 11778.393543952594, + 11985.831506879997, + 12193.772300077042, + 12402.215923543701, + 12611.16237728, + 12820.61166128593, + 13030.56377556148, + 13241.018720106664, + 13451.976494921486, + 13663.437100005925, + 13875.400535360004, + 14087.866800983704, + 14300.835896877037, + 14514.307823039997, + 7229.847844840003, + 7432.13190089926, + 7634.918787228152, + 7838.208503826669, + 8042.001050694815, + 8246.296427832596, + 8451.094635240002, + 8656.395672917037, + 8862.19954086371, + 9068.506239080001, + 9275.315767565931, + 9482.628126321486, + 9690.44331534667, + 9898.761334641482, + 10107.582184205929, + 10316.90586404, + 10526.73237414371, + 10737.061714517042, + 10947.893885160001, + 11159.228886072595, + 11371.066717254818, + 11583.407378706663, + 11796.250870428154, + 12009.597192419264, + 12223.446344679998, + 12437.798327210377, + 12652.653140010372, + 12868.010783080003, + 13083.871256419263, + 13300.234560028151, + 13517.10069390667, + 13734.46965805482, + 13952.341452472596, + 14170.716077160007, + 14389.593532117042, + 14608.973817343705, + 14828.856932839997, + 7431.332161180003, + 7645.156358039259, + 7859.483385168152, + 8074.313242566669, + 8289.645930234814, + 8505.481448172595, + 8721.819796380003, + 8938.660974857037, + 9156.004983603709, + 9373.851822620001, + 9592.201491905931, + 9811.053991461487, + 10030.409321286665, + 10250.267481381483, + 10470.62847174593, + 10691.492292380002, + 10912.858943283709, + 11134.72842445704, + 11357.100735900001, + 11579.975877612596, + 11803.353849594816, + 12027.23465184667, + 12251.61828436815, + 12476.50474715926, + 12701.89404022, + 12927.786163550372, + 13154.181117150372, + 13381.07890102, + 13608.479515159268, + 13836.382959568149, + 14064.789234246668, + 14293.69833919482, + 14523.110274412596, + 14753.025039900005, + 14983.442635657042, + 15214.363061683705, + 15445.78631798, + 7183.773669136398, + 7378.165907702323, + 7573.060976537881, + 7768.458875643067, + 7964.359605017878, + 8160.763164662326, + 8357.669554576398, + 8555.078774760099, + 8752.990825213437, + 8951.405705936399, + 9150.323416928995, + 9349.743958191217, + 9549.667329723066, + 9750.093531524542, + 9951.022563595663, + 10152.454425936397, + 10354.389118546771, + 10556.826641426771, + 10759.7669945764, + 10963.210177995661, + 11167.156191684548, + 11371.60503564306, + 11576.556709871218, + 11782.011214368993, + 11987.968549136398, + 12194.428714173435, + 12401.391709480104, + 12608.857535056397, + 12816.82619090233, + 13025.297677017878, + 13234.271993403063, + 13443.74914005788, + 13653.729116982326, + 13864.211924176401, + 14075.197561640103, + 14286.686029373439, + 14498.677327376396, + 7269.415021206401, + 7470.081752785658, + 7671.251314634551, + 7872.923706753067, + 8075.098929141214, + 8277.776981798996, + 8480.957864726402, + 8684.641577923436, + 8888.828121390108, + 9093.5174951264, + 9298.70969913233, + 9504.404733407884, + 9710.602597953068, + 9917.303292767881, + 10124.506817852329, + 10332.213173206399, + 10540.42235883011, + 10749.134374723439, + 10958.349220886397, + 11168.066897318997, + 11378.287404021214, + 11589.010740993068, + 11800.236908234552, + 12011.965905745661, + 12224.197733526402, + 12436.932391576775, + 12650.169879896772, + 12863.910198486401, + 13078.153347345666, + 13292.899326474551, + 13508.148135873065, + 13723.89977554122, + 13940.154245478994, + 14156.911545686406, + 14374.171676163442, + 14591.934636910108, + 14810.200427926398, + 7474.310442432399, + 7686.271261435658, + 7898.734910708549, + 8111.701390251067, + 8325.170700063212, + 8539.142840144998, + 8753.6178104964, + 8968.595611117435, + 9184.076242008106, + 9400.059703168401, + 9616.54599459833, + 9833.535116297884, + 10051.027068267065, + 10269.021850505882, + 10487.519463014329, + 10706.519905792402, + 10926.023178840107, + 11146.029282157435, + 11366.538215744398, + 11587.549979600997, + 11809.064573727217, + 12031.081998123067, + 12253.602252788554, + 12476.62533772366, + 12700.151252928397, + 12924.179998402775, + 13148.711574146773, + 13373.745980160398, + 13599.283216443664, + 13825.32328299655, + 14051.866179819064, + 14278.91190691122, + 14506.460464272996, + 14734.511851904404, + 14963.066069805442, + 15192.123117976107, + 15421.682996416397, + 7220.919033767602, + 7413.830644173524, + 7607.2450848490835, + 7801.162355794268, + 7995.582457009079, + 8190.505388493527, + 8385.931150247601, + 8581.859742271301, + 8778.291164564638, + 8975.2254171276, + 9172.662499960197, + 9370.602413062417, + 9569.045156434266, + 9767.990730075746, + 9967.439133986862, + 10167.390368167598, + 10367.844432617974, + 10568.801327337973, + 10770.261052327598, + 10972.22360758686, + 11174.688993115751, + 11377.657208914265, + 11581.128254982421, + 11785.102131320195, + 11989.5788379276, + 12194.558374804637, + 12400.040741951305, + 12606.025939367597, + 12812.51396705353, + 13019.504825009082, + 13226.998513234268, + 13434.995031729082, + 13643.494380493528, + 13852.496559527604, + 14062.001568831301, + 14272.009408404638, + 14482.520078247599, + 7308.4554441076025, + 7507.504851206859, + 7707.057088575751, + 7907.112156214271, + 8107.670054122415, + 8308.7307823002, + 8510.294340747603, + 8712.360729464635, + 8914.929948451309, + 9118.0019977076, + 9321.57687723353, + 9525.654587029087, + 9730.235127094267, + 9935.31849742908, + 10140.90469803353, + 10346.993728907602, + 10553.585590051309, + 10760.68028146464, + 10968.277803147601, + 11176.3781551002, + 11384.981337322415, + 11594.087349814266, + 11803.696192575753, + 12013.807865606865, + 12224.422368907597, + 12435.539702477978, + 12647.15986631797, + 12859.282860427602, + 13071.908684806864, + 13285.037339455752, + 13498.668824374268, + 13712.803139562418, + 13927.440285020193, + 14142.580260747603, + 14358.223066744638, + 14574.368703011307, + 14791.017169547598, + 7516.761970219602, + 7726.85941136686, + 7937.459682783752, + 8148.5627844702685, + 8360.168716426415, + 8572.277478652199, + 8784.889071147601, + 8998.003493912636, + 9211.620746947308, + 9425.7408302516, + 9640.36374382553, + 9855.489487669087, + 10071.118061782268, + 10287.249466165084, + 10503.883700817529, + 10721.0207657396, + 10938.660660931308, + 11156.80338639264, + 11375.4489421236, + 11594.597328124199, + 11814.248544394419, + 12034.402590934265, + 12255.059467743753, + 12476.219174822862, + 12697.881712171602, + 12920.047079789972, + 13142.715277677971, + 13365.886305835602, + 13589.560164262866, + 13813.736852959753, + 14038.416371926267, + 14263.59872116242, + 14489.283900668197, + 14715.47191044361, + 14942.162750488642, + 15169.356420803308, + 15397.052921387602, + 7257.5376449336, + 7448.968627179525, + 7640.902439695083, + 7833.339082480266, + 8026.278555535081, + 8219.720858859528, + 8413.665992453598, + 8608.1139563173, + 8803.06475045064, + 8998.5183748536, + 9194.474829526196, + 9390.934114468417, + 9587.896229680266, + 9785.361175161746, + 9983.328950912859, + 10181.799556933598, + 10380.772993223974, + 10580.249259783972, + 10780.228356613597, + 10980.710283712862, + 11181.695041081748, + 11383.182628720268, + 11585.173046628419, + 11787.666294806193, + 11990.662373253599, + 12194.16128197064, + 12398.163020957305, + 12602.6675902136, + 12807.674989739531, + 13013.18521953508, + 13219.198279600267, + 13425.71416993508, + 13632.732890539526, + 13840.254441413605, + 14048.278822557302, + 14256.80603397064, + 14465.836075653597, + 7346.969113543602, + 7544.401196162861, + 7742.336109051753, + 7940.773852210269, + 8139.7144256384145, + 8339.157829336194, + 8539.104063303605, + 8739.553127540637, + 8940.50502204731, + 9141.959746823602, + 9343.917301869531, + 9546.377687185088, + 9749.340902770267, + 9952.80694862508, + 10156.775824749531, + 10361.247531143601, + 10566.22206780731, + 10771.69943474064, + 10977.679631943598, + 11184.162659416197, + 11391.148517158415, + 11598.63720517027, + 11806.628723451753, + 12015.123072002863, + 12224.120250823602, + 12433.620259913976, + 12643.623099273975, + 12854.1287689036, + 13065.137268802868, + 13276.648598971751, + 13488.662759410268, + 13701.17975011842, + 13914.199571096198, + 14127.722222343611, + 14341.747703860643, + 14556.276015647307, + 14771.307157703597, + 7558.686744541602, + 7766.920807832861, + 7975.657701393752, + 8184.89742522427, + 8394.639979324413, + 8604.885363694199, + 8815.633578333604, + 9026.884623242639, + 9238.63849842131, + 9450.895203869599, + 9663.654739587531, + 9876.917105575087, + 10090.682301832267, + 10304.95032835908, + 10519.72118515553, + 10734.994872221603, + 10950.77138955731, + 11167.050737162637, + 11383.832915037601, + 11601.117923182199, + 11818.905761596414, + 12037.196430280268, + 12255.989929233752, + 12475.286258456865, + 12695.085417949598, + 12915.387407711974, + 13136.192227743973, + 13357.499878045603, + 13579.310358616864, + 13801.623669457753, + 14024.439810568272, + 14247.758781948418, + 14471.580583598197, + 14695.905215517609, + 14920.732677706645, + 15146.06297016531, + 15371.8960928936, + 7293.6295026344, + 7483.579856720323, + 7674.0330410758825, + 7864.989055701066, + 8056.447900595879, + 8248.409575760326, + 8440.874081194397, + 8633.8414168981, + 8827.311582871438, + 9021.284579114401, + 9215.760405626994, + 9410.739062409217, + 9606.220549461064, + 9802.204866782546, + 9998.69201437366, + 10195.681992234398, + 10393.174800364774, + 10591.17043876477, + 10789.668907434398, + 10988.670206373661, + 11188.174335582547, + 11388.181295061066, + 11588.691084809216, + 11789.703704826994, + 11991.219155114399, + 12193.23743567144, + 12395.758546498102, + 12598.782487594397, + 12802.309258960327, + 13006.338860595884, + 13210.871292501062, + 13415.906554675883, + 13621.444647120325, + 13827.485569834405, + 14034.029322818104, + 14241.075906071439, + 14448.625319594395, + 7384.956029514403, + 7580.770787653658, + 7777.088376062553, + 7973.908794741068, + 8171.232043689216, + 8369.058122906994, + 8567.387032394401, + 8766.218772151436, + 8965.55334217811, + 9165.390742474401, + 9365.730973040332, + 9566.574033875884, + 9767.919924981068, + 9969.768646355882, + 10172.120198000328, + 10374.9745799144, + 10578.331792098112, + 10782.19183455144, + 10986.554707274401, + 11191.420410266997, + 11396.788943529222, + 11602.660307061069, + 11809.034500862552, + 12015.911524933663, + 12223.291379274398, + 12431.174063884775, + 12639.559578764774, + 12848.4479239144, + 13057.839099333667, + 13267.733105022553, + 13478.129940981069, + 13689.02960720922, + 13900.432103706995, + 14112.337430474407, + 14324.745587511441, + 14537.656574818104, + 14751.0703923944, + 7600.084765398401, + 7806.455450833658, + 8013.328966538552, + 8220.705312513068, + 8428.584488757213, + 8636.966495270997, + 8845.8513320544, + 9055.238999107438, + 9265.129496430107, + 9475.5228240224, + 9686.418981884328, + 9897.817970015885, + 10109.719788417067, + 10322.124437087881, + 10535.031916028327, + 10748.442225238401, + 10962.355364718107, + 11176.771334467438, + 11391.6901344864, + 11607.111764774996, + 11823.036225333219, + 12039.463516161068, + 12256.39363725855, + 12473.826588625663, + 12691.762370262399, + 12910.200982168773, + 13129.142424344775, + 13348.586696790398, + 13568.533799505663, + 13788.983732490551, + 14009.936495745067, + 14231.39208926922, + 14453.350513062995, + 14675.811767126408, + 14898.775851459442, + 15122.242766062107, + 15346.212510934402, + 7309.506783815367, + 7498.798850621353, + 7688.5937476969775, + 7878.891475042225, + 8069.6920326571035, + 8260.995420541614, + 8452.80163869575, + 8645.110687119513, + 8837.922565812918, + 9031.23727477594, + 9225.054814008603, + 9419.375183510885, + 9614.198383282801, + 9809.524413324343, + 10005.353273635521, + 10201.684964216327, + 10398.519485066763, + 10595.856836186824, + 10793.697017576516, + 10992.04002923584, + 11190.885871164795, + 11390.234543363376, + 11590.086045831595, + 11790.440378569432, + 11991.2975415769, + 12192.657534854006, + 12394.52035840073, + 12596.886012217092, + 12799.754496303087, + 13003.125810658705, + 13206.999955283949, + 13411.376930178832, + 13616.256735343342, + 13821.639370777482, + 14027.524836481247, + 14233.913132454643, + 14440.804258697664, + 7401.67585360221, + 7596.771549277659, + 7792.370075222743, + 7988.471431437454, + 8185.075617921793, + 8382.182634675764, + 8579.792481699362, + 8777.90515899259, + 8976.520666555454, + 9175.639004387936, + 9375.260172490058, + 9575.384170861804, + 9776.010999503178, + 9977.140658414184, + 10178.773147594824, + 10380.908467045088, + 10583.546616764992, + 10786.68759675451, + 10990.331407013664, + 11194.478047542454, + 11399.127518340863, + 11604.279819408906, + 11809.934950746585, + 12016.092912353886, + 12222.753704230816, + 12429.917326377381, + 12637.583778793572, + 12845.753061479389, + 13054.425174434848, + 13263.600117659926, + 13473.277891154632, + 13683.458494918981, + 13894.141928952946, + 14105.328193256548, + 14317.017287829774, + 14529.209212672631, + 14741.903967785118, + 7618.321166718525, + 7823.863394359005, + 8029.908452269121, + 8236.45634044886, + 8443.507058898227, + 8651.060607617232, + 8859.116986605859, + 9067.676195864116, + 9276.738235392013, + 9486.303105189525, + 9696.37080525668, + 9906.94133559346, + 10118.01469619986, + 10329.590887075896, + 10541.669908221565, + 10754.251759636862, + 10967.336441321793, + 11180.923953276344, + 11395.01429550053, + 11609.607467994349, + 11824.703470757788, + 12040.302303790862, + 12256.403967093573, + 12473.008460665898, + 12690.11578450786, + 12907.725938619462, + 13125.838923000676, + 13344.45473765153, + 13563.573382572016, + 13783.19485776212, + 14003.31916322186, + 14223.946298951238, + 14445.076264950236, + 14666.70906121887, + 14888.844687757124, + 15111.483144565016, + 15334.624431642529, + 7329.194606870002, + 7517.664332795924, + 7706.636888991485, + 7896.112275456668, + 8086.090492191481, + 8276.571539195927, + 8467.555416469999, + 8659.0421240137, + 8851.031661827039, + 9043.524029909997, + 9236.519228262594, + 9430.017256884817, + 9624.018115776667, + 9818.521804938147, + 10013.52832436926, + 10209.037674069998, + 10405.049854040375, + 10601.564864280368, + 10798.582704789998, + 10996.103375569262, + 11194.12687661815, + 11392.65320793666, + 11591.682369524819, + 11791.214361382592, + 11991.24918351, + 12191.786835907042, + 12392.827318573703, + 12594.370631509995, + 12796.41677471593, + 12998.96574819148, + 13202.017551936668, + 13405.572185951483, + 13609.629650235927, + 13814.189944790003, + 14019.253069613704, + 14224.819024707038, + 14430.887810069997, + 7422.416192020003, + 7616.61362567926, + 7811.313889608152, + 8006.5169838066695, + 8202.222908274813, + 8398.431663012594, + 8595.143248020004, + 8792.357663297036, + 8990.074908843708, + 9188.29498466, + 9387.017890745934, + 9586.243627101485, + 9785.972193726668, + 9986.20359062148, + 10186.937817785929, + 10388.17487522, + 10589.914762923709, + 10792.15748089704, + 10994.903029140001, + 11198.151407652598, + 11401.902616434818, + 11606.156655486668, + 11810.913524808151, + 12016.173224399261, + 12221.93575426, + 12428.201114390375, + 12634.96930479037, + 12842.240325459998, + 13050.014176399265, + 13258.290857608148, + 13467.070369086667, + 13676.352710834823, + 13886.137882852594, + 14096.425885140006, + 14307.216717697038, + 14518.510380523705, + 14730.306873620002, + 7640.956032790004, + 7845.4633403692615, + 8050.473478218151, + 8255.98644633667, + 8462.002244724814, + 8668.520873382595, + 8875.542332310002, + 9083.066621507038, + 9291.093740973709, + 9499.623690710001, + 9708.65647071593, + 9918.192080991485, + 10128.230521536669, + 10338.771792351481, + 10549.815893435929, + 10761.362824790003, + 10973.412586413708, + 11185.965178307042, + 11399.020600470001, + 11612.578852902598, + 11826.63993560482, + 12041.203848576668, + 12256.270591818155, + 12471.840165329262, + 12687.91256911, + 12904.487803160378, + 13121.56586748037, + 13339.14676207, + 13557.230486929262, + 13775.817042058152, + 13994.906427456668, + 14214.498643124824, + 14434.593689062594, + 14655.191565270006, + 14876.292271747043, + 15097.895808493708, + 15320.002175510006, + 7364.2329576404, + 7551.222055406323, + 7738.713983441883, + 7926.708741747067, + 8115.206330321879, + 8304.206749166326, + 8493.709998280401, + 8683.716077664101, + 8874.22498731744, + 9065.236727240399, + 9256.751297432997, + 9448.768697895217, + 9641.288928627066, + 9834.311989628544, + 10027.83788089966, + 10221.8666024404, + 10416.398154250772, + 10611.43253633077, + 10806.969748680398, + 11003.00979129966, + 11199.552664188548, + 11396.598367347064, + 11594.146900775218, + 11792.198264472994, + 11990.752458440396, + 12189.80948267744, + 12389.369337184102, + 12589.432021960394, + 12789.99753700633, + 12991.06588232188, + 13192.637057907063, + 13394.711063761884, + 13597.287899886325, + 13800.367566280403, + 14003.950062944103, + 14208.035389877437, + 14412.623547080395, + 7459.349601060403, + 7651.929710239661, + 7845.012649688552, + 8038.59841940707, + 8232.687019395215, + 8427.278449652997, + 8622.372710180403, + 8817.969800977437, + 9014.069722044109, + 9210.672473380399, + 9407.778054986331, + 9605.386466861884, + 9803.497709007068, + 10002.111781421881, + 10201.22868410633, + 10400.848417060402, + 10600.97098028411, + 10801.59637377744, + 11002.7245975404, + 11204.355651572994, + 11406.48953587522, + 11609.126250447065, + 11812.265795288551, + 12015.908170399662, + 12220.053375780395, + 12424.701411430773, + 12629.852277350772, + 12835.505973540396, + 13041.662499999664, + 13248.32185672855, + 13455.484043727069, + 13663.149060995216, + 13871.316908532996, + 14079.987586340409, + 14289.161094417439, + 14498.837432764103, + 14709.0166013804, + 7681.300546716403, + 7883.9444764396585, + 8087.091236432552, + 8290.74082669507, + 8494.893247227214, + 8699.548498028997, + 8904.706579100402, + 9110.367490441437, + 9316.531232052106, + 9523.1978039324, + 9730.367206082332, + 9938.039438501884, + 10146.214501191067, + 10354.892394149882, + 10564.073117378328, + 10773.756670876402, + 10983.943054644107, + 11194.632268681444, + 11405.824312988403, + 11617.519187564998, + 11829.71689241122, + 12042.417427527065, + 12255.620792912554, + 12469.326988567658, + 12683.536014492396, + 12898.247870686773, + 13113.462557150771, + 13329.180073884401, + 13545.400420887667, + 13762.123598160548, + 13979.349605703066, + 14197.078443515218, + 14415.310111596997, + 14634.044609948409, + 14853.281938569442, + 15073.022097460105, + 15293.2650866204, + 7398.7445549456, + 7584.253024551523, + 7770.264324427084, + 7956.778454572268, + 8143.795414987078, + 8331.315205671528, + 8519.3378266256, + 8707.863277849301, + 8896.891559342637, + 9086.422671105598, + 9276.456613138196, + 9466.993385440415, + 9658.032988012264, + 9849.575420853746, + 10041.620683964862, + 10234.168777345598, + 10427.219700995973, + 10620.77345491597, + 10814.830039105596, + 11009.389453564861, + 11204.45169829375, + 11400.016773292264, + 11596.084678560417, + 11792.655414098193, + 11989.728979905598, + 12187.30537598264, + 12385.384602329303, + 12583.9666589456, + 12783.051545831528, + 12982.639262987082, + 13182.729810412264, + 13383.323188107082, + 13584.419396071526, + 13786.018434305603, + 13988.120302809304, + 14190.725001582638, + 14393.832530625596, + 7495.756256635602, + 7686.719041334858, + 7878.184656303751, + 8070.153101542269, + 8262.624377050415, + 8455.598482828198, + 8649.075418875602, + 8843.055185192634, + 9037.537781779309, + 9232.5232086356, + 9428.011465761532, + 9624.002553157083, + 9820.496470822267, + 10017.493218757081, + 10214.992796961527, + 10412.9952054356, + 10611.50044417931, + 10810.508513192637, + 11010.0194124756, + 11210.033142028196, + 11410.549701850417, + 11611.569091942269, + 11813.091312303754, + 12015.116362934861, + 12217.644243835599, + 12420.674955005972, + 12624.208496445975, + 12828.2448681556, + 13032.784070134867, + 13237.826102383751, + 13443.370964902268, + 13649.418657690418, + 13855.969180748196, + 14063.022534075608, + 14270.578717672639, + 14478.637731539304, + 14687.199575675599, + 7721.1183071776, + 7921.89885904486, + 8123.18224118175, + 8324.96845358827, + 8527.257496264414, + 8730.049369210197, + 8933.344072425602, + 9137.141605910638, + 9341.441969665308, + 9546.245163689602, + 9751.551187983532, + 9957.360042547087, + 10163.671727380268, + 10370.486242483083, + 10577.803587855527, + 10785.623763497604, + 10993.94676940931, + 11202.772605590637, + 11412.1012720416, + 11621.932768762197, + 11832.267095752413, + 12043.104253012267, + 12254.444240541754, + 12466.28705834086, + 12678.632706409602, + 12891.481184747976, + 13104.83249335597, + 13318.686632233603, + 13533.043601380865, + 13747.903400797752, + 13963.266030484268, + 14179.131490440419, + 14395.499780666194, + 14612.370901161607, + 14829.744851926642, + 15047.621632961309, + 15266.001244265599, + 7432.7293987856, + 7616.7572402315245, + 7801.287911947084, + 7986.321413932267, + 8171.857746187079, + 8357.89690871153, + 8544.438901505599, + 8731.483724569302, + 8919.03137790264, + 9107.081861505598, + 9295.635175378195, + 9484.691319520416, + 9674.250293932264, + 9864.312098613746, + 10054.87673356486, + 10245.944198785597, + 10437.514494275974, + 10629.58762003597, + 10822.163576065595, + 11015.242362364863, + 11208.823978933748, + 11402.908425772264, + 11597.495702880415, + 11792.58581025819, + 11988.1787479056, + 12184.274515822635, + 12380.8731140093, + 12577.974542465598, + 12775.578801191528, + 12973.685890187084, + 13172.295809452267, + 13371.408558987077, + 13571.024138791525, + 13771.142548865602, + 13971.7637892093, + 14172.887859822635, + 14374.514760705591, + 7531.636158745602, + 7720.98161896486, + 7910.8299094537515, + 8101.18103021227, + 8292.034981240415, + 8483.391762538195, + 8675.251374105601, + 8867.613815942637, + 9060.479088049307, + 9253.8471904256, + 9447.71812307153, + 9642.091885987085, + 9836.968479172267, + 10032.34790262708, + 10228.230156351528, + 10424.6152403456, + 10621.50315460931, + 10818.893899142637, + 11016.787473945598, + 11215.183879018197, + 11414.083114360417, + 11613.485179972264, + 11813.390075853753, + 12013.797802004863, + 12214.7083584256, + 12416.121745115976, + 12618.037962075974, + 12820.457009305603, + 13023.378886804863, + 13226.803594573747, + 13430.731132612267, + 13635.161500920416, + 13840.094699498195, + 14045.530728345604, + 14251.46958746264, + 14457.911276849305, + 14664.855796505599, + 7760.409314173603, + 7959.326488184861, + 8158.746492465751, + 8358.669327016269, + 8559.094991836413, + 8760.023486926197, + 8961.454812285601, + 9163.388967914638, + 9365.825953813306, + 9568.7657699816, + 9772.208416419531, + 9976.153893127086, + 10180.602200104267, + 10385.55333735108, + 10591.007304867528, + 10796.964102653601, + 11003.423730709308, + 11210.386189034634, + 11417.851477629602, + 11625.819596494199, + 11834.290545628417, + 12043.264325032264, + 12252.740934705753, + 12462.720374648861, + 12673.2026448616, + 12884.187745343974, + 13095.675676095972, + 13307.6664371176, + 13520.160028408865, + 13733.15644996975, + 13946.655701800268, + 14160.65778390042, + 14375.162696270194, + 14590.170438909608, + 14805.68101181864, + 15021.694414997308, + 15238.210648445598, + 7466.187489160401, + 7648.734702446324, + 7831.784746001881, + 8015.337619827065, + 8199.39332392188, + 8383.95185828633, + 8569.0132229204, + 8754.577417824103, + 8940.644442997438, + 9127.214298440398, + 9314.286984152997, + 9501.862500135216, + 9689.940846387068, + 9878.522022908544, + 10067.60602969966, + 10257.192866760399, + 10447.282534090773, + 10637.875031690772, + 10828.970359560399, + 11020.568517699658, + 11212.669506108548, + 11405.273324787064, + 11598.379973735216, + 11791.989452952994, + 11986.101762440398, + 12180.716902197439, + 12375.834872224106, + 12571.455672520397, + 12767.57930308633, + 12964.205763921882, + 13161.335055027062, + 13358.967176401882, + 13557.102128046328, + 13755.739909960406, + 13954.880522144105, + 14154.523964597438, + 14354.670237320395, + 7566.989307390401, + 7754.717443129662, + 7942.948409138552, + 8131.682205417068, + 8320.918831965215, + 8510.658288782997, + 8700.900575870402, + 8891.645693227436, + 9082.893640854107, + 9274.6444187504, + 9466.898026916331, + 9659.654465351885, + 9852.913734057069, + 10046.67583303188, + 10240.940762276328, + 10435.7085217904, + 10630.97911157411, + 10826.75253162744, + 11023.028781950396, + 11219.807862542997, + 11417.089773405214, + 11614.874514537065, + 11813.162085938553, + 12011.952487609664, + 12211.2457195504, + 12411.041781760776, + 12611.340674240771, + 12812.142396990399, + 13013.446950009666, + 13215.25433329855, + 13417.564546857066, + 13620.37759068522, + 13823.693464782997, + 14027.512169150403, + 14231.833703787439, + 14436.658068694103, + 14641.9852638704, + 7799.173567704404, + 7996.22736385966, + 8193.783990284552, + 8391.843446979068, + 8590.405733943215, + 8789.470851176997, + 8989.038798680402, + 9189.109576453437, + 9389.683184496107, + 9590.759622808398, + 9792.338891390329, + 9994.420990241884, + 10197.005919363068, + 10400.093678753883, + 10603.684268414327, + 10807.777688344402, + 11012.373938544106, + 11217.473019013438, + 11423.074929752402, + 11629.179670760996, + 11835.787242039214, + 12042.897643587065, + 12250.510875404552, + 12458.62693749166, + 12667.245829848398, + 12876.367552474776, + 13085.992105370771, + 13296.1194885364, + 13506.749701971661, + 13717.882745676548, + 13929.518619651064, + 14141.657323895219, + 14354.298858408996, + 14567.443223192406, + 14781.090418245441, + 14995.24044356811, + 15209.893299160398, + 7499.118826069998, + 7680.185411195923, + 7861.754826591479, + 8043.827072256665, + 8226.402148191475, + 8409.480054395926, + 8593.060790869999, + 8777.144357613699, + 8961.730754627037, + 9146.819981909995, + 9332.412039462593, + 9518.506927284814, + 9705.104645376665, + 9892.205193738142, + 10079.808572369258, + 10267.914781269996, + 10456.523820440372, + 10645.635689880368, + 10835.250389589997, + 11025.367919569258, + 11215.988279818142, + 11407.111470336662, + 11598.737491124812, + 11790.866342182591, + 11983.498023509994, + 12176.632535107039, + 12370.269876973702, + 12564.410049109994, + 12759.053051515928, + 12954.198884191477, + 13149.847547136662, + 13345.999040351482, + 13542.653363835923, + 13739.81051759, + 13937.470501613703, + 14135.633315907035, + 14334.298960469994, + 7601.81570257, + 7787.926513829257, + 7974.540155358149, + 8161.656627156669, + 8349.275929224814, + 8537.398061562595, + 8726.023024170001, + 8915.150817047037, + 9104.781440193707, + 9294.91489361, + 9485.55117729593, + 9676.690291251482, + 9868.332235476668, + 10060.477009971479, + 10253.124614735927, + 10446.275049769998, + 10639.928315073708, + 10834.08441064704, + 11028.743336489993, + 11223.905092602598, + 11419.569678984813, + 11615.737095636665, + 11812.407342558154, + 12009.58041974926, + 12207.256327209998, + 12405.435064940373, + 12604.116632940368, + 12803.301031209998, + 13002.988259749261, + 13203.178318558148, + 13403.871207636666, + 13605.066926984815, + 13806.765476602592, + 14008.966856490002, + 14211.671066647035, + 14414.878107073704, + 14618.587977769997, + 7837.411067770003, + 8032.601486069258, + 8228.29473463815, + 8424.490813476667, + 8621.189722584813, + 8818.391461962594, + 9016.09603161, + 9214.303431527036, + 9413.013661713707, + 9612.226722169997, + 9811.94261289593, + 10012.161333891483, + 10212.882885156667, + 10414.10726669148, + 10615.834478495928, + 10818.06452057, + 11020.797392913704, + 11224.033095527036, + 11427.771628409999, + 11632.012991562593, + 11836.757184984815, + 12042.004208676666, + 12247.75406263815, + 12454.006746869261, + 12660.762261369997, + 12868.020606140373, + 13075.78178118037, + 13284.04578649, + 13492.812622069265, + 13702.082287918149, + 13911.854784036663, + 14122.130110424818, + 14332.908267082592, + 14544.189254010003, + 14755.973071207041, + 14968.259718673704, + 15181.049196409998, + 7531.5234095144, + 7711.109366480324, + 7891.198153715883, + 8071.789771221066, + 8252.884218995878, + 8434.481497040328, + 8616.581605354399, + 8799.184543938098, + 8982.290312791438, + 9165.898911914397, + 9350.010341306994, + 9534.624600969213, + 9719.741690901066, + 9905.361611102546, + 10091.484361573659, + 10278.109942314397, + 10465.238353324772, + 10652.86959460477, + 10841.003666154398, + 11029.640567973658, + 11218.780300062548, + 11408.422862421066, + 11598.568255049217, + 11789.216477946993, + 11980.367531114396, + 12172.021414551442, + 12364.1781282581, + 12556.837672234395, + 12750.00004648033, + 12943.665250995877, + 13137.833285781062, + 13332.50415083588, + 13527.677846160324, + 13723.354371754403, + 13919.533727618104, + 14116.215913751434, + 14313.400930154397, + 7636.115344284402, + 7820.608831063659, + 8005.6051481125505, + 8191.104295431067, + 8377.106273019213, + 8563.611080876995, + 8750.6187190044, + 8938.129187401437, + 9126.142486068107, + 9314.6586150044, + 9503.677574210331, + 9693.199363685886, + 9883.22398343107, + 10073.75143344588, + 10264.78171373033, + 10456.314824284402, + 10648.35076510811, + 10840.88953620144, + 11033.931137564396, + 11227.475569196999, + 11421.522831099217, + 11616.072923271064, + 11811.125845712553, + 12006.681598423662, + 12202.740181404395, + 12399.301594654775, + 12596.36583817477, + 12793.932911964399, + 12992.002816023663, + 13190.575550352552, + 13389.651114951066, + 13589.229509819217, + 13789.310734956995, + 13989.894790364404, + 14190.98167604144, + 14392.571391988104, + 14594.663938204398, + 7875.121814370403, + 8068.44885481366, + 8262.27872552655, + 8456.611426509067, + 8651.446957761213, + 8846.785319282993, + 9042.6265110744, + 9238.970533135436, + 9435.817385466107, + 9633.1670680664, + 9831.01958093633, + 10029.374924075884, + 10228.233097485067, + 10427.59410116388, + 10627.45793511233, + 10827.824599330404, + 11028.694093818107, + 11230.066418575441, + 11431.941573602402, + 11634.319558898997, + 11837.20037446522, + 12040.584020301063, + 12244.470496406553, + 12448.85980278166, + 12653.7519394264, + 12859.146906340771, + 13065.044703524769, + 13271.445330978398, + 13478.348788701664, + 13685.75507669455, + 13893.664194957068, + 14102.07614348922, + 14310.990922290992, + 14520.408531362405, + 14730.328970703442, + 14940.752240314107, + 15151.678340194403, + 7563.4012394936, + 7741.506568299525, + 7920.114727375083, + 8099.225716720266, + 8278.839536335077, + 8458.956186219526, + 8639.575666373601, + 8820.6979767973, + 9002.32311749064, + 9184.4510884536, + 9367.081889686195, + 9550.215521188416, + 9733.851982960268, + 9917.991275001747, + 10102.63339731286, + 10287.7783498936, + 10473.426132743974, + 10659.576745863973, + 10846.2301892536, + 11033.386462912864, + 11221.045566841749, + 11409.20750104027, + 11597.872265508422, + 11787.039860246196, + 11976.710285253599, + 12166.883540530642, + 12357.559626077307, + 12548.738541893596, + 12740.420287979527, + 12932.604864335079, + 13125.292270960266, + 13318.48250785508, + 13512.175575019528, + 13706.371472453606, + 13901.070200157303, + 14096.271758130637, + 14291.976146373598, + 7669.888232533603, + 7852.764394832861, + 8036.143387401752, + 8220.02521024027, + 8404.409863348415, + 8589.297346726198, + 8774.687660373604, + 8960.580804290636, + 9146.97677847731, + 9333.875582933602, + 9521.277217659534, + 9709.181682655086, + 9897.588977920268, + 10086.499103455082, + 10275.912059259532, + 10465.8278453336, + 10656.246461677309, + 10847.167908290643, + 11038.592185173602, + 11230.5192923262, + 11422.94922974842, + 11615.881997440267, + 11809.317595401755, + 12003.256023632865, + 12197.697282133602, + 12392.641370903979, + 12588.088289943971, + 12784.0380392536, + 12980.490618832871, + 13177.446028681756, + 13374.904268800268, + 13572.865339188422, + 13771.329239846202, + 13970.295970773608, + 14169.765531970641, + 14369.737923437311, + 14570.213145173602, + 7912.3058075056015, + 8103.7694700928605, + 8295.735962949753, + 8488.205286076269, + 8681.177439472414, + 8874.652423138195, + 9068.630237073605, + 9263.110881278639, + 9458.09435575331, + 9653.580660497602, + 9849.569795511532, + 10046.06176079509, + 10243.05655634827, + 10440.554182171085, + 10638.554638263531, + 10837.057924625604, + 11036.06404125731, + 11235.572988158641, + 11435.584765329604, + 11636.0993727702, + 11837.116810480416, + 12038.637078460268, + 12240.660176709755, + 12443.186105228866, + 12646.2148640176, + 12849.746453075977, + 13053.780872403975, + 13258.318122001601, + 13463.358201868868, + 13668.901112005751, + 13874.946852412266, + 14081.495423088421, + 14288.546824034198, + 14496.10105524961, + 14704.158116734643, + 14912.71800848931, + 15121.780730513605, + 7594.752316007599, + 7771.377016653525, + 7948.504547569083, + 8126.134908754267, + 8304.26810020908, + 8482.904121933527, + 8662.042973927599, + 8841.6846561913, + 9021.82916872464, + 9202.476511527599, + 9383.626684600194, + 9565.279687942417, + 9747.435521554262, + 9930.094185435746, + 10113.25567958686, + 10296.920004007596, + 10481.087158697974, + 10665.757143657971, + 10850.929958887598, + 11036.605604386861, + 11222.784080155747, + 11409.465386194264, + 11596.649522502417, + 11784.336489080191, + 11972.5262859276, + 12161.218913044639, + 12350.414370431303, + 12540.112658087599, + 12730.313776013532, + 12921.017724209081, + 13112.224502674268, + 13303.934111409082, + 13496.146550413527, + 13688.861819687607, + 13882.079919231306, + 14075.80084904464, + 14270.024609127595, + 7703.134367317602, + 7884.393205136859, + 8066.154873225751, + 8248.419371584268, + 8431.186700212415, + 8614.456859110194, + 8798.229848277602, + 8982.505667714635, + 9167.284317421309, + 9352.5657973976, + 9538.35010764353, + 9724.637248159084, + 9911.427218944267, + 10098.720019999077, + 10286.515651323527, + 10474.814112917598, + 10663.615404781305, + 10852.919526914635, + 11042.7264793176, + 11233.036261990193, + 11423.848874932411, + 11615.164318144265, + 11806.98259162575, + 11999.303695376862, + 12192.1276293976, + 12385.454393687973, + 12579.283988247973, + 12773.616413077601, + 12968.451668176865, + 13163.78975354575, + 13359.630669184267, + 13555.97441509242, + 13752.820991270195, + 13950.170397717604, + 14148.022634434641, + 14346.377701421303, + 14545.2355986776, + 7948.963047175601, + 8138.563331906859, + 8328.666446907753, + 8519.272392178269, + 8710.381167718415, + 8901.992773528198, + 9094.107209607604, + 9286.724475956635, + 9479.84457257531, + 9673.467499463603, + 9867.593256621532, + 10062.221844049087, + 10257.35326174627, + 10452.98750971308, + 10649.124587949524, + 10845.7644964556, + 11042.907235231307, + 11240.55280427664, + 11438.701203591601, + 11637.352433176196, + 11836.506493030416, + 12036.163383154268, + 12236.323103547753, + 12436.985654210861, + 12638.1510351436, + 12839.819246345976, + 13041.990287817976, + 13244.664159559605, + 13447.840861570867, + 13651.520393851752, + 13855.702756402268, + 14060.387949222422, + 14265.575972312197, + 14471.266825671608, + 14677.460509300643, + 14884.15702319931, + 15091.3563673676, + 7625.5766390563995, + 7800.720711542325, + 7976.367614297884, + 8152.517347323066, + 8329.169910617878, + 8506.32530418233, + 8683.9835280164, + 8862.1445821201, + 9040.80846649344, + 9219.975181136399, + 9399.644726048997, + 9579.817101231218, + 9760.492306683067, + 9941.670342404548, + 10123.35120839566, + 10305.5349046564, + 10488.221431186772, + 10671.410787986773, + 10855.102975056398, + 11039.297992395661, + 11223.995840004553, + 11409.196517883063, + 11594.900026031217, + 11781.106364448991, + 11967.8155331364, + 12155.027532093434, + 12342.742361320106, + 12530.960020816397, + 12719.68051058233, + 12908.903830617883, + 13098.62998092306, + 13288.858961497881, + 13479.590772342326, + 13670.825413456403, + 13862.562884840107, + 14054.803186493436, + 14247.546318416396, + 7735.853748636403, + 7915.495261975661, + 8095.639605584552, + 8276.28677946307, + 8457.436783611214, + 8639.089618028996, + 8821.245282716402, + 9003.903777673439, + 9187.06510290011, + 9370.7292583964, + 9554.89624416233, + 9739.566060197883, + 9924.73870650307, + 10110.414183077883, + 10296.592489922328, + 10483.273627036402, + 10670.45759442011, + 10858.144392073435, + 11046.3340199964, + 11235.026478188998, + 11424.221766651215, + 11613.919885383071, + 11804.120834384552, + 11994.824613655666, + 12186.0312231964, + 12377.740663006773, + 12569.952933086775, + 12762.668033436401, + 12955.885964055666, + 13149.606724944551, + 13343.830316103069, + 13538.556737531222, + 13733.785989228994, + 13929.518071196411, + 14125.752983433444, + 14322.490725940108, + 14519.731298716399, + 7985.093533380403, + 8172.830440255659, + 8361.07017740055, + 8549.812744815068, + 8739.058142499212, + 8928.806370452996, + 9119.057428676402, + 9309.811317169439, + 9501.068035932107, + 9692.827584964401, + 9885.089964266332, + 10077.855173837886, + 10271.123213679064, + 10464.89408378988, + 10659.16778417033, + 10853.944314820403, + 11049.223675740108, + 11245.005866929438, + 11441.290888388401, + 11638.078740117, + 11835.369422115215, + 12033.162934383068, + 12231.459276920552, + 12430.258449727664, + 12629.560452804402, + 12829.36528615077, + 13029.672949766773, + 13230.483443652402, + 13431.796767807667, + 13633.612922232554, + 13835.931906927064, + 14038.753721891218, + 14242.078367124994, + 14445.905842628405, + 14650.236148401444, + 14855.069284444106, + 15060.405250756401, + 7655.8742086400025, + 7829.537652965925, + 8003.703927561483, + 8178.37303242667, + 8353.54496756148, + 8529.219732965927, + 8705.39732864, + 8882.0777545837, + 9059.26101079704, + 9236.947097279997, + 9415.136014032596, + 9593.827761054816, + 9773.022338346667, + 9952.719745908144, + 10132.91998373926, + 10313.62305184, + 10494.828950210376, + 10676.537678850369, + 10858.749237759997, + 11041.463626939261, + 11224.680846388146, + 11408.400896106663, + 11592.623776094819, + 11777.349486352594, + 11962.57802688, + 12148.309397677036, + 12334.543598743703, + 12521.280630079998, + 12708.520491685933, + 12896.26318356148, + 13084.508705706668, + 13273.257058121482, + 13462.50824080593, + 13652.262253760004, + 13842.519096983704, + 14033.27877047704, + 14224.541274239995, + 7768.046376490003, + 7946.0705653492605, + 8124.597584478152, + 8303.62743387667, + 8483.160113544816, + 8663.195623482598, + 8843.733963690003, + 9024.77513416704, + 9206.319134913707, + 9388.365965930001, + 9570.915627215934, + 9753.968118771485, + 9937.523440596671, + 10121.58159269148, + 10306.14257505593, + 10491.206387690003, + 10676.773030593711, + 10862.842503767039, + 11049.41480721, + 11236.489940922598, + 11424.067904904818, + 11612.148699156667, + 11800.732323678154, + 11989.818778469264, + 12179.408063530002, + 12369.500178860373, + 12560.095124460373, + 12751.192900330001, + 12942.793506469267, + 13134.896942878153, + 13327.503209556671, + 13520.61230650482, + 13714.224233722598, + 13908.338991210006, + 14102.95657896704, + 14298.076996993708, + 14493.700245289998, + 8020.6972661200025, + 8206.57079513926, + 8392.947154428151, + 8579.826343986671, + 8767.208363814816, + 8955.0932139126, + 9143.480894280001, + 9332.371404917038, + 9521.764745823706, + 9711.660917000005, + 9902.059918445932, + 10092.961750161487, + 10284.36641214667, + 10476.273904401483, + 10668.684226925929, + 10861.597379720002, + 11055.013362783708, + 11248.932176117038, + 11443.353819720001, + 11638.278293592599, + 11833.705597734817, + 12029.63573214667, + 12226.068696828153, + 12423.00449177926, + 12620.443116999997, + 12818.384572490379, + 13016.828858250372, + 13215.775974280003, + 13415.225920579263, + 13615.178697148152, + 13815.634303986668, + 14016.592741094822, + 14218.054008472598, + 14420.01810612001, + 14622.485034037045, + 14825.454792223709, + 15028.927380680003, + 7685.645024758401, + 7857.827840924324, + 8030.513487359882, + 8203.701964065067, + 8377.393271039879, + 8551.587408284327, + 8726.284375798401, + 8901.484173582101, + 9077.186801635438, + 9253.3922599584, + 9430.100548550996, + 9607.311667413218, + 9785.025616545063, + 9963.242395946547, + 10141.96200561766, + 10321.184445558398, + 10500.909715768776, + 10681.137816248769, + 10861.8687469984, + 11043.10250801766, + 11224.839099306548, + 11407.078520865061, + 11589.820772693216, + 11773.065854790993, + 11956.813767158394, + 12141.064509795442, + 12325.818082702102, + 12511.074485878396, + 12696.833719324326, + 12883.095783039877, + 13069.860677025064, + 13257.128401279882, + 13444.898955804325, + 13633.172340598401, + 13821.948555662102, + 14011.227600995438, + 14201.009476598398, + 7799.712250878404, + 7976.11911525766, + 8153.028809906552, + 8330.44133482507, + 8508.356690013215, + 8686.774875470996, + 8865.695891198402, + 9045.119737195435, + 9225.046413462109, + 9405.475919998402, + 9586.408256804329, + 9767.843423879885, + 9949.781421225067, + 10132.222248839882, + 10315.165906724327, + 10498.6123948784, + 10682.561713302108, + 10867.013861995441, + 11051.968840958396, + 11237.426650190995, + 11423.387289693215, + 11609.85075946507, + 11796.817059506551, + 11984.286189817663, + 12172.258150398398, + 12360.732941248778, + 12549.710562368773, + 12739.1910137584, + 12929.174295417664, + 13119.66040734655, + 13310.649349545067, + 13502.141122013221, + 13694.135724750997, + 13886.633157758404, + 14079.633421035438, + 14273.136514582102, + 14467.1424383984, + 8055.774245394401, + 8239.78439655766, + 8424.297377990551, + 8609.313189693068, + 8794.831831665213, + 8980.853303906993, + 9167.377606418402, + 9354.404739199437, + 9541.934702250106, + 9729.967495570401, + 9918.503119160328, + 10107.541573019886, + 10297.082857149066, + 10487.126971547885, + 10677.673916216332, + 10868.723691154404, + 11060.276296362106, + 11252.33173183944, + 11444.8899975864, + 11637.951093602998, + 11831.51501988922, + 12025.58177644507, + 12220.15136327055, + 12415.22378036566, + 12610.799027730398, + 12806.877105364778, + 13003.458013268773, + 13200.541751442397, + 13398.128319885664, + 13596.21771859855, + 13794.80994758107, + 13993.90500683322, + 14193.502896354994, + 14393.603616146405, + 14594.207166207441, + 14795.313546538107, + 14996.922757138404, + 7714.889087411601, + 7885.591275417524, + 8056.796293693083, + 8228.504142238267, + 8400.71482105308, + 8573.428330137525, + 8746.644669491601, + 8920.3638391153, + 9094.58583900864, + 9269.310669171598, + 9444.538329604195, + 9620.268820306415, + 9796.502141278264, + 9973.238292519745, + 10150.477274030858, + 10328.219085811597, + 10506.463727861976, + 10685.21120018197, + 10864.4615027716, + 11044.214635630862, + 11224.470598759744, + 11405.229392158266, + 11586.491015826417, + 11768.255469764194, + 11950.522753971594, + 12133.292868448638, + 12316.565813195304, + 12500.341588211597, + 12684.620193497532, + 12869.40162905308, + 13054.685894878265, + 13240.47299097308, + 13426.762917337526, + 13613.555673971601, + 13800.8512608753, + 13988.649678048634, + 14176.950925491596, + 7830.851371801601, + 8005.640911700859, + 8180.93328186975, + 8356.72848230827, + 8533.026513016417, + 8709.827373994194, + 8887.131065241603, + 9064.937586758635, + 9243.246938545308, + 9422.0591206016, + 9601.37413292753, + 9781.191975523085, + 9961.512648388269, + 10142.336151523084, + 10323.662484927529, + 10505.491648601603, + 10687.82364254531, + 10870.658466758638, + 11053.996121241598, + 11237.8366059942, + 11422.179921016419, + 11607.026066308268, + 11792.37504186975, + 11978.226847700864, + 12164.5814838016, + 12351.438950171974, + 12538.799246811968, + 12726.662373721598, + 12915.028330900863, + 13103.897118349749, + 13293.268736068268, + 13483.143184056418, + 13673.520462314193, + 13864.400570841603, + 14055.783509638637, + 14247.669278705303, + 14440.0578780416, + 8090.324471203601, + 8272.47124451086, + 8455.120848087749, + 8638.273281934267, + 8821.928546050414, + 9006.086640436195, + 9190.747565091602, + 9375.911320016636, + 9561.577905211308, + 9747.7473206756, + 9934.41956640953, + 10121.594642413089, + 10309.272548686266, + 10497.45328522908, + 10686.136852041525, + 10875.323249123605, + 11065.012476475307, + 11255.20453409664, + 11445.899421987599, + 11637.097140148197, + 11828.79768857842, + 12021.001067278265, + 12213.70727624775, + 12406.91631548686, + 12600.6281849956, + 12794.842884773976, + 12989.560414821972, + 13184.780775139598, + 13380.503965726863, + 13576.729986583749, + 13773.458837710263, + 13970.69051910642, + 14168.425030772192, + 14366.662372707608, + 14565.402544912642, + 14764.645547387307, + 14964.391380131603, + 7743.6063965996, + 7912.827956445524, + 8082.552346561083, + 8252.779566946268, + 8423.509617601081, + 8594.74249852553, + 8766.478209719598, + 8938.7167511833, + 9111.45812291664, + 9284.702324919599, + 9458.449357192196, + 9632.699219734415, + 9807.451912546267, + 9982.707435627746, + 10158.46578897886, + 10334.726972599601, + 10511.490986489975, + 10688.75783064997, + 10866.527505079599, + 11044.80000977886, + 11223.57534474775, + 11402.85350998626, + 11582.634505494416, + 11762.918331272193, + 11943.704987319597, + 12124.99447363664, + 12306.786790223303, + 12489.081937079594, + 12671.879914205527, + 12855.180721601084, + 13038.984359266266, + 13223.290827201085, + 13408.100125405525, + 13593.412253879605, + 13779.227212623302, + 13965.545001636638, + 14152.365620919598, + 7861.463739259601, + 8034.63595467886, + 8208.31100036775, + 8382.488876326268, + 8557.169582554416, + 8732.353119052194, + 8908.039485819601, + 9084.228682856636, + 9260.920710163307, + 9438.115567739602, + 9615.813255585528, + 9794.013773701085, + 9972.71712208627, + 10151.923300741082, + 10331.632309665527, + 10511.844148859602, + 10692.55881832331, + 10873.776318056638, + 11055.4966480596, + 11237.7198083322, + 11420.445798874414, + 11603.674619686262, + 11787.406270767753, + 11971.640752118865, + 12156.3780637396, + 12341.618205629977, + 12527.36117778997, + 12713.606980219598, + 12900.355612918866, + 13087.607075887752, + 13275.361369126267, + 13463.61849263442, + 13652.378446412196, + 13841.641230459603, + 14031.40684477664, + 14221.675289363302, + 14412.446564219597, + 8124.347943547603, + 8304.631338998859, + 8485.41756471975, + 8666.706620710269, + 8848.498506970413, + 9030.793223500195, + 9213.590770299601, + 9396.891147368638, + 9580.694354707308, + 9765.0003923156, + 9949.80926019353, + 10135.120958341087, + 10320.935486758266, + 10507.25284544508, + 10694.07303440153, + 10881.3960536276, + 11069.221903123307, + 11257.550582888638, + 11446.382092923603, + 11635.716433228194, + 11825.553603802418, + 12015.893604646268, + 12206.736435759753, + 12398.082097142864, + 12589.9305887956, + 12782.281910717973, + 12975.136062909969, + 13168.493045371597, + 13362.352858102864, + 13556.715501103748, + 13751.580974374265, + 13946.94927791442, + 14142.820411724193, + 14339.194375803607, + 14536.07117015264, + 14733.450794771306, + 14931.3332496596, + 7771.7969523224, + 7939.537884008324, + 8107.7816459638825, + 8276.528238189068, + 8445.777660683878, + 8615.529913448327, + 8785.7849964824, + 8956.5429097861, + 9127.80365335944, + 9299.567227202398, + 9471.833631314998, + 9644.602865697216, + 9817.874930349068, + 9991.649825270546, + 10165.92755046166, + 10340.708105922398, + 10515.991491652774, + 10691.777707652773, + 10868.0667539224, + 11044.858630461658, + 11222.153337270547, + 11399.950874349062, + 11578.251241697217, + 11757.054439314994, + 11936.3604672024, + 12116.169325359435, + 12296.4810137861, + 12477.2955324824, + 12658.612881448329, + 12840.43306068388, + 13022.756070189065, + 13205.581909963881, + 13388.910580008325, + 13572.742080322403, + 13757.076410906106, + 13941.913571759438, + 14127.253562882397, + 7891.5493532524015, + 8063.10424419166, + 8235.16196540055, + 8407.722516879068, + 8580.785898627215, + 8754.352110644995, + 8928.421152932402, + 9102.993025489435, + 9278.067728316106, + 9453.645261412401, + 9629.725624778333, + 9806.308818413883, + 9983.394842319069, + 10160.983696493879, + 10339.075380938326, + 10517.6698956524, + 10696.767240636105, + 10876.367415889436, + 11056.470421412401, + 11237.076257204999, + 11418.184923267212, + 11599.796419599068, + 11781.910746200554, + 11964.527903071665, + 12147.647890212398, + 12331.270707622773, + 12515.396355302772, + 12700.0248332524, + 12885.156141471663, + 13070.790279960549, + 13256.927248719066, + 13443.567047747218, + 13630.709677044993, + 13818.355136612405, + 14006.503426449437, + 14195.154546556107, + 14384.308496932399, + 8157.8446624264025, + 8336.264680021659, + 8515.18752788655, + 8694.613206021068, + 8874.541714425213, + 9054.973053098995, + 9235.907222042402, + 9417.344221255436, + 9599.284050738106, + 9781.7267104904, + 9964.672200512328, + 10148.120520803885, + 10332.071671365065, + 10516.525652195882, + 10701.48246329633, + 10886.9421046664, + 11072.904576306108, + 11259.369878215439, + 11446.338010394402, + 11633.808972842995, + 11821.782765561213, + 12010.25938854906, + 12199.238841806551, + 12388.721125333659, + 12578.706239130399, + 12769.194183196772, + 12960.184957532769, + 13151.6785621384, + 13343.674997013664, + 13536.174262158549, + 13729.176357573062, + 13922.681283257214, + 14116.689039210993, + 14311.199625434405, + 14506.21304192744, + 14701.729288690107, + 14897.7483657224, + 7799.460754580001, + 7965.721058105924, + 8132.484191901483, + 8299.750155966669, + 8467.518950301479, + 8635.790574905926, + 8804.565029779998, + 8973.8423149237, + 9143.62243033704, + 9313.905376019999, + 9484.691151972595, + 9655.979758194817, + 9827.771194686666, + 10000.065461448145, + 10172.86255847926, + 10346.16248578, + 10519.965243350374, + 10694.270831190373, + 10869.079249299997, + 11044.390497679262, + 11220.204576328151, + 11396.521485246665, + 11573.34122443482, + 11750.663793892592, + 11928.48919362, + 12106.817423617042, + 12285.648483883704, + 12464.982374420002, + 12644.81909522593, + 12825.158646301483, + 13006.00102764667, + 13187.346239261482, + 13369.194281145928, + 13551.545153300005, + 13734.398855723706, + 13917.755388417041, + 14101.614751379999, + 7921.108213780002, + 8091.045780239261, + 8261.486176968152, + 8432.42940396667, + 8603.875461234815, + 8775.824348772594, + 8948.276066580001, + 9121.230614657037, + 9294.687993003708, + 9468.64820162, + 9643.11124050593, + 9818.077109661486, + 9993.545809086669, + 10169.517338781481, + 10345.991698745931, + 10522.968888980004, + 10700.448909483712, + 10878.43176025704, + 11056.917441300002, + 11235.905952612598, + 11415.397294194814, + 11595.391466046669, + 11775.888468168154, + 11956.888300559262, + 12138.390963220003, + 12320.396456150373, + 12502.904779350376, + 12685.915932820002, + 12869.429916559266, + 13053.44673056815, + 13237.966374846668, + 13422.988849394824, + 13608.514154212597, + 13794.542289300007, + 13981.073254657043, + 14168.107050283708, + 14355.643676180001, + 8190.814627840004, + 8367.371267579261, + 8544.43073758815, + 8721.99303786667, + 8900.058168414815, + 9078.626129232598, + 9257.696920320002, + 9437.270541677039, + 9617.346993303709, + 9797.926275200001, + 9979.00838736593, + 10160.593329801484, + 10342.68110250667, + 10525.271705481486, + 10708.36513872593, + 10891.961402240007, + 11076.060496023709, + 11260.662420077038, + 11445.767174400002, + 11631.374758992595, + 11817.48517385482, + 12004.098418986669, + 12191.214494388156, + 12378.833400059264, + 12566.955136000004, + 12755.579702210376, + 12944.707098690373, + 13134.337325440003, + 13324.470382459265, + 13515.106269748154, + 13706.244987306667, + 13897.886535134825, + 14090.030913232597, + 14282.678121600007, + 14475.828160237046, + 14669.481029143708, + 14863.636728320003, + 7826.597803372401, + 7991.3774787383245, + 8156.659984373883, + 8322.445320279066, + 8488.733486453879, + 8655.524482898327, + 8822.818309612398, + 8990.614966596102, + 9158.91445384944, + 9327.7167713724, + 9497.021919164998, + 9666.829897227217, + 9837.140705559066, + 10007.954344160546, + 10179.27081303166, + 10351.090112172398, + 10523.412241582775, + 10696.237201262767, + 10869.564991212399, + 11043.39561143166, + 11217.729061920547, + 11392.565342679069, + 11567.904453707217, + 11743.746395004993, + 11920.091166572398, + 12096.938768409434, + 12274.289200516107, + 12452.1424628924, + 12630.49855553833, + 12809.357478453883, + 12988.719231639068, + 13168.583815093882, + 13348.951228818327, + 13529.821472812408, + 13711.194547076104, + 13893.070451609441, + 14075.449186412394, + 7950.140320842404, + 8118.4605628216605, + 8287.283635070551, + 8456.609537589069, + 8626.438270377215, + 8796.769833434997, + 8967.604226762402, + 9138.941450359436, + 9310.781504226108, + 9483.1243883624, + 9655.970102768333, + 9829.318647443884, + 10003.170022389066, + 10177.524227603883, + 10352.381263088331, + 10527.741128842403, + 10703.603824866112, + 10879.969351159438, + 11056.837707722401, + 11234.208894554999, + 11412.082911657215, + 11590.459759029069, + 11769.339436670556, + 11948.721944581663, + 12128.607282762403, + 12308.995451212775, + 12489.886449932776, + 12671.280278922402, + 12853.176938181663, + 13035.576427710554, + 13218.478747509069, + 13401.883897577223, + 13585.791877914999, + 13770.202688522408, + 13955.11632939944, + 14140.532800546109, + 14326.452101962403, + 8223.257839788404, + 8397.951101671659, + 8573.147193824552, + 8748.846116247068, + 8925.047868939217, + 9101.752451900998, + 9278.959865132403, + 9456.67010863344, + 9634.883182404108, + 9813.599086444401, + 9992.817820754331, + 10172.539385333888, + 10352.763780183068, + 10533.491005301881, + 10714.721060690328, + 10896.453946348405, + 11078.689662276109, + 11261.428208473442, + 11444.669584940402, + 11628.413791676998, + 11812.660828683216, + 11997.41069595907, + 12182.663393504556, + 12368.418921319664, + 12554.6772794044, + 12741.438467758777, + 12928.702486382774, + 13116.4693352764, + 13304.739014439667, + 13493.511523872554, + 13682.78686357507, + 13872.56503354722, + 14062.846033789, + 14253.629864300405, + 14444.916525081442, + 14636.706016132111, + 14828.9983374524, + 7829.5805177535685, + 7994.195678747881, + 8159.313670011828, + 8324.934491545402, + 8491.058143348602, + 8657.68462542144, + 8824.8139377639, + 8992.44608037599, + 9160.581053257716, + 9329.218856409065, + 9498.35948983005, + 9668.002953520661, + 9838.149247480897, + 10008.798371710767, + 10179.950326210268, + 10351.605110979397, + 10523.762726018162, + 10696.423171326547, + 10869.586446904563, + 11043.252552752212, + 11217.421488869491, + 11392.093255256394, + 11567.267851912939, + 11742.945278839103, + 11919.125536034895, + 12095.808623500325, + 12272.994541235379, + 12450.683289240062, + 12628.874867514382, + 12807.569276058317, + 12986.766514871893, + 13166.466583955098, + 13346.669483307931, + 13527.375212930396, + 13708.583772822487, + 13890.295162984208, + 14072.509383415552, + 7953.33359742202, + 8121.474136537515, + 8290.117505922644, + 8459.263705577401, + 8628.912735501784, + 8799.064595695803, + 8969.719286159447, + 9140.87680689272, + 9312.53715789563, + 9484.700339168161, + 9657.366350710328, + 9830.535192522118, + 10004.206864603539, + 10178.381366954593, + 10353.058699575276, + 10528.238862465589, + 10703.921855625535, + 10880.107679055101, + 11056.7963327543, + 11233.987816723136, + 11411.682130961592, + 11589.87927546968, + 11768.5792502474, + 11947.782055294754, + 12127.48769061173, + 12307.696156198339, + 12488.407452054576, + 12669.621578180442, + 12851.338534575943, + 13033.558321241067, + 13216.280938175823, + 13399.506385380211, + 13583.234662854224, + 13767.465770597875, + 13952.199708611148, + 14137.43647689405, + 14323.176075446581, + 8226.830128325233, + 8401.316348058854, + 8576.305398062113, + 8751.797278334998, + 8927.791988877509, + 9104.289529689657, + 9281.28990077143, + 9458.79310212283, + 9636.799133743869, + 9815.307995634526, + 9994.319687794825, + 10173.834210224744, + 10353.851562924294, + 10534.371745893475, + 10715.394759132285, + 10896.92060264073, + 11078.949276418802, + 11261.480780466496, + 11444.515114783826, + 11628.052279370784, + 11812.092274227374, + 11996.63509935359, + 12181.68075474944, + 12367.22924041492, + 12553.280556350022, + 12739.834702554765, + 12926.891679029131, + 13114.451485773123, + 13302.514122786752, + 13491.079590070009, + 13680.147887622885, + 13869.719015445407, + 14059.79297353755, + 14250.36976189933, + 14441.449380530732, + 14633.031829431762, + 14825.117108602422, + 8430.77783127, + 8546.038720395925, + 8661.802439791481, + 8778.068989456668, + 8894.838369391478, + 9012.110579595927, + 9129.885620070003, + 9248.163490813702, + 9366.944191827039, + 9486.227723109998, + 9606.014084662595, + 9726.303276484818, + 9847.095298576667, + 9968.390150938147, + 10090.187833569262, + 10212.488346469998, + 10335.291689640375, + 10458.597863080375, + 10582.406866789997, + 10706.718700769261, + 10831.533365018147, + 10956.850859536666, + 11082.671184324816, + 11208.994339382594, + 11335.820324709995, + 11463.14914030704, + 11590.980786173704, + 11719.315262309996, + 11848.152568715926, + 11977.49270539148, + 12107.335672336667, + 12237.681469551479, + 12368.530097035931, + 12499.881554790003, + 12631.735842813707, + 12764.092961107033, + 12896.952909669999, + 8617.699519770002, + 8731.929243029259, + 8846.661796558148, + 8961.89718035667, + 9077.635394424815, + 9193.876438762594, + 9310.620313370002, + 9427.867018247034, + 9545.616553393707, + 9663.868918809996, + 9782.624114495926, + 9901.882140451484, + 10021.64299667667, + 10141.906683171479, + 10262.673199935925, + 10383.94254697, + 10505.714724273708, + 10627.98973184704, + 10750.76756969, + 10874.048237802597, + 10997.831736184815, + 11122.118064836663, + 11246.907223758148, + 11372.199212949261, + 11497.994032409995, + 11624.291682140376, + 11751.092162140369, + 11878.395472409995, + 12006.201612949262, + 12134.510583758145, + 12263.322384836667, + 12392.637016184815, + 12522.454477802594, + 12652.774769690004, + 12783.597891847037, + 12914.923844273702, + 13046.752626969997, + 9004.899546570003, + 9117.273171269257, + 9230.149626238148, + 9343.528911476667, + 9457.411026984815, + 9571.795972762593, + 9686.683748809999, + 9802.074355127037, + 9917.967791713707, + 10034.364058570001, + 10151.263155695926, + 10268.665083091486, + 10386.569840756667, + 10504.97742869148, + 10623.887846895926, + 10743.301095370001, + 10863.217174113706, + 10983.636083127038, + 11104.55782241, + 11225.982391962594, + 11347.909791784814, + 11470.340021876666, + 11593.273082238155, + 11716.708972869259, + 11840.647693769999, + 11965.089244940375, + 12090.033626380371, + 12215.480838090001, + 12341.430880069263, + 12467.88375231815, + 12594.839454836667, + 12722.297987624817, + 12850.259350682596, + 12978.723544010001, + 13107.690567607042, + 13237.160421473704, + 13367.133105610003 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 5.538223111673924, + "volume": 1.514164 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC90A_MP.json b/examples/NyleC90A_MP.json new file mode 100644 index 0000000..768a7dc --- /dev/null +++ b/examples/NyleC90A_MP.json @@ -0,0 +1,170 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0012618033333333333, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 305.3722222222222 + ], + "heat_source_temperature": [ + 277.59444444444443, + 288.7055555555555, + 299.81666666666666, + 310.92777777777775, + 327.59444444444443, + 338.7055555555555 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 21130.0000002, + 20980.00000136, + 20279.99999728, + 19899.99999632, + 19199.99999711, + 18740.00000001, + 29019.99999946, + 28189.99999858, + 27370.000003139998, + 26579.999995600003, + 25390.000001760003, + 24580.0000005, + 39400.00000159, + 37689.999998939995, + 36340.000001759996, + 34760.000003149995, + 32489.999994060003, + 30979.9999947, + 45769.999999140004, + 43659.99999711, + 41710.00000416, + 39439.999999399995, + 36269.9999955, + 34159.999998299994 + ], + "input_power": [ + 4410.0, + 6040.0, + 7240.0, + 9140.0, + 12230.0, + 14730.0, + 4780.0, + 6610.0, + 7740.0, + 9400.0, + 12470.0, + 14750.0, + 5510.0, + 6660.0, + 8440.0, + 9950.0, + 13060.0, + 15350.0, + 6780.0, + 7790.0, + 8810.0, + 10010.0, + 11910.0, + 13350.0 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.254000980880113, + "volume": 1.8169968 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/NyleC90A_SP.json b/examples/NyleC90A_SP.json new file mode 100644 index 0000000..5606385 --- /dev/null +++ b/examples/NyleC90A_SP.json @@ -0,0 +1,4171 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 19887.839736203907, + 19958.527391632124, + 20015.84236068992, + 20060.5888750308, + 20093.57574508667, + 20115.616360067794, + 20127.52868796275, + 20130.1352755385, + 20124.26324834041, + 20110.744310692124, + 20090.414745695703, + 20064.115415231547, + 20032.691759958405, + 19996.99379931342, + 19957.87613151204, + 19916.197933548126, + 19872.822961193873, + 19828.619548999835, + 19784.460610294922, + 19741.223637186406, + 19699.79070055991, + 19661.048450079445, + 19625.888114187364, + 19595.205500104355, + 19569.900993829506, + 19550.879560140223, + 19539.050742592317, + 19535.328663519922, + 19540.63202403553, + 19555.884104030025, + 19582.012762172617, + 19619.950435910883, + 19670.634141470782, + 19735.00547385658, + 19814.010606850978, + 19908.60029301496, + 20019.729863687906, + 20129.31737862413, + 20226.241281668208, + 20308.391998695137, + 20376.6594672096, + 20431.938203494603, + 20475.127302611563, + 20507.13043840017, + 20528.855863478588, + 20541.21640924324, + 20545.12948586895, + 20541.517082308917, + 20531.305766294674, + 20515.426684336097, + 20494.81556172147, + 20470.41270251739, + 20443.16298956884, + 20414.015884499146, + 20383.92542771002, + 20353.8502383815, + 20324.753514471977, + 20297.603032718256, + 20273.371148635437, + 20253.034796517037, + 20237.575489434872, + 20227.97931923917, + 20225.236956558467, + 20230.34365079971, + 20244.299230148186, + 20268.10810156752, + 20302.7792507997, + 20349.32624236512, + 20408.76721956249, + 20482.124904468867, + 20570.426597939684, + 20674.704179608758, + 20795.994107888248, + 20935.337419968626, + 19918.601688049526, + 19988.81274229822, + 20045.66575561219, + 20089.964155678128, + 20122.51594896113, + 20144.133720704627, + 20155.6346349304, + 20157.84043443862, + 20151.577440807785, + 20137.676554394766, + 20116.973254334815, + 20090.30759854149, + 20058.524223706758, + 20022.47234530092, + 19983.005757572635, + 19940.98283354893, + 19897.266525035207, + 19852.724362615183, + 19808.228455650977, + 19764.655492283022, + 19722.886739430178, + 19683.808042789595, + 19648.309826836823, + 19617.287094825744, + 19591.639428788636, + 19572.270989536068, + 19560.090516657077, + 19556.01132851895, + 19560.95132226738, + 19575.832973826437, + 19601.58333789851, + 19639.134047964402, + 19689.421316283206, + 19753.3859338924, + 19831.97327060785, + 19926.133275023756, + 20036.820474512686, + 20157.973379695086, + 20254.270280051867, + 20335.81663621778, + 20403.501401318452, + 20458.218107257857, + 20500.864864718373, + 20532.34436316069, + 20553.563870823884, + 20565.43523472537, + 20568.874880660947, + 20564.803813204748, + 20554.147615709287, + 20537.836450305414, + 20516.805057902366, + 20491.99275818771, + 20464.34344962738, + 20434.805609465693, + 20404.332293725296, + 20373.881137207216, + 20344.4143534908, + 20316.89873493381, + 20292.30565267231, + 20271.611056620804, + 20255.79547547204, + 20245.844016697236, + 20242.746366545885, + 20247.496790045898, + 20261.094131003523, + 20284.541812003343, + 20318.847834408338, + 20365.024778359842, + 20424.089802777537, + 20497.06464535944, + 20584.97562258196, + 20688.853629699865, + 20809.73414074628, + 20948.65720853266, + 20197.672272535438, + 20263.616178353695, + 20316.334628703848, + 20356.62381557129, + 20385.28450971979, + 20403.122060691476, + 20410.94639680678, + 20409.57202516458, + 20399.81803164205, + 20382.50808089474, + 20358.470416356573, + 20328.537860239805, + 20293.54781353507, + 20254.342256011372, + 20211.76774621603, + 20166.675421474767, + 20119.92099789165, + 20072.364770349086, + 20024.871612507875, + 19978.31097680715, + 19933.556894464422, + 19891.487975475535, + 19852.987408614725, + 19818.942961434564, + 19790.246980265976, + 19767.796390218267, + 19752.49269517908, + 19745.241977814465, + 19746.95489956874, + 19758.546700664683, + 19780.937200103363, + 19815.050795664232, + 19861.816463905092, + 19922.167760162105, + 19997.042818549835, + 20087.384351961126, + 20194.13965206723, + 20418.089017430706, + 20508.77202240134, + 20584.908988398885, + 20647.38000913764, + 20697.069757110272, + 20734.867483587837, + 20761.667018619693, + 20778.36677103361, + 20785.869728435682, + 20785.08345721039, + 20776.92010252055, + 20762.296388307353, + 20742.13361729033, + 20717.35767096741, + 20688.899009614826, + 20657.69267228721, + 20624.67827681754, + 20590.800019817158, + 20557.006676675763, + 20524.251601561406, + 20493.492727420493, + 20465.69256597782, + 20441.818207736513, + 20422.841321978056, + 20409.73815676231, + 20403.489538927464, + 20405.080874090116, + 20415.50214664519, + 20435.747919765952, + 20466.81733540406, + 20509.714114289523, + 20565.446555930692, + 20635.027538614308, + 20719.47451940543, + 20819.809534147527, + 20937.05919746239, + 21072.25470275016, + 20480.740352285757, + 20542.45595358877, + 20591.080082671997, + 20627.40169581951, + 20652.214328093738, + 20666.316093335518, + 20670.509684163957, + 20665.602371976605, + 20652.406006949324, + 20631.737018036347, + 20604.416412970273, + 20571.26977826205, + 20533.127279200988, + 20490.823659854745, + 20445.198243069382, + 20397.09493046924, + 20347.3622024571, + 20296.853118214076, + 20246.425315699602, + 20196.9410116515, + 20149.267001585977, + 20104.274659797546, + 20062.839939359168, + 20025.843372122017, + 19994.17006871577, + 19968.70971854837, + 19950.356589806175, + 19940.009529453888, + 19938.57196323453, + 19946.95189566954, + 19966.061910058685, + 19996.81916848009, + 20040.145411790254, + 20096.96695962399, + 20168.214710394575, + 20254.82414129352, + 20357.735308290747, + 20682.210964535247, + 20767.33077858827, + 20838.11037069245, + 20895.42097515076, + 20940.138405044552, + 20973.143052233572, + 20995.31988735583, + 21007.558459827807, + 21010.752897844275, + 21005.801908378384, + 20993.608777181642, + 20975.081368783915, + 20951.13212649342, + 20922.678072396764, + 20890.64080735886, + 20855.946511023027, + 20819.525941810916, + 20782.314436922563, + 20745.25191233634, + 20709.28286280898, + 20675.356361875576, + 20644.426061849586, + 20617.450193822853, + 20595.391567665498, + 20579.217572026097, + 20569.900174331517, + 20568.415920787018, + 20575.745936376217, + 20592.87592486106, + 20620.796168781908, + 20660.501529457415, + 20712.991446984648, + 20779.269940239, + 20860.34560687422, + 20957.231623322477, + 21070.945744794204, + 21202.510305278243, + 20767.824659327558, + 20825.349054951974, + 20869.917359386593, + 20902.311293214174, + 20923.31715579582, + 20933.725825271045, + 20934.332758557674, + 20925.93799135187, + 20909.34613812824, + 20885.366392139662, + 20854.812525417445, + 20818.502888771178, + 20777.26041178889, + 20731.912602836914, + 20683.291549059966, + 20632.23391638112, + 20579.580949501775, + 20526.17847190177, + 20472.876885839192, + 20420.531172350584, + 20370.000891250802, + 20322.15018113306, + 20277.847759368975, + 20237.96692210841, + 20203.385544279758, + 20174.986079589584, + 20153.65556052299, + 20140.285598343304, + 20135.77238309228, + 20141.016683589998, + 20156.92384743492, + 20184.403801003864, + 20224.37104945198, + 20277.74467671282, + 20345.448345498255, + 20428.41029729857, + 20527.563352382324, + 20950.374033248616, + 21029.978906168166, + 21095.450685969583, + 21147.65174754451, + 21187.449044563018, + 21215.714109473487, + 21233.323053502634, + 21241.156566655623, + 21240.099917715892, + 21231.04295424528, + 21214.88010258398, + 21192.510367850547, + 21164.83733394185, + 21132.769163533216, + 21097.218598078216, + 21059.10295780884, + 21019.34414173545, + 20978.868627646734, + 20938.60747210978, + 20899.496310469975, + 20862.47535685109, + 20828.48940415526, + 20798.48782406305, + 20773.424567033242, + 20754.25816230307, + 20741.951717888103, + 20737.472920582273, + 20741.794035957915, + 20755.891908365596, + 20780.747960934408, + 20817.348195571634, + 20866.68319296309, + 20929.748112572815, + 21007.542692643226, + 21101.0712501952, + 21211.342681027818, + 21339.370459718648, + 21058.94231550726, + 21112.310859211182, + 21152.86009053696, + 21181.36449436605, + 21198.603134358258, + 21205.359652951738, + 21202.422271362993, + 21190.583789586937, + 21170.641586396785, + 21143.397619344134, + 21109.658424758945, + 21070.235117749533, + 21025.943392202567, + 20977.603520783086, + 20926.040354934466, + 20872.08332487847, + 20816.56643961522, + 20760.328286923155, + 20704.212033359123, + 20649.065424258304, + 20595.740783734233, + 20545.09501467883, + 20497.989598762364, + 20455.290596433424, + 20417.868646919036, + 20386.598968224494, + 20362.36135713352, + 20346.04018920818, + 20338.524418788867, + 20340.707578994374, + 20353.48778172184, + 20377.767717646762, + 20414.454656222973, + 20464.460445682682, + 20528.70151303647, + 20608.098864073298, + 20703.578083360382, + 21222.61142563007, + 21296.74715251591, + 21356.95822692077, + 21404.098164325023, + 21439.025058987365, + 21462.601583944914, + 21475.69499101304, + 21479.17711078559, + 21473.924352634684, + 21460.817704710837, + 21440.74273394294, + 21414.589586038208, + 21383.252985482217, + 21347.63223553894, + 21308.63121825067, + 21267.158394438058, + 21224.126803700146, + 21180.454064414298, + 21137.06237373629, + 21094.878507600195, + 21054.833820718457, + 21017.864246581936, + 20984.91029745979, + 20956.91706439955, + 20934.83421722711, + 20919.61600454673, + 20912.221253741023, + 20913.613370970976, + 20924.760341175876, + 20946.634728073463, + 20980.21367415977, + 21026.478900709197, + 21086.41670777452, + 21161.017974186838, + 21251.278157555673, + 21358.197294268866, + 21482.77999949258, + 21354.108832490776, + 21403.35513295372, + 21439.920297631885, + 21464.571575705377, + 21478.080795132693, + 21481.224362650686, + 21474.783263774516, + 21459.5430627978, + 21436.293902792408, + 21405.83050560865, + 21368.952171875135, + 21326.462780998892, + 21279.170791165245, + 21227.88923933793, + 21173.435741259, + 21116.632491448898, + 21058.30626320642, + 20999.28840860871, + 20940.414858511278, + 20882.526122547988, + 20826.46728913106, + 20773.088025451092, + 20723.242577477038, + 20677.789769956176, + 20637.593006414187, + 20603.520269155073, + 20576.44411926122, + 20557.24169659339, + 20546.794719790654, + 20545.989486270504, + 20555.71687222871, + 20576.872332639483, + 20610.355901255338, + 20657.072190607167, + 20717.93039200424, + 20793.844275534157, + 20885.732190062863, + 21498.954733558316, + 21567.664654825785, + 21622.659676055933, + 21664.784453317785, + 21694.888221458743, + 21713.824794104585, + 21722.45256365938, + 21721.634501305653, + 21712.238157004194, + 21695.135659494223, + 21671.20371629328, + 21641.32361369729, + 21606.381216780504, + 21567.266969395558, + 21524.875894173434, + 21480.107592523484, + 21433.86624463341, + 21387.06060946928, + 21340.604024775523, + 21295.414407074903, + 21252.414251668568, + 21212.530632636015, + 21176.695202835126, + 21145.84419390209, + 21120.918416251494, + 21102.863259076268, + 21092.62869034772, + 21091.169256815498, + 21099.4440840076, + 21118.416876230433, + 21149.055916568683, + 21192.334066885476, + 21249.22876782224, + 21320.72203879878, + 21407.80047801329, + 21511.455262442258, + 21632.682147840584, + 21486.643791427112, + 21534.06767879889, + 21568.87231257533, + 21591.82172494373, + 21603.684526869776, + 21605.23390809751, + 21597.247637149292, + 21580.508061325916, + 21555.802106706484, + 21523.92127814845, + 21485.661659287674, + 21441.82391253832, + 21393.213279092957, + 21340.639578922477, + 21284.917210776144, + 21226.865152181606, + 21167.306959444817, + 21107.070767650148, + 21046.989290660287, + 20987.899821116294, + 20930.6442304376, + 20876.068968821965, + 20825.025065245565, + 20778.368127462847, + 20736.958342006707, + 20701.660474188335, + 20673.343868097305, + 20652.882446601587, + 20641.154711347426, + 20639.04374275951, + 20647.43720004082, + 20667.22732117274, + 20699.310922915003, + 20744.589400805664, + 20803.96872916122, + 20878.35946107644, + 20968.67672842447, + 21623.143423899684, + 21689.45430774892, + 21742.143968763703, + 21782.053124118775, + 21810.027069767275, + 21826.915680440696, + 21833.573409648852, + 21830.859289679986, + 21819.636931600628, + 21800.7745252557, + 21775.1448392685, + 21743.62522104066, + 21707.097596752148, + 21666.448471361364, + 21622.568928604993, + 21576.35463099812, + 21528.70581983418, + 21480.527315184958, + 21432.728515900613, + 21386.223399609647, + 21341.930522718914, + 21300.773020413668, + 21263.678606657508, + 21231.57957419232, + 21205.412794538468, + 21186.11971799459, + 21174.6463736377, + 21171.94336932321, + 21178.965891684828, + 21196.673706134672, + 21226.03115686319, + 21268.00716683922, + 21323.575237809906, + 21393.713450300795, + 21479.404463615803, + 21581.63551583716, + 21701.39842382546, + 21653.33811176339, + 21698.494032586343, + 21731.108391999547, + 21751.941203481783, + 21761.75705929023, + 21761.32513046042, + 21751.419166806205, + 21732.817496919863, + 21706.303028171973, + 21672.66324671149, + 21632.69021746575, + 21587.180584140435, + 21536.935569219557, + 21482.760973965527, + 21425.46717841908, + 21365.869141399344, + 21304.78640050381, + 21243.043072108278, + 21181.467851366957, + 21120.894012212386, + 21062.159407355466, + 21006.106468285474, + 20953.582205270064, + 20905.438207355164, + 20862.53064236517, + 20825.72025690274, + 20795.872376348958, + 20773.856904863253, + 20760.54832538339, + 20756.825699625508, + 20763.57266808413, + 20781.677450032093, + 20812.0328435206, + 20855.536225379223, + 20913.089551215922, + 20985.599355416998, + 21073.97675114705, + 21779.433938731505, + 21842.758940111573, + 21892.580105704415, + 21929.733232167775, + 21955.058694937707, + 21969.401448228677, + 21973.611025033442, + 21968.541537123205, + 21955.051675047438, + 21934.004708134027, + 21906.26848448923, + 21872.715430997603, + 21834.222553322117, + 21791.671435904085, + 21745.94824196316, + 21697.94371349737, + 21648.553171283118, + 21598.67651487514, + 21549.218222606538, + 21501.08735158878, + 21455.19753771168, + 21412.46699564342, + 21373.818518830565, + 21340.179479497972, + 21312.481828648935, + 21291.66209606505, + 21278.661390306297, + 21274.425398711028, + 21279.904387395905, + 21296.053201256007, + 21323.83126396475, + 21364.202577973898, + 21418.13572451355, + 21486.60386359223, + 21570.58473399678, + 21671.060653292418, + 21789.01851782267, + 21956.642444629826, + 21997.73810433522, + 22026.433174787562, + 22043.480433764325, + 22049.637237821364, + 22045.665522292897, + 22032.331801291464, + 22010.40716770798, + 21980.66729321177, + 21943.892428250434, + 21900.867402049997, + 21852.3816226148, + 21799.229076727566, + 21742.20832994938, + 21682.122526619667, + 21619.779389856245, + 21555.99122155522, + 21491.57490239116, + 21427.351891816903, + 21364.148228063674, + 21302.794528141087, + 21244.125987837073, + 21188.982381717968, + 21138.208063128386, + 21092.651964191395, + 21053.16759580836, + 21020.613047659022, + 20995.850988201506, + 20979.748664672257, + 20973.1779030861, + 20977.0151082362, + 20992.141263694117, + 21019.441931809724, + 21059.80725371129, + 21114.13194930544, + 21183.31531727713, + 21268.261235089696, + 22064.077412667164, + 22122.05592520639, + 22166.742978014994, + 22198.96550833936, + 22219.555032204244, + 22229.34764441279, + 22229.18401854643, + 22219.90940696505, + 22202.37364080681, + 22177.431129988287, + 22145.940863204396, + 22108.76640792839, + 22066.77591041192, + 22020.842095684973, + 21971.842267555894, + 21920.65830861139, + 21868.176680216526, + 21815.288422514757, + 21762.889154427834, + 21711.879073655917, + 21663.162956677497, + 21617.650158749446, + 21576.25461390701, + 21539.894834963725, + 21509.49391351156, + 21485.979519920802, + 21470.28390334011, + 21463.34389169652, + 21466.100891695365, + 21479.50088882041, + 21504.494447333745, + 21542.036710275836, + 21593.08739946546, + 21658.610815499807, + 21739.575837754397, + 21836.955924383135, + 21951.72911231825, + 22264.032512214264, + 22301.096284245974, + 22325.901836963003, + 22339.194712441527, + 22341.725031536047, + 22334.247493879513, + 22317.521377883095, + 22292.310540736442, + 22259.38341840751, + 22219.513025642613, + 22173.476955966456, + 22122.057381682036, + 22066.0410538708, + 22006.219302392466, + 21943.38803588518, + 21878.34774176539, + 21811.903486227962, + 21744.86491424608, + 21678.04624957128, + 21612.2662947335, + 21548.348431040988, + 21487.120618580386, + 21429.415396216697, + 21376.069881593223, + 21327.92577113173, + 21285.829340032218, + 21250.631442273167, + 21223.18751061134, + 21204.357556581876, + 21195.00617049829, + 21196.00252145242, + 21208.220357314523, + 21232.538004733127, + 21269.838369135206, + 21321.008934726047, + 21386.94176448931, + 21468.53350018697, + 22352.911916702313, + 22405.57991676291, + 22445.170144955893, + 22472.50067911639, + 22488.394175857797, + 22493.677870571966, + 22489.183577428998, + 22475.747689377466, + 22454.211178144218, + 22425.419594234485, + 22390.223066931896, + 22349.47630429836, + 22304.03859317423, + 22254.77379917815, + 22202.550366707164, + 22148.24131893667, + 22092.7242578204, + 22036.881364090477, + 21981.59939725736, + 21927.76969560988, + 21876.2881762152, + 21828.05533491891, + 21783.976246344886, + 21744.96056389536, + 21711.92251975102, + 21685.78092487077, + 21667.45916899201, + 21657.88522063041, + 21657.99162708004, + 21668.7155144133, + 21690.998587480964, + 21725.787129912194, + 21774.03200411444, + 21836.68865127359, + 21914.717091353843, + 22009.08192309777, + 22120.752324026253, + 22575.517385460298, + 22608.575898183626, + 22629.519959312336, + 22639.087875221277, + 22638.022531063656, + 22627.071390771063, + 22606.98649705339, + 22578.52447139893, + 22542.446514074356, + 22499.51840412464, + 22450.510499373162, + 22396.197736421636, + 22337.35963065015, + 22274.780276217138, + 22209.24834605939, + 22141.557091892082, + 22072.50434420873, + 22002.892512281185, + 21933.5285841597, + 21865.22412667287, + 21798.79528542764, + 21735.062784809325, + 21674.851927981606, + 21618.992596886488, + 21568.319252244393, + 21523.67093355401, + 21485.891259092503, + 21455.828425915326, + 21434.33520985628, + 21422.268965527564, + 21420.49162631972, + 21429.869704401648, + 21451.274290720612, + 21485.581055002207, + 21533.670245750436, + 21596.426690247645, + 21674.739794554487, + 22645.962601993364, + 22693.35361125308, + 22727.88184831472, + 22750.35653160205, + 22761.591458317183, + 22762.40500444063, + 22753.620124731176, + 22736.064352726087, + 22710.56980074087, + 22677.973159869463, + 22639.115699984155, + 22594.843269735567, + 22546.006296552685, + 22493.45978664289, + 22438.06332499187, + 22380.681075363693, + 22322.181780300816, + 22263.438761124005, + 22205.329917932442, + 22148.737729603596, + 22094.54925379333, + 22043.656126935894, + 21996.954564243893, + 21955.345359708215, + 21919.733886098205, + 21891.030094961487, + 21870.14851662412, + 21858.008260190465, + 21855.533013543256, + 21863.651043343616, + 21883.295195030958, + 21915.402892823135, + 21960.91613971629, + 22020.781517484975, + 22095.950186682094, + 22187.377886638867, + 22296.024935464917, + 22891.10452513093, + 22920.18266183264, + 22937.291512441476, + 22943.162147630956, + 22938.53021685298, + 22924.135948337815, + 22900.724149094018, + 22869.044204908605, + 22829.850080346878, + 22783.900318752527, + 22731.958042247614, + 22674.79095173251, + 22613.171326886004, + 22547.8760261652, + 22479.68648680559, + 22409.388724820994, + 22337.77333500364, + 22265.63549092407, + 22193.774944931185, + 22122.99602815228, + 22054.107650492977, + 21987.923300637274, + 21925.261046047544, + 21866.94353296446, + 21813.79798640711, + 21766.656210172907, + 21726.354586837664, + 21693.73407775552, + 21669.64022305896, + 21654.923141658877, + 21650.43753124447, + 21657.04266828336, + 21675.60240802146, + 21706.985184483045, + 21752.064010470804, + 21811.716477565777, + 21886.82475612729, + 22943.25300951618, + 22985.398094968416, + 23014.896719698565, + 23032.54924271907, + 23039.160601820717, + 23035.540313572707, + 23022.502473322507, + 23000.86575519605, + 22971.453412097537, + 22935.093275709583, + 22892.617756493168, + 22844.86384368758, + 22792.673105310503, + 22736.891688157986, + 22678.37031780439, + 22617.964298602496, + 22556.5335136834, + 22494.942424956593, + 22434.060073109904, + 22374.760077609495, + 22317.92063669992, + 22264.424527404102, + 22215.159105523322, + 22171.016305637157, + 22132.892641103637, + 22101.68920405907, + 22078.311665418165, + 22063.67027487401, + 22058.67986089798, + 22064.259830739895, + 22081.334170427865, + 22110.83144476842, + 22153.684797346377, + 22210.83195052495, + 22283.215205445737, + 22371.781442028678, + 22477.482118972017, + 23210.799781808604, + 23235.92068069691, + 23249.21885677574, + 23251.418145017335, + 23243.246959172226, + 23225.438291769406, + 23198.729714116103, + 23163.86337629798, + 23121.58600717907, + 23072.648914401714, + 23017.80798438667, + 22957.82368233298, + 22893.46105221812, + 22825.48971679787, + 22754.683877606403, + 22681.822314956247, + 22607.68838793827, + 22533.07003442171, + 22458.759771054174, + 22385.554693261594, + 22314.256475248316, + 22245.671369997002, + 22180.610209268696, + 22119.88840360277, + 22064.32594231698, + 22014.747393507445, + 21971.981904048618, + 21936.863199593343, + 21910.229584572808, + 21892.923942196547, + 21885.79373445248, + 21889.691002106858, + 21905.4723647043, + 21933.999020567786, + 21976.136746798693, + 22032.75589927668, + 22104.7314126598, + 23244.80507006598, + 23281.73284401975, + 23306.23178053388, + 23319.09337920949, + 23321.113718426066, + 23313.09345534146, + 23295.837825891853, + 23270.156644791838, + 23236.864305534313, + 23196.779780390552, + 23150.726620410234, + 23099.532955421324, + 23044.03149403019, + 22985.05952362155, + 22923.458910358477, + 22860.076099182388, + 22795.762113813103, + 22731.372556748775, + 22667.767609265906, + 22605.812031419347, + 22546.375162042357, + 22490.330918746506, + 22438.55779792176, + 22391.938874736406, + 22351.361803137115, + 22317.718815848904, + 22291.90672437517, + 22274.826918997656, + 22267.385368776442, + 22270.49262155, + 22285.063803935158, + 22312.018621327104, + 22352.281357899337, + 22406.780876603767, + 22476.450619170664, + 22562.228606108638, + 22665.057436704632, + 23534.607395895215, + 23555.792450099747, + 23565.30274255993, + 23563.854872546613, + 23552.170018109082, + 23530.97393607496, + 23500.996962050176, + 23462.974010419086, + 23417.64457434438, + 23365.752725767106, + 23308.047115406658, + 23245.280972760826, + 23178.212106105715, + 23107.602902495822, + 23034.220327763975, + 22958.835926521377, + 22882.22582215761, + 22805.170716840563, + 22728.45589151655, + 22652.87120591018, + 22579.211098524458, + 22508.274586640735, + 22440.865266318746, + 22377.79131239655, + 22319.86547849057, + 22267.905096995622, + 22222.732079084806, + 22185.17291470971, + 22156.05867260014, + 22136.225000264352, + 22126.5121239889, + 22127.764848838782, + 22140.83255865728, + 22166.56921606602, + 22205.83336246508, + 22259.48811803279, + 22328.401181725934, + 23550.639104257523, + 23582.37572433743, + 23601.90244206662, + 23610.001897634873, + 23607.46131001039, + 23595.072476939677, + 23573.631774947607, + 23543.94015933745, + 23506.803164190773, + 23463.03090236758, + 23413.43806550616, + 23358.843924023222, + 23300.072327113772, + 23237.95170275124, + 23173.31505768737, + 23106.999977452262, + 23039.8486263544, + 22972.70774748062, + 22906.428662696144, + 22841.86727264447, + 22779.884056747538, + 22721.34407320559, + 22667.116958997325, + 22618.076929879666, + 22575.10278038797, + 22539.077883835947, + 22510.89019231566, + 22491.43223669757, + 22481.60112663038, + 22482.29855054132, + 22494.430775635807, + 22518.90864789777, + 22556.647592089394, + 22608.56761175124, + 22675.593289202297, + 22758.653785539787, + 22858.682840639434, + 23862.52999761204, + 23879.79885518391, + 23885.54230985819, + 23880.46972520444, + 23865.295043570593, + 23840.73678608298, + 23807.518052646217, + 23766.36652194332, + 23718.01445143566, + 23663.19867736298, + 23602.660614743352, + 23537.146257373242, + 23467.406177827448, + 23394.195527459124, + 23318.274036399805, + 23240.406013559368, + 23161.360346626076, + 23081.9105020665, + 23002.834525125625, + 22924.91503982676, + 22848.939248971565, + 22775.698934140117, + 22705.990455690797, + 22640.614752760328, + 22580.37734326386, + 22526.08832389486, + 22478.562370125146, + 22438.618736204917, + 22407.081255162728, + 22384.778338805478, + 22372.542977718458, + 22371.21274126528, + 22381.62977758793, + 22404.640813606722, + 22441.097155020394, + 22491.854686306026, + 22557.77387071899, + 23860.7738225249, + 23887.342991671172, + 23901.92250536211, + 23905.286144376176, + 23898.212268270232, + 23881.4838153795, + 23855.888302817522, + 23822.217826476237, + 23781.269061025923, + 23733.843259915222, + 23680.74625537115, + 23622.788458399064, + 23560.78485878267, + 23495.555025084064, + 23427.923104643673, + 23358.717823580297, + 23288.77248679109, + 23218.92497795158, + 23150.017759515635, + 23082.897872715483, + 23018.416937561695, + 22957.43115284326, + 22900.801296127487, + 22849.39272376002, + 22804.075370864888, + 22765.723751344496, + 22735.216957879573, + 22713.43866192924, + 22701.27711373095, + 22699.625142300516, + 22709.380155432133, + 22731.444139698375, + 22766.723660450083, + 22816.129861816527, + 22880.57846670534, + 22960.98977680251, + 23058.28867257234, + 24194.568606999812, + 24207.93917091156, + 24209.935088554164, + 24201.25848779586, + 24182.61607528329, + 24154.719136441443, + 24118.28353547361, + 24074.029715361514, + 24022.6826978652, + 23964.97208352307, + 23901.632051651904, + 23833.401360346845, + 23761.02334648134, + 23685.245925707288, + 23606.821592454853, + 23526.507419932608, + 23445.065060127505, + 23363.26074380479, + 23281.865280508126, + 23201.654058559507, + 23123.40704505928, + 23047.908785886186, + 22975.948405697305, + 22908.319607928046, + 22845.82067479224, + 22789.254467282, + 22739.428425167862, + 22697.15456699871, + 22663.249490101756, + 22638.5343705826, + 22623.834963325193, + 22619.98160199182, + 22627.809199023184, + 22648.157245638286, + 22681.86981183453, + 22729.79554638764, + 22792.787676851713, + 24175.226325121686, + 24196.649291590144, + 24206.30416130511, + 24204.95585563374, + 24193.373874721576, + 24172.332297492525, + 24142.609781648793, + 24104.989563671006, + 24060.259458818146, + 24009.211861127515, + 23952.643743414814, + 23891.35665727408, + 23826.156733077703, + 23757.85467997645, + 23687.265785899443, + 23615.209917554173, + 23542.511520426462, + 23469.99961878052, + 23398.507815658886, + 23328.87429288248, + 23261.941811050565, + 23198.557709540793, + 23139.57390650916, + 23085.846898889988, + 23038.237762396013, + 22997.61215151828, + 22964.84029952623, + 22940.797018467656, + 22926.36169916868, + 22922.41831123383, + 22929.855403045953, + 22949.566101766286, + 22982.448113334387, + 23029.403722468203, + 23091.339792664076, + 23169.1677661966, + 23263.803664118812, + 24530.722633918693, + 24540.211062064296, + 24538.47699835088, + 24526.215334945373, + 24504.125542793092, + 24472.911671617712, + 24433.28234992119, + 24385.95078498394, + 24331.634762864698, + 24271.05664840054, + 24204.94338520693, + 24134.026495677674, + 24059.04208098494, + 23980.730821079258, + 23899.837974689504, + 23817.113379322942, + 23733.311451265166, + 23649.19118558016, + 23565.516156110214, + 23483.054515476033, + 23402.578995076656, + 23324.86690508946, + 23250.700134470262, + 23180.865150953105, + 23116.15300105053, + 23057.35931005331, + 23005.284282030712, + 22960.73269983023, + 22924.51392507781, + 22897.441898177705, + 22880.33513831255, + 22874.01674344336, + 22879.314390309453, + 22897.06033442854, + 22928.091410096695, + 22973.24903038835, + 23033.37918715626, + 24494.012102120858, + 24510.307659482925, + 24515.057990599817, + 24509.01915742739, + 24492.951800699833, + 24467.62113992976, + 24433.796973408047, + 24392.253678204022, + 24343.7702101653, + 24289.130103917916, + 24229.121472866223, + 24164.537009192944, + 24096.173983859153, + 24024.83424660432, + 23951.32422594623, + 23876.45492918102, + 23801.041942383246, + 23725.905430405764, + 23651.870136879832, + 23579.76538421503, + 23510.425073599283, + 23444.687684998957, + 23383.39627715871, + 23327.398487601564, + 23277.546532628912, + 23234.697207320474, + 23199.711885534423, + 23173.456519907188, + 23156.80164185359, + 23150.622361566824, + 23155.798368018422, + 23173.213928958332, + 23203.757890914763, + 23248.32367919435, + 23307.809297882093, + 23383.117329841316, + 23475.15493671371, + 24870.98987804828, + 24876.61058324315, + 24871.162348770835, + 24855.332831096915, + 24829.814265465386, + 24795.303465898596, + 24752.50182519721, + 24702.11531494032, + 24644.85448548531, + 24581.434465967977, + 24512.574964302446, + 24439.000267181218, + 24361.439240075124, + 24280.625327233392, + 24197.296551683587, + 24112.19551523162, + 24026.069398461797, + 23939.669960736737, + 23853.753540197496, + 23769.081053763402, + 23686.41799713216, + 23606.53444477987, + 23530.205049961012, + 23458.209044708343, + 23391.330239833012, + 23330.357024924546, + 23276.082368350828, + 23229.30381725811, + 23190.823497570953, + 23161.448113992337, + 23141.988950003542, + 23133.26186786429, + 23136.087308612583, + 23151.290292064758, + 23179.700416815675, + 23222.15186023834, + 23279.483378484263, + 24817.14503341484, + 24828.329520557556, + 24828.192963769903, + 24817.48256559638, + 24796.950107359888, + 24767.351949161697, + 24729.44902988137, + 24684.00686717694, + 24631.795557484675, + 24573.589776019326, + 24510.16877677387, + 24442.316392519777, + 24370.82103480676, + 24296.475693962984, + 24220.0779390949, + 24142.429918087368, + 24064.33835760357, + 23986.614563085077, + 23910.07441875183, + 23835.53838760207, + 23763.831511412434, + 23695.78341073793, + 23632.228284911933, + 23574.004912046126, + 23521.956649030573, + 23476.931431533747, + 23439.781774002382, + 23411.364769661694, + 23392.54209051511, + 23384.179987344585, + 23387.14928971025, + 23402.325405950793, + 23430.588323183096, + 23472.82260730243, + 23529.91740298255, + 23602.766433675377, + 23692.268001611363, + 25215.366528887527, + 25217.132178868567, + 25207.983839155888, + 25188.60193051378, + 25159.671452484905, + 25121.881983390314, + 25075.927680329343, + 25022.507279179725, + 24962.324094597596, + 24896.08602001739, + 24824.505527651916, + 24748.299668492367, + 24668.190072308244, + 24584.90294764748, + 24499.169081836284, + 24411.723840979295, + 24323.30716995947, + 24234.663592438115, + 24146.542210854965, + 24059.69670642801, + 23974.885339153698, + 23892.87094780676, + 23814.420949940362, + 23740.30734188593, + 23671.30669875334, + 23608.200174430774, + 23551.773501584783, + 23502.816991660315, + 23462.12553488062, + 23430.49860024733, + 23408.740235540463, + 23397.659067318375, + 23398.068300917734, + 23410.78572045363, + 23436.633688819507, + 23476.439147687157, + 23531.0336175067, + 25144.637388715422, + 25150.72468984145, + 25145.716441158347, + 25130.350985799312, + 25105.37124567592, + 25071.52472147813, + 25029.563492674202, + 24980.244217510808, + 24924.32813301294, + 24862.581054983973, + 24795.77337800564, + 24724.680075438042, + 24650.080699419592, + 24572.759380867134, + 24493.504829475794, + 24413.1103337191, + 24332.373760848946, + 24252.097556895587, + 24173.088746667603, + 24096.158933751958, + 24022.124300513955, + 23951.805608097282, + 23886.02819642398, + 23825.62198419444, + 23771.421468887416, + 23724.26572676002, + 23684.998412847704, + 23654.46776096433, + 23633.52658370207, + 23623.032272431486, + 23623.846797301463, + 23636.836707239283, + 23662.87312995056, + 23702.831771919282, + 23757.592918407812, + 23828.041433456823, + 23915.06675988538, + 25563.84716575492, + 25561.768683180435, + 25548.9325586674, + 25526.011977278777, + 25493.684702855917, + 25452.63307801853, + 25403.544024164676, + 25347.10904147074, + 25284.02420889155, + 25214.990184160204, + 25140.712203788218, + 25061.900083065444, + 24979.26821606009, + 24893.535575618735, + 24805.425713366298, + 24715.6667597061, + 24624.991423819756, + 24534.136993667278, + 24443.84533598707, + 24354.8628962958, + 24267.9406988886, + 24183.834346838903, + 24103.304021998516, + 24027.114484997586, + 23956.03507524464, + 23890.839710926564, + 23832.306889008592, + 23781.21968523433, + 23738.36575412573, + 23704.5373289831, + 23680.53122188514, + 23667.148823688847, + 23665.19610402965, + 23675.48361132126, + 23698.82647275583, + 23736.04439430381, + 23787.961660714034, + 25476.49982755392, + 25477.501372181512, + 25467.634172927676, + 25447.627713514332, + 25418.216056441714, + 25380.137842988446, + 25334.13629321149, + 25280.959205946194, + 25221.358958806242, + 25156.092508183676, + 25085.921389248924, + 25011.611715950756, + 24933.934181016255, + 24853.664055950965, + 24771.58119103869, + 24688.470015341674, + 24605.119536700426, + 24522.323341733914, + 24440.879595839404, + 24361.591043192533, + 24285.2650067473, + 24212.713388236054, + 24144.75266816954, + 24082.203905836814, + 24025.892739305305, + 23976.64938542082, + 23935.308639807492, + 23902.709876867862, + 23879.69704978278, + 23867.118690511474, + 23865.827909791547, + 23876.682397138964, + 23900.544420847975, + 23938.28082799128, + 23990.763044419906, + 24058.86707476324, + 24143.473502429, + 25916.424757788307, + 25910.511320238063, + 25893.99798628611, + 25867.550705294096, + 25831.840005402046, + 25787.540993528368, + 25735.333355369745, + 25675.901355401344, + 25609.933836876593, + 25538.124221827304, + 25461.170511063672, + 25379.77528417422, + 25294.645699525856, + 25206.49349426382, + 25116.03498431173, + 25023.99106437156, + 24931.08720792364, + 24838.05346722666, + 24745.624473317668, + 24654.539436012077, + 24565.54214390364, + 24479.38096436448, + 24396.808843545135, + 24318.583306374385, + 24245.466456559465, + 24178.224976585916, + 24117.630127717664, + 24064.457749997007, + 24019.48826224457, + 23983.50666205936, + 23957.302525818715, + 23941.670008678364, + 23937.407844572383, + 23945.319346213193, + 23966.212405091595, + 24000.89949147674, + 24050.197654416133, + 25812.741399281025, + 25808.66616224403, + 25793.95029905981, + 25769.31443403894, + 25735.483770270344, + 25693.188089621344, + 25643.161752737567, + 25586.143699043052, + 25522.877446740134, + 25454.111092809577, + 25380.59731301046, + 25303.093361880256, + 25222.36107273473, + 25139.166857668082, + 25054.281707552833, + 24968.481192039857, + 24882.5454595584, + 24797.259237316088, + 24713.411831298865, + 24631.79712627104, + 24553.213585775324, + 24478.464252132726, + 24408.35674644267, + 24343.703268582896, + 24285.320597209527, + 24234.030089757023, + 24190.657682438232, + 24156.033890244362, + 24130.993806944945, + 24116.377105087897, + 24113.028035999483, + 24121.795429784343, + 24143.532695325448, + 24179.097820284158, + 24229.35337110018, + 24295.166492991568, + 24377.408909954745, + 26273.090663944997, + 26263.349703920205, + 26243.167990812217, + 26213.204238281374, + 26174.12173876637, + 26126.588363484312, + 26071.27656243057, + 26008.863364378947, + 25940.0303768816, + 25865.463786269003, + 25785.85435765004, + 25701.8974349119, + 25614.292940720192, + 25523.745376518815, + 25430.9638225301, + 25336.66193775466, + 25241.557959971553, + 25146.374705738126, + 25051.839570390108, + 24958.68452804158, + 24867.646131585007, + 24779.465512691193, + 24694.888381809327, + 24614.665028166884, + 24539.550319769787, + 24470.303703402245, + 24407.68920462689, + 24352.475427784695, + 24305.43555599494, + 24267.34735115532, + 24238.99315394189, + 24221.15988380904, + 24214.639038989506, + 24220.22669649441, + 24238.723512113243, + 24270.934720413832, + 24317.670134742348, + 26153.369543066838, + 26144.224044514736, + 26124.66734935607, + 26095.411222490082, + 26057.17200759439, + 26010.670627124997, + 25956.6325823162, + 25895.78795318073, + 25828.871398509604, + 25756.622155872265, + 25679.784041616473, + 25599.105450868366, + 25515.33935753242, + 25429.243314291507, + 25341.57945260682, + 25253.114482717905, + 25164.61969364273, + 25076.870953177557, + 24990.648707897042, + 24906.73798315416, + 24825.92838308028, + 24749.01409058514, + 24676.79386735685, + 24610.07105386178, + 24549.65356934477, + 24496.353911828952, + 24450.98915811585, + 24414.380963785374, + 24387.3555631957, + 24370.74376948345, + 24365.380974563563, + 24372.107149129395, + 24391.766842652552, + 24425.20918338309, + 24473.2878783494, + 24536.86121335823, + 24616.792052994664, + 26633.834633001683, + 26620.271837924993, + 26596.428830865305, + 26562.95708978164, + 26520.512671411372, + 26469.75621127029, + 26411.35292365246, + 26345.972601630365, + 26274.28961705482, + 26196.982920554987, + 26114.736041538436, + 26028.23708819106, + 25938.1787474771, + 25845.258285139196, + 25750.177545698312, + 25653.642952453774, + 25556.365507483297, + 25459.06079164292, + 25362.44896456705, + 25267.254764668476, + 25174.20750913831, + 25084.041093946038, + 24997.493993839544, + 24915.309262344985, + 24838.234531766968, + 24767.022013188376, + 24702.428496470522, + 24645.215350253064, + 24596.148521953957, + 24555.9985377696, + 24525.540502674692, + 24505.554100422327, + 24496.82359354394, + 24500.137823349298, + 24516.290209926585, + 24546.07875214233, + 24590.30602764136, + 26498.390087900898, + 26484.17839329878, + 26459.7862434372, + 26425.916543804116, + 26383.27677866581, + 26332.57901106697, + 26274.539882830562, + 26209.88061455802, + 26139.32700562904, + 26063.609434201724, + 25983.462857212544, + 25899.626810376292, + 25812.84540818616, + 25723.867343913666, + 25633.445889608676, + 25542.33889609948, + 25451.308792992644, + 25361.12258867317, + 25272.551870304378, + 25186.372803827933, + 25103.366133963893, + 25024.317184210646, + 24950.01585684498, + 24881.256632921977, + 24818.83857227516, + 24763.56531351631, + 24716.245074035673, + 24677.690650001798, + 24648.719416361575, + 24630.1533268403, + 24622.818913941588, + 24627.547288947484, + 24645.174141918254, + 24676.539741692653, + 24722.48893588776, + 24783.871150898987, + 24861.540391900107, + 26998.644803554555, + 26981.264115770045, + 26953.76515488444, + 26916.792163155398, + 26870.993961619024, + 26817.02395008974, + 26755.540107160297, + 26687.20499020189, + 26612.685735363975, + 26532.654057574455, + 26447.786250539524, + 26358.76318674378, + 26266.270317450137, + 26170.997672699938, + 26073.639861312804, + 25974.89607088675, + 25875.470067798182, + 25776.070197201785, + 25677.409383030725, + 25580.205127996385, + 25485.179513588595, + 25393.059200075546, + 25304.575426503758, + 25220.464010698124, + 25141.465349261864, + 25068.324417576605, + 25001.790769802312, + 24942.61853887732, + 24891.566436518275, + 24849.397753220273, + 24816.88035825665, + 24794.786699679215, + 24783.893804318093, + 24784.983277781706, + 24798.841304456953, + 24826.25864750898, + 24868.030648881373, + 26847.807252592225, + 26828.53097272074, + 26799.306290743432, + 26760.82725273685, + 26713.79248355604, + 26658.905186834298, + 26596.87314498332, + 26528.408719193198, + 26454.228849432304, + 26375.055054447454, + 26291.61343176377, + 26204.634657684757, + 26114.853987292223, + 26023.011254446443, + 25929.85087178594, + 25836.12183072767, + 25742.577701466897, + 25649.976632977286, + 25559.081353010857, + 25470.659168097947, + 25385.481963547278, + 25304.326203445955, + 25227.972930659434, + 25157.207766831485, + 25092.820912384268, + 25035.607146518323, + 24986.3658272125, + 24945.900891224086, + 24915.020854088612, + 24894.538810120106, + 24885.27243241079, + 24888.04397283143, + 24903.680262031026, + 24933.012709436913, + 24976.877303254947, + 25036.114610469136, + 25111.569776842003, + 27039.429730047217, + 27021.624999173608, + 26993.720074705274, + 26956.358394932453, + 26910.187976923746, + 26855.861416526164, + 26794.035888364986, + 26725.373145843936, + 26650.53952114504, + 26570.205925228725, + 26485.04784783375, + 26395.745357477233, + 26302.983101454647, + 26207.450305839866, + 26109.840775485052, + 26010.852894020787, + 25911.189623856004, + 25811.558506177953, + 25712.671660952285, + 25615.24578692299, + 25520.002161612432, + 25427.66664132131, + 25338.969661128733, + 25254.646234892072, + 25175.435955247172, + 25102.08299360815, + 25035.33610016753, + 24975.94860389618, + 24924.678412543322, + 24882.288012636527, + 24849.544469481778, + 24827.21942716336, + 24816.089108543925, + 24816.93431526448, + 24830.540427744447, + 24857.69740518155, + 24899.199785551853, + 26886.902938446063, + 26867.063919230895, + 26837.302362590028, + 26798.31133022022, + 26750.78846259664, + 26695.43597897283, + 26632.960677380623, + 26564.07393463029, + 26489.49170631041, + 26409.93452678792, + 26326.127509208178, + 26238.800345494805, + 26148.68730634986, + 26056.52724125373, + 25963.06357846514, + 25869.04432502123, + 25775.22206673744, + 25682.353968207597, + 25591.20177280391, + 25502.531802676884, + 25417.114958755443, + 25335.72672074685, + 25259.147147136726, + 25188.16087518903, + 25123.557120946123, + 25066.12967922867, + 25016.676923635754, + 24976.001806544788, + 24944.91185911153, + 24924.21919127012, + 24914.74049173303, + 24917.297027991186, + 24932.7146463137, + 24961.82377174819, + 25005.45940812058, + 25064.46113803514, + 25139.67312287452, + 41361.04533536548, + 41206.372501828904, + 41047.80245611964, + 40885.73744648464, + 40720.5842999492, + 40552.75442231702, + 40382.66379817007, + 40210.732990868746, + 40037.38714255178, + 39863.05597413629, + 39688.173785317704, + 39513.179454569894, + 39338.516439144965, + 39164.6327750735, + 38991.9810771644, + 38821.018539004835, + 38652.20693296052, + 38486.01261017535, + 38322.90650057168, + 38163.36411285022, + 38007.86553448997, + 37856.895431748366, + 37710.94304966117, + 37570.50221204253, + 37436.07132148485, + 37308.15335935907, + 37187.255885814295, + 37073.89103977816, + 36968.575538956546, + 36871.830679833736, + 36784.18233767239, + 36706.16096651345, + 36638.30159917635, + 36581.14384725871, + 36535.231901136656, + 36501.1145299646, + 36479.34508167537, + 40995.143014651905, + 40790.70769642199, + 40584.840449219715, + 40377.93902103203, + 40170.40573862425, + 39962.64750754008, + 39755.07581210154, + 39548.10671540906, + 39342.16085934138, + 39137.663464555626, + 38935.044330487224, + 38734.73783535014, + 38537.18293613645, + 38342.82316861678, + 38152.10664734001, + 37965.48606563343, + 37783.41869560266, + 37606.36638813167, + 37434.795572882875, + 37269.17725829694, + 37109.98703159293, + 36957.70505876829, + 36812.816084598795, + 36675.809432638605, + 36547.17900522021, + 36427.4232834545, + 36317.04532723061, + 36216.55277521626, + 36126.45784485728, + 36047.277332378006, + 35979.532612781106, + 35923.7496398476, + 35880.45894613683, + 35850.195642986546, + 35833.499420512875, + 35830.91454761022, + 35842.98987195144 + ], + "input_power": [ + 7103.625844770001, + 7301.143853895925, + 7499.1646932914855, + 7697.688362956668, + 7896.71486289148, + 8096.244193095928, + 8296.276353570001, + 8496.8113443137, + 8697.849165327041, + 8899.38981661, + 9101.433298162598, + 9303.979609984819, + 9507.028752076665, + 9710.580724438147, + 9914.635527069262, + 10119.193159969996, + 10324.253623140374, + 10529.816916580372, + 10735.88304029, + 10942.451994269264, + 11149.523778518149, + 11357.098393036664, + 11565.175837824818, + 11773.756112882595, + 11982.839218209996, + 12192.425153807037, + 12402.513919673705, + 12613.10551581, + 12824.19994221593, + 13035.797198891481, + 13247.897285836667, + 13460.50020305148, + 13673.605950535928, + 13887.214528290006, + 14101.325936313706, + 14315.94017460704, + 14531.057243169993, + 7382.960718070003, + 7598.855334769261, + 7815.252781738152, + 8032.153058976672, + 8249.556166484816, + 8467.4621042626, + 8685.870872310003, + 8904.782470627038, + 9124.196899213712, + 9344.114158070002, + 9564.534247195934, + 9785.45716659149, + 10006.882916256669, + 10228.811496191483, + 10451.24290639593, + 10674.177146870006, + 10897.614217613711, + 11121.554118627044, + 11345.996849910005, + 11570.9424114626, + 11796.390803284821, + 12022.342025376669, + 12248.796077738156, + 12475.752960369264, + 12703.212673270002, + 12931.175216440375, + 13159.640589880373, + 13388.60879359, + 13618.079827569269, + 13848.053691818151, + 14078.53038633667, + 14309.50991112482, + 14540.992266182595, + 14772.977451510007, + 15005.465467107042, + 15238.45631297371, + 15471.94998911, + 7107.9026794784, + 7305.256174364324, + 7503.112499519884, + 7701.471654945068, + 7900.33364063988, + 8099.6984566043275, + 8299.566102838402, + 8499.936579342102, + 8700.80988611544, + 8902.186023158398, + 9104.064990470997, + 9306.446788053217, + 9509.331415905066, + 9712.718874026546, + 9916.60916241766, + 10121.0022810784, + 10325.898230008775, + 10531.29700920877, + 10737.1986186784, + 10943.60305841766, + 11150.51032842655, + 11357.920428705067, + 11565.833359253218, + 11774.249120070994, + 11983.1677111584, + 12192.589132515435, + 12402.513384142107, + 12612.940466038399, + 12823.87037820433, + 13035.303120639881, + 13247.238693345063, + 13459.677096319885, + 13672.61832956433, + 13886.062393078408, + 14100.009286862103, + 14314.459010915436, + 14529.411565238397, + 7387.827126462402, + 7603.514701177661, + 7819.7051061625525, + 8036.398341417071, + 8253.594406941214, + 8471.293302734995, + 8689.495028798403, + 8908.199585131439, + 9127.40697173411, + 9347.117188606404, + 9567.330235748334, + 9788.046113159888, + 10009.26482084107, + 10230.986358791883, + 10453.21072701233, + 10675.937925502403, + 10899.16795426211, + 11122.900813291439, + 11347.136502590405, + 11571.875022158998, + 11797.116371997221, + 12022.860552105065, + 12249.107562482555, + 12475.857403129663, + 12703.110074046399, + 12930.865575232776, + 13159.123906688774, + 13387.8850684144, + 13617.149060409663, + 13846.915882674548, + 14077.185535209068, + 14307.95801801322, + 14539.233331086998, + 14771.011474430406, + 15003.292448043443, + 15236.076251926106, + 15469.362886078403, + 7146.101551040001, + 7341.974417765926, + 7538.350114761483, + 7735.228642026667, + 7932.6099995614795, + 8130.49418736593, + 8328.88120544, + 8527.771053783701, + 8727.16373239704, + 8927.05924128, + 9127.457580432596, + 9328.358749854819, + 9529.762749546666, + 9731.669579508147, + 9934.079239739262, + 10136.99173024, + 10340.407051010377, + 10544.32520205037, + 10748.746183359997, + 10953.669994939262, + 11159.096636788148, + 11365.026108906664, + 11571.458411294814, + 11778.393543952594, + 11985.831506879997, + 12193.772300077042, + 12402.215923543701, + 12611.16237728, + 12820.61166128593, + 13030.56377556148, + 13241.018720106664, + 13451.976494921486, + 13663.437100005925, + 13875.400535360004, + 14087.866800983704, + 14300.835896877037, + 14514.307823039997, + 7431.332161180003, + 7645.156358039259, + 7859.483385168152, + 8074.313242566669, + 8289.645930234814, + 8505.481448172595, + 8721.819796380003, + 8938.660974857037, + 9156.004983603709, + 9373.851822620001, + 9592.201491905931, + 9811.053991461487, + 10030.409321286665, + 10250.267481381483, + 10470.62847174593, + 10691.492292380002, + 10912.858943283709, + 11134.72842445704, + 11357.100735900001, + 11579.975877612596, + 11803.353849594816, + 12027.23465184667, + 12251.61828436815, + 12476.50474715926, + 12701.89404022, + 12927.786163550372, + 13154.181117150372, + 13381.07890102, + 13608.479515159268, + 13836.382959568149, + 14064.789234246668, + 14293.69833919482, + 14523.110274412596, + 14753.025039900005, + 14983.442635657042, + 15214.363061683705, + 15445.78631798, + 7183.773669136398, + 7378.165907702323, + 7573.060976537881, + 7768.458875643067, + 7964.359605017878, + 8160.763164662326, + 8357.669554576398, + 8555.078774760099, + 8752.990825213437, + 8951.405705936399, + 9150.323416928995, + 9349.743958191217, + 9549.667329723066, + 9750.093531524542, + 9951.022563595663, + 10152.454425936397, + 10354.389118546771, + 10556.826641426771, + 10759.7669945764, + 10963.210177995661, + 11167.156191684548, + 11371.60503564306, + 11576.556709871218, + 11782.011214368993, + 11987.968549136398, + 12194.428714173435, + 12401.391709480104, + 12608.857535056397, + 12816.82619090233, + 13025.297677017878, + 13234.271993403063, + 13443.74914005788, + 13653.729116982326, + 13864.211924176401, + 14075.197561640103, + 14286.686029373439, + 14498.677327376396, + 7474.310442432399, + 7686.271261435658, + 7898.734910708549, + 8111.701390251067, + 8325.170700063212, + 8539.142840144998, + 8753.6178104964, + 8968.595611117435, + 9184.076242008106, + 9400.059703168401, + 9616.54599459833, + 9833.535116297884, + 10051.027068267065, + 10269.021850505882, + 10487.519463014329, + 10706.519905792402, + 10926.023178840107, + 11146.029282157435, + 11366.538215744398, + 11587.549979600997, + 11809.064573727217, + 12031.081998123067, + 12253.602252788554, + 12476.62533772366, + 12700.151252928397, + 12924.179998402775, + 13148.711574146773, + 13373.745980160398, + 13599.283216443664, + 13825.32328299655, + 14051.866179819064, + 14278.91190691122, + 14506.460464272996, + 14734.511851904404, + 14963.066069805442, + 15192.123117976107, + 15421.682996416397, + 7220.919033767602, + 7413.830644173524, + 7607.2450848490835, + 7801.162355794268, + 7995.582457009079, + 8190.505388493527, + 8385.931150247601, + 8581.859742271301, + 8778.291164564638, + 8975.2254171276, + 9172.662499960197, + 9370.602413062417, + 9569.045156434266, + 9767.990730075746, + 9967.439133986862, + 10167.390368167598, + 10367.844432617974, + 10568.801327337973, + 10770.261052327598, + 10972.22360758686, + 11174.688993115751, + 11377.657208914265, + 11581.128254982421, + 11785.102131320195, + 11989.5788379276, + 12194.558374804637, + 12400.040741951305, + 12606.025939367597, + 12812.51396705353, + 13019.504825009082, + 13226.998513234268, + 13434.995031729082, + 13643.494380493528, + 13852.496559527604, + 14062.001568831301, + 14272.009408404638, + 14482.520078247599, + 7516.761970219602, + 7726.85941136686, + 7937.459682783752, + 8148.5627844702685, + 8360.168716426415, + 8572.277478652199, + 8784.889071147601, + 8998.003493912636, + 9211.620746947308, + 9425.7408302516, + 9640.36374382553, + 9855.489487669087, + 10071.118061782268, + 10287.249466165084, + 10503.883700817529, + 10721.0207657396, + 10938.660660931308, + 11156.80338639264, + 11375.4489421236, + 11594.597328124199, + 11814.248544394419, + 12034.402590934265, + 12255.059467743753, + 12476.219174822862, + 12697.881712171602, + 12920.047079789972, + 13142.715277677971, + 13365.886305835602, + 13589.560164262866, + 13813.736852959753, + 14038.416371926267, + 14263.59872116242, + 14489.283900668197, + 14715.47191044361, + 14942.162750488642, + 15169.356420803308, + 15397.052921387602, + 7257.5376449336, + 7448.968627179525, + 7640.902439695083, + 7833.339082480266, + 8026.278555535081, + 8219.720858859528, + 8413.665992453598, + 8608.1139563173, + 8803.06475045064, + 8998.5183748536, + 9194.474829526196, + 9390.934114468417, + 9587.896229680266, + 9785.361175161746, + 9983.328950912859, + 10181.799556933598, + 10380.772993223974, + 10580.249259783972, + 10780.228356613597, + 10980.710283712862, + 11181.695041081748, + 11383.182628720268, + 11585.173046628419, + 11787.666294806193, + 11990.662373253599, + 12194.16128197064, + 12398.163020957305, + 12602.6675902136, + 12807.674989739531, + 13013.18521953508, + 13219.198279600267, + 13425.71416993508, + 13632.732890539526, + 13840.254441413605, + 14048.278822557302, + 14256.80603397064, + 14465.836075653597, + 7558.686744541602, + 7766.920807832861, + 7975.657701393752, + 8184.89742522427, + 8394.639979324413, + 8604.885363694199, + 8815.633578333604, + 9026.884623242639, + 9238.63849842131, + 9450.895203869599, + 9663.654739587531, + 9876.917105575087, + 10090.682301832267, + 10304.95032835908, + 10519.72118515553, + 10734.994872221603, + 10950.77138955731, + 11167.050737162637, + 11383.832915037601, + 11601.117923182199, + 11818.905761596414, + 12037.196430280268, + 12255.989929233752, + 12475.286258456865, + 12695.085417949598, + 12915.387407711974, + 13136.192227743973, + 13357.499878045603, + 13579.310358616864, + 13801.623669457753, + 14024.439810568272, + 14247.758781948418, + 14471.580583598197, + 14695.905215517609, + 14920.732677706645, + 15146.06297016531, + 15371.8960928936, + 7293.6295026344, + 7483.579856720323, + 7674.0330410758825, + 7864.989055701066, + 8056.447900595879, + 8248.409575760326, + 8440.874081194397, + 8633.8414168981, + 8827.311582871438, + 9021.284579114401, + 9215.760405626994, + 9410.739062409217, + 9606.220549461064, + 9802.204866782546, + 9998.69201437366, + 10195.681992234398, + 10393.174800364774, + 10591.17043876477, + 10789.668907434398, + 10988.670206373661, + 11188.174335582547, + 11388.181295061066, + 11588.691084809216, + 11789.703704826994, + 11991.219155114399, + 12193.23743567144, + 12395.758546498102, + 12598.782487594397, + 12802.309258960327, + 13006.338860595884, + 13210.871292501062, + 13415.906554675883, + 13621.444647120325, + 13827.485569834405, + 14034.029322818104, + 14241.075906071439, + 14448.625319594395, + 7600.084765398401, + 7806.455450833658, + 8013.328966538552, + 8220.705312513068, + 8428.584488757213, + 8636.966495270997, + 8845.8513320544, + 9055.238999107438, + 9265.129496430107, + 9475.5228240224, + 9686.418981884328, + 9897.817970015885, + 10109.719788417067, + 10322.124437087881, + 10535.031916028327, + 10748.442225238401, + 10962.355364718107, + 11176.771334467438, + 11391.6901344864, + 11607.111764774996, + 11823.036225333219, + 12039.463516161068, + 12256.39363725855, + 12473.826588625663, + 12691.762370262399, + 12910.200982168773, + 13129.142424344775, + 13348.586696790398, + 13568.533799505663, + 13788.983732490551, + 14009.936495745067, + 14231.39208926922, + 14453.350513062995, + 14675.811767126408, + 14898.775851459442, + 15122.242766062107, + 15346.212510934402, + 7309.506783815367, + 7498.798850621353, + 7688.5937476969775, + 7878.891475042225, + 8069.6920326571035, + 8260.995420541614, + 8452.80163869575, + 8645.110687119513, + 8837.922565812918, + 9031.23727477594, + 9225.054814008603, + 9419.375183510885, + 9614.198383282801, + 9809.524413324343, + 10005.353273635521, + 10201.684964216327, + 10398.519485066763, + 10595.856836186824, + 10793.697017576516, + 10992.04002923584, + 11190.885871164795, + 11390.234543363376, + 11590.086045831595, + 11790.440378569432, + 11991.2975415769, + 12192.657534854006, + 12394.52035840073, + 12596.886012217092, + 12799.754496303087, + 13003.125810658705, + 13206.999955283949, + 13411.376930178832, + 13616.256735343342, + 13821.639370777482, + 14027.524836481247, + 14233.913132454643, + 14440.804258697664, + 7618.321166718525, + 7823.863394359005, + 8029.908452269121, + 8236.45634044886, + 8443.507058898227, + 8651.060607617232, + 8859.116986605859, + 9067.676195864116, + 9276.738235392013, + 9486.303105189525, + 9696.37080525668, + 9906.94133559346, + 10118.01469619986, + 10329.590887075896, + 10541.669908221565, + 10754.251759636862, + 10967.336441321793, + 11180.923953276344, + 11395.01429550053, + 11609.607467994349, + 11824.703470757788, + 12040.302303790862, + 12256.403967093573, + 12473.008460665898, + 12690.11578450786, + 12907.725938619462, + 13125.838923000676, + 13344.45473765153, + 13563.573382572016, + 13783.19485776212, + 14003.31916322186, + 14223.946298951238, + 14445.076264950236, + 14666.70906121887, + 14888.844687757124, + 15111.483144565016, + 15334.624431642529, + 7329.194606870002, + 7517.664332795924, + 7706.636888991485, + 7896.112275456668, + 8086.090492191481, + 8276.571539195927, + 8467.555416469999, + 8659.0421240137, + 8851.031661827039, + 9043.524029909997, + 9236.519228262594, + 9430.017256884817, + 9624.018115776667, + 9818.521804938147, + 10013.52832436926, + 10209.037674069998, + 10405.049854040375, + 10601.564864280368, + 10798.582704789998, + 10996.103375569262, + 11194.12687661815, + 11392.65320793666, + 11591.682369524819, + 11791.214361382592, + 11991.24918351, + 12191.786835907042, + 12392.827318573703, + 12594.370631509995, + 12796.41677471593, + 12998.96574819148, + 13202.017551936668, + 13405.572185951483, + 13609.629650235927, + 13814.189944790003, + 14019.253069613704, + 14224.819024707038, + 14430.887810069997, + 7640.956032790004, + 7845.4633403692615, + 8050.473478218151, + 8255.98644633667, + 8462.002244724814, + 8668.520873382595, + 8875.542332310002, + 9083.066621507038, + 9291.093740973709, + 9499.623690710001, + 9708.65647071593, + 9918.192080991485, + 10128.230521536669, + 10338.771792351481, + 10549.815893435929, + 10761.362824790003, + 10973.412586413708, + 11185.965178307042, + 11399.020600470001, + 11612.578852902598, + 11826.63993560482, + 12041.203848576668, + 12256.270591818155, + 12471.840165329262, + 12687.91256911, + 12904.487803160378, + 13121.56586748037, + 13339.14676207, + 13557.230486929262, + 13775.817042058152, + 13994.906427456668, + 14214.498643124824, + 14434.593689062594, + 14655.191565270006, + 14876.292271747043, + 15097.895808493708, + 15320.002175510006, + 7364.2329576404, + 7551.222055406323, + 7738.713983441883, + 7926.708741747067, + 8115.206330321879, + 8304.206749166326, + 8493.709998280401, + 8683.716077664101, + 8874.22498731744, + 9065.236727240399, + 9256.751297432997, + 9448.768697895217, + 9641.288928627066, + 9834.311989628544, + 10027.83788089966, + 10221.8666024404, + 10416.398154250772, + 10611.43253633077, + 10806.969748680398, + 11003.00979129966, + 11199.552664188548, + 11396.598367347064, + 11594.146900775218, + 11792.198264472994, + 11990.752458440396, + 12189.80948267744, + 12389.369337184102, + 12589.432021960394, + 12789.99753700633, + 12991.06588232188, + 13192.637057907063, + 13394.711063761884, + 13597.287899886325, + 13800.367566280403, + 14003.950062944103, + 14208.035389877437, + 14412.623547080395, + 7681.300546716403, + 7883.9444764396585, + 8087.091236432552, + 8290.74082669507, + 8494.893247227214, + 8699.548498028997, + 8904.706579100402, + 9110.367490441437, + 9316.531232052106, + 9523.1978039324, + 9730.367206082332, + 9938.039438501884, + 10146.214501191067, + 10354.892394149882, + 10564.073117378328, + 10773.756670876402, + 10983.943054644107, + 11194.632268681444, + 11405.824312988403, + 11617.519187564998, + 11829.71689241122, + 12042.417427527065, + 12255.620792912554, + 12469.326988567658, + 12683.536014492396, + 12898.247870686773, + 13113.462557150771, + 13329.180073884401, + 13545.400420887667, + 13762.123598160548, + 13979.349605703066, + 14197.078443515218, + 14415.310111596997, + 14634.044609948409, + 14853.281938569442, + 15073.022097460105, + 15293.2650866204, + 7398.7445549456, + 7584.253024551523, + 7770.264324427084, + 7956.778454572268, + 8143.795414987078, + 8331.315205671528, + 8519.3378266256, + 8707.863277849301, + 8896.891559342637, + 9086.422671105598, + 9276.456613138196, + 9466.993385440415, + 9658.032988012264, + 9849.575420853746, + 10041.620683964862, + 10234.168777345598, + 10427.219700995973, + 10620.77345491597, + 10814.830039105596, + 11009.389453564861, + 11204.45169829375, + 11400.016773292264, + 11596.084678560417, + 11792.655414098193, + 11989.728979905598, + 12187.30537598264, + 12385.384602329303, + 12583.9666589456, + 12783.051545831528, + 12982.639262987082, + 13182.729810412264, + 13383.323188107082, + 13584.419396071526, + 13786.018434305603, + 13988.120302809304, + 14190.725001582638, + 14393.832530625596, + 7721.1183071776, + 7921.89885904486, + 8123.18224118175, + 8324.96845358827, + 8527.257496264414, + 8730.049369210197, + 8933.344072425602, + 9137.141605910638, + 9341.441969665308, + 9546.245163689602, + 9751.551187983532, + 9957.360042547087, + 10163.671727380268, + 10370.486242483083, + 10577.803587855527, + 10785.623763497604, + 10993.94676940931, + 11202.772605590637, + 11412.1012720416, + 11621.932768762197, + 11832.267095752413, + 12043.104253012267, + 12254.444240541754, + 12466.28705834086, + 12678.632706409602, + 12891.481184747976, + 13104.83249335597, + 13318.686632233603, + 13533.043601380865, + 13747.903400797752, + 13963.266030484268, + 14179.131490440419, + 14395.499780666194, + 14612.370901161607, + 14829.744851926642, + 15047.621632961309, + 15266.001244265599, + 7432.7293987856, + 7616.7572402315245, + 7801.287911947084, + 7986.321413932267, + 8171.857746187079, + 8357.89690871153, + 8544.438901505599, + 8731.483724569302, + 8919.03137790264, + 9107.081861505598, + 9295.635175378195, + 9484.691319520416, + 9674.250293932264, + 9864.312098613746, + 10054.87673356486, + 10245.944198785597, + 10437.514494275974, + 10629.58762003597, + 10822.163576065595, + 11015.242362364863, + 11208.823978933748, + 11402.908425772264, + 11597.495702880415, + 11792.58581025819, + 11988.1787479056, + 12184.274515822635, + 12380.8731140093, + 12577.974542465598, + 12775.578801191528, + 12973.685890187084, + 13172.295809452267, + 13371.408558987077, + 13571.024138791525, + 13771.142548865602, + 13971.7637892093, + 14172.887859822635, + 14374.514760705591, + 7760.409314173603, + 7959.326488184861, + 8158.746492465751, + 8358.669327016269, + 8559.094991836413, + 8760.023486926197, + 8961.454812285601, + 9163.388967914638, + 9365.825953813306, + 9568.7657699816, + 9772.208416419531, + 9976.153893127086, + 10180.602200104267, + 10385.55333735108, + 10591.007304867528, + 10796.964102653601, + 11003.423730709308, + 11210.386189034634, + 11417.851477629602, + 11625.819596494199, + 11834.290545628417, + 12043.264325032264, + 12252.740934705753, + 12462.720374648861, + 12673.2026448616, + 12884.187745343974, + 13095.675676095972, + 13307.6664371176, + 13520.160028408865, + 13733.15644996975, + 13946.655701800268, + 14160.65778390042, + 14375.162696270194, + 14590.170438909608, + 14805.68101181864, + 15021.694414997308, + 15238.210648445598, + 7466.187489160401, + 7648.734702446324, + 7831.784746001881, + 8015.337619827065, + 8199.39332392188, + 8383.95185828633, + 8569.0132229204, + 8754.577417824103, + 8940.644442997438, + 9127.214298440398, + 9314.286984152997, + 9501.862500135216, + 9689.940846387068, + 9878.522022908544, + 10067.60602969966, + 10257.192866760399, + 10447.282534090773, + 10637.875031690772, + 10828.970359560399, + 11020.568517699658, + 11212.669506108548, + 11405.273324787064, + 11598.379973735216, + 11791.989452952994, + 11986.101762440398, + 12180.716902197439, + 12375.834872224106, + 12571.455672520397, + 12767.57930308633, + 12964.205763921882, + 13161.335055027062, + 13358.967176401882, + 13557.102128046328, + 13755.739909960406, + 13954.880522144105, + 14154.523964597438, + 14354.670237320395, + 7799.173567704404, + 7996.22736385966, + 8193.783990284552, + 8391.843446979068, + 8590.405733943215, + 8789.470851176997, + 8989.038798680402, + 9189.109576453437, + 9389.683184496107, + 9590.759622808398, + 9792.338891390329, + 9994.420990241884, + 10197.005919363068, + 10400.093678753883, + 10603.684268414327, + 10807.777688344402, + 11012.373938544106, + 11217.473019013438, + 11423.074929752402, + 11629.179670760996, + 11835.787242039214, + 12042.897643587065, + 12250.510875404552, + 12458.62693749166, + 12667.245829848398, + 12876.367552474776, + 13085.992105370771, + 13296.1194885364, + 13506.749701971661, + 13717.882745676548, + 13929.518619651064, + 14141.657323895219, + 14354.298858408996, + 14567.443223192406, + 14781.090418245441, + 14995.24044356811, + 15209.893299160398, + 7499.118826069998, + 7680.185411195923, + 7861.754826591479, + 8043.827072256665, + 8226.402148191475, + 8409.480054395926, + 8593.060790869999, + 8777.144357613699, + 8961.730754627037, + 9146.819981909995, + 9332.412039462593, + 9518.506927284814, + 9705.104645376665, + 9892.205193738142, + 10079.808572369258, + 10267.914781269996, + 10456.523820440372, + 10645.635689880368, + 10835.250389589997, + 11025.367919569258, + 11215.988279818142, + 11407.111470336662, + 11598.737491124812, + 11790.866342182591, + 11983.498023509994, + 12176.632535107039, + 12370.269876973702, + 12564.410049109994, + 12759.053051515928, + 12954.198884191477, + 13149.847547136662, + 13345.999040351482, + 13542.653363835923, + 13739.81051759, + 13937.470501613703, + 14135.633315907035, + 14334.298960469994, + 7837.411067770003, + 8032.601486069258, + 8228.29473463815, + 8424.490813476667, + 8621.189722584813, + 8818.391461962594, + 9016.09603161, + 9214.303431527036, + 9413.013661713707, + 9612.226722169997, + 9811.94261289593, + 10012.161333891483, + 10212.882885156667, + 10414.10726669148, + 10615.834478495928, + 10818.06452057, + 11020.797392913704, + 11224.033095527036, + 11427.771628409999, + 11632.012991562593, + 11836.757184984815, + 12042.004208676666, + 12247.75406263815, + 12454.006746869261, + 12660.762261369997, + 12868.020606140373, + 13075.78178118037, + 13284.04578649, + 13492.812622069265, + 13702.082287918149, + 13911.854784036663, + 14122.130110424818, + 14332.908267082592, + 14544.189254010003, + 14755.973071207041, + 14968.259718673704, + 15181.049196409998, + 7531.5234095144, + 7711.109366480324, + 7891.198153715883, + 8071.789771221066, + 8252.884218995878, + 8434.481497040328, + 8616.581605354399, + 8799.184543938098, + 8982.290312791438, + 9165.898911914397, + 9350.010341306994, + 9534.624600969213, + 9719.741690901066, + 9905.361611102546, + 10091.484361573659, + 10278.109942314397, + 10465.238353324772, + 10652.86959460477, + 10841.003666154398, + 11029.640567973658, + 11218.780300062548, + 11408.422862421066, + 11598.568255049217, + 11789.216477946993, + 11980.367531114396, + 12172.021414551442, + 12364.1781282581, + 12556.837672234395, + 12750.00004648033, + 12943.665250995877, + 13137.833285781062, + 13332.50415083588, + 13527.677846160324, + 13723.354371754403, + 13919.533727618104, + 14116.215913751434, + 14313.400930154397, + 7875.121814370403, + 8068.44885481366, + 8262.27872552655, + 8456.611426509067, + 8651.446957761213, + 8846.785319282993, + 9042.6265110744, + 9238.970533135436, + 9435.817385466107, + 9633.1670680664, + 9831.01958093633, + 10029.374924075884, + 10228.233097485067, + 10427.59410116388, + 10627.45793511233, + 10827.824599330404, + 11028.694093818107, + 11230.066418575441, + 11431.941573602402, + 11634.319558898997, + 11837.20037446522, + 12040.584020301063, + 12244.470496406553, + 12448.85980278166, + 12653.7519394264, + 12859.146906340771, + 13065.044703524769, + 13271.445330978398, + 13478.348788701664, + 13685.75507669455, + 13893.664194957068, + 14102.07614348922, + 14310.990922290992, + 14520.408531362405, + 14730.328970703442, + 14940.752240314107, + 15151.678340194403, + 7563.4012394936, + 7741.506568299525, + 7920.114727375083, + 8099.225716720266, + 8278.839536335077, + 8458.956186219526, + 8639.575666373601, + 8820.6979767973, + 9002.32311749064, + 9184.4510884536, + 9367.081889686195, + 9550.215521188416, + 9733.851982960268, + 9917.991275001747, + 10102.63339731286, + 10287.7783498936, + 10473.426132743974, + 10659.576745863973, + 10846.2301892536, + 11033.386462912864, + 11221.045566841749, + 11409.20750104027, + 11597.872265508422, + 11787.039860246196, + 11976.710285253599, + 12166.883540530642, + 12357.559626077307, + 12548.738541893596, + 12740.420287979527, + 12932.604864335079, + 13125.292270960266, + 13318.48250785508, + 13512.175575019528, + 13706.371472453606, + 13901.070200157303, + 14096.271758130637, + 14291.976146373598, + 7912.3058075056015, + 8103.7694700928605, + 8295.735962949753, + 8488.205286076269, + 8681.177439472414, + 8874.652423138195, + 9068.630237073605, + 9263.110881278639, + 9458.09435575331, + 9653.580660497602, + 9849.569795511532, + 10046.06176079509, + 10243.05655634827, + 10440.554182171085, + 10638.554638263531, + 10837.057924625604, + 11036.06404125731, + 11235.572988158641, + 11435.584765329604, + 11636.0993727702, + 11837.116810480416, + 12038.637078460268, + 12240.660176709755, + 12443.186105228866, + 12646.2148640176, + 12849.746453075977, + 13053.780872403975, + 13258.318122001601, + 13463.358201868868, + 13668.901112005751, + 13874.946852412266, + 14081.495423088421, + 14288.546824034198, + 14496.10105524961, + 14704.158116734643, + 14912.71800848931, + 15121.780730513605, + 7594.752316007599, + 7771.377016653525, + 7948.504547569083, + 8126.134908754267, + 8304.26810020908, + 8482.904121933527, + 8662.042973927599, + 8841.6846561913, + 9021.82916872464, + 9202.476511527599, + 9383.626684600194, + 9565.279687942417, + 9747.435521554262, + 9930.094185435746, + 10113.25567958686, + 10296.920004007596, + 10481.087158697974, + 10665.757143657971, + 10850.929958887598, + 11036.605604386861, + 11222.784080155747, + 11409.465386194264, + 11596.649522502417, + 11784.336489080191, + 11972.5262859276, + 12161.218913044639, + 12350.414370431303, + 12540.112658087599, + 12730.313776013532, + 12921.017724209081, + 13112.224502674268, + 13303.934111409082, + 13496.146550413527, + 13688.861819687607, + 13882.079919231306, + 14075.80084904464, + 14270.024609127595, + 7948.963047175601, + 8138.563331906859, + 8328.666446907753, + 8519.272392178269, + 8710.381167718415, + 8901.992773528198, + 9094.107209607604, + 9286.724475956635, + 9479.84457257531, + 9673.467499463603, + 9867.593256621532, + 10062.221844049087, + 10257.35326174627, + 10452.98750971308, + 10649.124587949524, + 10845.7644964556, + 11042.907235231307, + 11240.55280427664, + 11438.701203591601, + 11637.352433176196, + 11836.506493030416, + 12036.163383154268, + 12236.323103547753, + 12436.985654210861, + 12638.1510351436, + 12839.819246345976, + 13041.990287817976, + 13244.664159559605, + 13447.840861570867, + 13651.520393851752, + 13855.702756402268, + 14060.387949222422, + 14265.575972312197, + 14471.266825671608, + 14677.460509300643, + 14884.15702319931, + 15091.3563673676, + 7625.5766390563995, + 7800.720711542325, + 7976.367614297884, + 8152.517347323066, + 8329.169910617878, + 8506.32530418233, + 8683.9835280164, + 8862.1445821201, + 9040.80846649344, + 9219.975181136399, + 9399.644726048997, + 9579.817101231218, + 9760.492306683067, + 9941.670342404548, + 10123.35120839566, + 10305.5349046564, + 10488.221431186772, + 10671.410787986773, + 10855.102975056398, + 11039.297992395661, + 11223.995840004553, + 11409.196517883063, + 11594.900026031217, + 11781.106364448991, + 11967.8155331364, + 12155.027532093434, + 12342.742361320106, + 12530.960020816397, + 12719.68051058233, + 12908.903830617883, + 13098.62998092306, + 13288.858961497881, + 13479.590772342326, + 13670.825413456403, + 13862.562884840107, + 14054.803186493436, + 14247.546318416396, + 7985.093533380403, + 8172.830440255659, + 8361.07017740055, + 8549.812744815068, + 8739.058142499212, + 8928.806370452996, + 9119.057428676402, + 9309.811317169439, + 9501.068035932107, + 9692.827584964401, + 9885.089964266332, + 10077.855173837886, + 10271.123213679064, + 10464.89408378988, + 10659.16778417033, + 10853.944314820403, + 11049.223675740108, + 11245.005866929438, + 11441.290888388401, + 11638.078740117, + 11835.369422115215, + 12033.162934383068, + 12231.459276920552, + 12430.258449727664, + 12629.560452804402, + 12829.36528615077, + 13029.672949766773, + 13230.483443652402, + 13431.796767807667, + 13633.612922232554, + 13835.931906927064, + 14038.753721891218, + 14242.078367124994, + 14445.905842628405, + 14650.236148401444, + 14855.069284444106, + 15060.405250756401, + 7655.8742086400025, + 7829.537652965925, + 8003.703927561483, + 8178.37303242667, + 8353.54496756148, + 8529.219732965927, + 8705.39732864, + 8882.0777545837, + 9059.26101079704, + 9236.947097279997, + 9415.136014032596, + 9593.827761054816, + 9773.022338346667, + 9952.719745908144, + 10132.91998373926, + 10313.62305184, + 10494.828950210376, + 10676.537678850369, + 10858.749237759997, + 11041.463626939261, + 11224.680846388146, + 11408.400896106663, + 11592.623776094819, + 11777.349486352594, + 11962.57802688, + 12148.309397677036, + 12334.543598743703, + 12521.280630079998, + 12708.520491685933, + 12896.26318356148, + 13084.508705706668, + 13273.257058121482, + 13462.50824080593, + 13652.262253760004, + 13842.519096983704, + 14033.27877047704, + 14224.541274239995, + 8020.6972661200025, + 8206.57079513926, + 8392.947154428151, + 8579.826343986671, + 8767.208363814816, + 8955.0932139126, + 9143.480894280001, + 9332.371404917038, + 9521.764745823706, + 9711.660917000005, + 9902.059918445932, + 10092.961750161487, + 10284.36641214667, + 10476.273904401483, + 10668.684226925929, + 10861.597379720002, + 11055.013362783708, + 11248.932176117038, + 11443.353819720001, + 11638.278293592599, + 11833.705597734817, + 12029.63573214667, + 12226.068696828153, + 12423.00449177926, + 12620.443116999997, + 12818.384572490379, + 13016.828858250372, + 13215.775974280003, + 13415.225920579263, + 13615.178697148152, + 13815.634303986668, + 14016.592741094822, + 14218.054008472598, + 14420.01810612001, + 14622.485034037045, + 14825.454792223709, + 15028.927380680003, + 7685.645024758401, + 7857.827840924324, + 8030.513487359882, + 8203.701964065067, + 8377.393271039879, + 8551.587408284327, + 8726.284375798401, + 8901.484173582101, + 9077.186801635438, + 9253.3922599584, + 9430.100548550996, + 9607.311667413218, + 9785.025616545063, + 9963.242395946547, + 10141.96200561766, + 10321.184445558398, + 10500.909715768776, + 10681.137816248769, + 10861.8687469984, + 11043.10250801766, + 11224.839099306548, + 11407.078520865061, + 11589.820772693216, + 11773.065854790993, + 11956.813767158394, + 12141.064509795442, + 12325.818082702102, + 12511.074485878396, + 12696.833719324326, + 12883.095783039877, + 13069.860677025064, + 13257.128401279882, + 13444.898955804325, + 13633.172340598401, + 13821.948555662102, + 14011.227600995438, + 14201.009476598398, + 8055.774245394401, + 8239.78439655766, + 8424.297377990551, + 8609.313189693068, + 8794.831831665213, + 8980.853303906993, + 9167.377606418402, + 9354.404739199437, + 9541.934702250106, + 9729.967495570401, + 9918.503119160328, + 10107.541573019886, + 10297.082857149066, + 10487.126971547885, + 10677.673916216332, + 10868.723691154404, + 11060.276296362106, + 11252.33173183944, + 11444.8899975864, + 11637.951093602998, + 11831.51501988922, + 12025.58177644507, + 12220.15136327055, + 12415.22378036566, + 12610.799027730398, + 12806.877105364778, + 13003.458013268773, + 13200.541751442397, + 13398.128319885664, + 13596.21771859855, + 13794.80994758107, + 13993.90500683322, + 14193.502896354994, + 14393.603616146405, + 14594.207166207441, + 14795.313546538107, + 14996.922757138404, + 7714.889087411601, + 7885.591275417524, + 8056.796293693083, + 8228.504142238267, + 8400.71482105308, + 8573.428330137525, + 8746.644669491601, + 8920.3638391153, + 9094.58583900864, + 9269.310669171598, + 9444.538329604195, + 9620.268820306415, + 9796.502141278264, + 9973.238292519745, + 10150.477274030858, + 10328.219085811597, + 10506.463727861976, + 10685.21120018197, + 10864.4615027716, + 11044.214635630862, + 11224.470598759744, + 11405.229392158266, + 11586.491015826417, + 11768.255469764194, + 11950.522753971594, + 12133.292868448638, + 12316.565813195304, + 12500.341588211597, + 12684.620193497532, + 12869.40162905308, + 13054.685894878265, + 13240.47299097308, + 13426.762917337526, + 13613.555673971601, + 13800.8512608753, + 13988.649678048634, + 14176.950925491596, + 8090.324471203601, + 8272.47124451086, + 8455.120848087749, + 8638.273281934267, + 8821.928546050414, + 9006.086640436195, + 9190.747565091602, + 9375.911320016636, + 9561.577905211308, + 9747.7473206756, + 9934.41956640953, + 10121.594642413089, + 10309.272548686266, + 10497.45328522908, + 10686.136852041525, + 10875.323249123605, + 11065.012476475307, + 11255.20453409664, + 11445.899421987599, + 11637.097140148197, + 11828.79768857842, + 12021.001067278265, + 12213.70727624775, + 12406.91631548686, + 12600.6281849956, + 12794.842884773976, + 12989.560414821972, + 13184.780775139598, + 13380.503965726863, + 13576.729986583749, + 13773.458837710263, + 13970.69051910642, + 14168.425030772192, + 14366.662372707608, + 14565.402544912642, + 14764.645547387307, + 14964.391380131603, + 7743.6063965996, + 7912.827956445524, + 8082.552346561083, + 8252.779566946268, + 8423.509617601081, + 8594.74249852553, + 8766.478209719598, + 8938.7167511833, + 9111.45812291664, + 9284.702324919599, + 9458.449357192196, + 9632.699219734415, + 9807.451912546267, + 9982.707435627746, + 10158.46578897886, + 10334.726972599601, + 10511.490986489975, + 10688.75783064997, + 10866.527505079599, + 11044.80000977886, + 11223.57534474775, + 11402.85350998626, + 11582.634505494416, + 11762.918331272193, + 11943.704987319597, + 12124.99447363664, + 12306.786790223303, + 12489.081937079594, + 12671.879914205527, + 12855.180721601084, + 13038.984359266266, + 13223.290827201085, + 13408.100125405525, + 13593.412253879605, + 13779.227212623302, + 13965.545001636638, + 14152.365620919598, + 8124.347943547603, + 8304.631338998859, + 8485.41756471975, + 8666.706620710269, + 8848.498506970413, + 9030.793223500195, + 9213.590770299601, + 9396.891147368638, + 9580.694354707308, + 9765.0003923156, + 9949.80926019353, + 10135.120958341087, + 10320.935486758266, + 10507.25284544508, + 10694.07303440153, + 10881.3960536276, + 11069.221903123307, + 11257.550582888638, + 11446.382092923603, + 11635.716433228194, + 11825.553603802418, + 12015.893604646268, + 12206.736435759753, + 12398.082097142864, + 12589.9305887956, + 12782.281910717973, + 12975.136062909969, + 13168.493045371597, + 13362.352858102864, + 13556.715501103748, + 13751.580974374265, + 13946.94927791442, + 14142.820411724193, + 14339.194375803607, + 14536.07117015264, + 14733.450794771306, + 14931.3332496596, + 7771.7969523224, + 7939.537884008324, + 8107.7816459638825, + 8276.528238189068, + 8445.777660683878, + 8615.529913448327, + 8785.7849964824, + 8956.5429097861, + 9127.80365335944, + 9299.567227202398, + 9471.833631314998, + 9644.602865697216, + 9817.874930349068, + 9991.649825270546, + 10165.92755046166, + 10340.708105922398, + 10515.991491652774, + 10691.777707652773, + 10868.0667539224, + 11044.858630461658, + 11222.153337270547, + 11399.950874349062, + 11578.251241697217, + 11757.054439314994, + 11936.3604672024, + 12116.169325359435, + 12296.4810137861, + 12477.2955324824, + 12658.612881448329, + 12840.43306068388, + 13022.756070189065, + 13205.581909963881, + 13388.910580008325, + 13572.742080322403, + 13757.076410906106, + 13941.913571759438, + 14127.253562882397, + 8157.8446624264025, + 8336.264680021659, + 8515.18752788655, + 8694.613206021068, + 8874.541714425213, + 9054.973053098995, + 9235.907222042402, + 9417.344221255436, + 9599.284050738106, + 9781.7267104904, + 9964.672200512328, + 10148.120520803885, + 10332.071671365065, + 10516.525652195882, + 10701.48246329633, + 10886.9421046664, + 11072.904576306108, + 11259.369878215439, + 11446.338010394402, + 11633.808972842995, + 11821.782765561213, + 12010.25938854906, + 12199.238841806551, + 12388.721125333659, + 12578.706239130399, + 12769.194183196772, + 12960.184957532769, + 13151.6785621384, + 13343.674997013664, + 13536.174262158549, + 13729.176357573062, + 13922.681283257214, + 14116.689039210993, + 14311.199625434405, + 14506.21304192744, + 14701.729288690107, + 14897.7483657224, + 7799.460754580001, + 7965.721058105924, + 8132.484191901483, + 8299.750155966669, + 8467.518950301479, + 8635.790574905926, + 8804.565029779998, + 8973.8423149237, + 9143.62243033704, + 9313.905376019999, + 9484.691151972595, + 9655.979758194817, + 9827.771194686666, + 10000.065461448145, + 10172.86255847926, + 10346.16248578, + 10519.965243350374, + 10694.270831190373, + 10869.079249299997, + 11044.390497679262, + 11220.204576328151, + 11396.521485246665, + 11573.34122443482, + 11750.663793892592, + 11928.48919362, + 12106.817423617042, + 12285.648483883704, + 12464.982374420002, + 12644.81909522593, + 12825.158646301483, + 13006.00102764667, + 13187.346239261482, + 13369.194281145928, + 13551.545153300005, + 13734.398855723706, + 13917.755388417041, + 14101.614751379999, + 8190.814627840004, + 8367.371267579261, + 8544.43073758815, + 8721.99303786667, + 8900.058168414815, + 9078.626129232598, + 9257.696920320002, + 9437.270541677039, + 9617.346993303709, + 9797.926275200001, + 9979.00838736593, + 10160.593329801484, + 10342.68110250667, + 10525.271705481486, + 10708.36513872593, + 10891.961402240007, + 11076.060496023709, + 11260.662420077038, + 11445.767174400002, + 11631.374758992595, + 11817.48517385482, + 12004.098418986669, + 12191.214494388156, + 12378.833400059264, + 12566.955136000004, + 12755.579702210376, + 12944.707098690373, + 13134.337325440003, + 13324.470382459265, + 13515.106269748154, + 13706.244987306667, + 13897.886535134825, + 14090.030913232597, + 14282.678121600007, + 14475.828160237046, + 14669.481029143708, + 14863.636728320003, + 7826.597803372401, + 7991.3774787383245, + 8156.659984373883, + 8322.445320279066, + 8488.733486453879, + 8655.524482898327, + 8822.818309612398, + 8990.614966596102, + 9158.91445384944, + 9327.7167713724, + 9497.021919164998, + 9666.829897227217, + 9837.140705559066, + 10007.954344160546, + 10179.27081303166, + 10351.090112172398, + 10523.412241582775, + 10696.237201262767, + 10869.564991212399, + 11043.39561143166, + 11217.729061920547, + 11392.565342679069, + 11567.904453707217, + 11743.746395004993, + 11920.091166572398, + 12096.938768409434, + 12274.289200516107, + 12452.1424628924, + 12630.49855553833, + 12809.357478453883, + 12988.719231639068, + 13168.583815093882, + 13348.951228818327, + 13529.821472812408, + 13711.194547076104, + 13893.070451609441, + 14075.449186412394, + 8223.257839788404, + 8397.951101671659, + 8573.147193824552, + 8748.846116247068, + 8925.047868939217, + 9101.752451900998, + 9278.959865132403, + 9456.67010863344, + 9634.883182404108, + 9813.599086444401, + 9992.817820754331, + 10172.539385333888, + 10352.763780183068, + 10533.491005301881, + 10714.721060690328, + 10896.453946348405, + 11078.689662276109, + 11261.428208473442, + 11444.669584940402, + 11628.413791676998, + 11812.660828683216, + 11997.41069595907, + 12182.663393504556, + 12368.418921319664, + 12554.6772794044, + 12741.438467758777, + 12928.702486382774, + 13116.4693352764, + 13304.739014439667, + 13493.511523872554, + 13682.78686357507, + 13872.56503354722, + 14062.846033789, + 14253.629864300405, + 14444.916525081442, + 14636.706016132111, + 14828.9983374524, + 7829.5805177535685, + 7994.195678747881, + 8159.313670011828, + 8324.934491545402, + 8491.058143348602, + 8657.68462542144, + 8824.8139377639, + 8992.44608037599, + 9160.581053257716, + 9329.218856409065, + 9498.35948983005, + 9668.002953520661, + 9838.149247480897, + 10008.798371710767, + 10179.950326210268, + 10351.605110979397, + 10523.762726018162, + 10696.423171326547, + 10869.586446904563, + 11043.252552752212, + 11217.421488869491, + 11392.093255256394, + 11567.267851912939, + 11742.945278839103, + 11919.125536034895, + 12095.808623500325, + 12272.994541235379, + 12450.683289240062, + 12628.874867514382, + 12807.569276058317, + 12986.766514871893, + 13166.466583955098, + 13346.669483307931, + 13527.375212930396, + 13708.583772822487, + 13890.295162984208, + 14072.509383415552, + 8226.830128325233, + 8401.316348058854, + 8576.305398062113, + 8751.797278334998, + 8927.791988877509, + 9104.289529689657, + 9281.28990077143, + 9458.79310212283, + 9636.799133743869, + 9815.307995634526, + 9994.319687794825, + 10173.834210224744, + 10353.851562924294, + 10534.371745893475, + 10715.394759132285, + 10896.92060264073, + 11078.949276418802, + 11261.480780466496, + 11444.515114783826, + 11628.052279370784, + 11812.092274227374, + 11996.63509935359, + 12181.68075474944, + 12367.22924041492, + 12553.280556350022, + 12739.834702554765, + 12926.891679029131, + 13114.451485773123, + 13302.514122786752, + 13491.079590070009, + 13680.147887622885, + 13869.719015445407, + 14059.79297353755, + 14250.36976189933, + 14441.449380530732, + 14633.031829431762, + 14825.117108602422, + 8430.77783127, + 8546.038720395925, + 8661.802439791481, + 8778.068989456668, + 8894.838369391478, + 9012.110579595927, + 9129.885620070003, + 9248.163490813702, + 9366.944191827039, + 9486.227723109998, + 9606.014084662595, + 9726.303276484818, + 9847.095298576667, + 9968.390150938147, + 10090.187833569262, + 10212.488346469998, + 10335.291689640375, + 10458.597863080375, + 10582.406866789997, + 10706.718700769261, + 10831.533365018147, + 10956.850859536666, + 11082.671184324816, + 11208.994339382594, + 11335.820324709995, + 11463.14914030704, + 11590.980786173704, + 11719.315262309996, + 11848.152568715926, + 11977.49270539148, + 12107.335672336667, + 12237.681469551479, + 12368.530097035931, + 12499.881554790003, + 12631.735842813707, + 12764.092961107033, + 12896.952909669999, + 9004.899546570003, + 9117.273171269257, + 9230.149626238148, + 9343.528911476667, + 9457.411026984815, + 9571.795972762593, + 9686.683748809999, + 9802.074355127037, + 9917.967791713707, + 10034.364058570001, + 10151.263155695926, + 10268.665083091486, + 10386.569840756667, + 10504.97742869148, + 10623.887846895926, + 10743.301095370001, + 10863.217174113706, + 10983.636083127038, + 11104.55782241, + 11225.982391962594, + 11347.909791784814, + 11470.340021876666, + 11593.273082238155, + 11716.708972869259, + 11840.647693769999, + 11965.089244940375, + 12090.033626380371, + 12215.480838090001, + 12341.430880069263, + 12467.88375231815, + 12594.839454836667, + 12722.297987624817, + 12850.259350682596, + 12978.723544010001, + 13107.690567607042, + 13237.160421473704, + 13367.133105610003 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 5.538223111673924, + "volume": 1.514164 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/QAHV_N136TAU_HPB_SP.json b/examples/QAHV_N136TAU_HPB_SP.json new file mode 100644 index 0000000..3532743 --- /dev/null +++ b/examples/QAHV_N136TAU_HPB_SP.json @@ -0,0 +1,1176 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 4.0, + "maximum_refrigerant_temperature": 353.2055555555555, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 248.14999999999998, + 249.14999999999998, + 251.14999999999998, + 253.14999999999998, + 255.14999999999998, + 257.15, + 259.15, + 261.15, + 263.15, + 265.15, + 267.15, + 269.15, + 271.15, + 273.15, + 275.15, + 277.15, + 279.15, + 281.15, + 283.15, + 285.15, + 287.15, + 289.15, + 291.15, + 293.15, + 295.15, + 297.15, + 299.15, + 301.15, + 303.15, + 305.15, + 307.15, + 309.15, + 311.15, + 313.15 + ], + "heat_source_temperature": [ + 278.15, + 282.15, + 290.15, + 297.15, + 302.15 + ], + "outlet_temperature": [ + 333.15, + 343.15, + 353.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 19497.86377105899, + 19075.71799791074, + 18266.612208171093, + 17321.17684907614, + 16468.96924735144, + 19497.86377105899, + 19075.71799791074, + 18266.612208171093, + 17321.17684907614, + 16468.96924735144, + 19305.34587686165, + 18927.210998030172, + 18017.650880389356, + 17065.159167919715, + 16386.556194907593, + 20394.934714345098, + 19955.190589889644, + 19088.925895378015, + 18059.94422863198, + 17249.942224210463, + 20394.934714345098, + 19955.190589889644, + 19088.925895378015, + 18059.94422863198, + 17249.942224210463, + 20068.442989259092, + 19673.26173122385, + 18733.048261652722, + 17784.635551676485, + 17056.97144892632, + 22101.10989590932, + 21608.60487437826, + 20645.586120677213, + 19590.21907196317, + 18738.001799051915, + 22101.10989590932, + 21608.60487437826, + 20645.586120677213, + 19590.21907196317, + 18738.001799051915, + 21799.005055205507, + 21379.99184098881, + 20286.46229471728, + 19280.828426580258, + 18487.763881074818, + 23824.864389429084, + 23276.079976240195, + 22228.624942617065, + 21133.693421422966, + 20215.527317349177, + 23824.864389429084, + 23276.079976240195, + 22228.624942617065, + 21133.693421422966, + 20215.527317349177, + 23543.189251067284, + 23056.042858143966, + 21931.856015313904, + 20834.25043667972, + 20008.484147047344, + 25583.810969228944, + 24985.774411235136, + 23811.68247991104, + 22642.859648127072, + 21661.368106280916, + 25583.810969228944, + 24985.774411235136, + 23811.68247991104, + 22642.859648127072, + 21661.368106280916, + 25232.879182191093, + 24681.008445867385, + 23536.388373109745, + 22305.915216629957, + 21447.440209363114, + 27325.17024667092, + 26663.796342673053, + 25381.539913431225, + 24225.915869435674, + 23170.540161413082, + 27325.17024667092, + 26663.796342673053, + 25381.539913431225, + 24225.915869435674, + 23170.540161413082, + 26908.93654715075, + 26357.074544111525, + 25089.797213345886, + 23859.331240215924, + 22919.106395281993, + 28996.153803417852, + 28384.04616202688, + 26977.772898113486, + 25703.422487035506, + 24669.158841725955, + 28996.153803417852, + 28384.04616202688, + 26977.772898113486, + 25703.422487035506, + 24669.158841725955, + 28557.757243454565, + 27910.499594826768, + 26622.783767096178, + 25322.816588814778, + 24309.012523189027, + 30674.182950978236, + 29998.748409041604, + 28574.002758884424, + 27212.59575452135, + 26083.357059081183, + 30674.182950978236, + 29998.748409041604, + 28574.002758884424, + 27212.59575452135, + 26083.357059081183, + 30230.40102080325, + 29617.21927985346, + 28184.379677603625, + 26769.95324949049, + 25780.665345119647, + 32373.33410444691, + 31697.900323513684, + 30183.439162603867, + 28668.999754131088, + 27603.07126291764, + 32373.33410444691, + 31697.900323513684, + 30183.439162603867, + 28668.999754131088, + 27603.07126291764, + 31937.122776734985, + 31242.173405362682, + 29770.509287968944, + 28356.072994613318, + 27235.972863330655, + 34209.667692038216, + 33344.26918624584, + 31779.68552593077, + 30294.261724766566, + 29091.135005466098, + 34209.667692038216, + 33344.26918624584, + 31779.68552593077, + 30294.261724766566, + 29091.135005466098, + 33592.74656686237, + 32948.898667459864, + 31389.33728710248, + 29868.613144508872, + 28715.81435825904, + 35687.18104515046, + 34885.096212310804, + 33243.9995706602, + 31697.895215455723, + 30484.226600790447, + 35687.18104515046, + 34885.096212310804, + 33243.9995706602, + 31697.895215455723, + 30484.226600790447, + 35135.93824390398, + 34369.46525953399, + 32771.065633045655, + 31160.42130748041, + 29934.022475164238, + 36964.17217462943, + 36077.665692515395, + 34668.74065255201, + 32974.87752355788, + 31708.450120544487, + 36964.17217462943, + 36077.665692515395, + 34668.74065255201, + 32974.87752355788, + 31708.450120544487, + 36392.997126566406, + 35626.49383259657, + 34046.51435675636, + 32264.156018316517, + 30857.89649771264, + 38283.36292668461, + 37396.87633470593, + 36053.91475329789, + 34251.881764007616, + 32964.323175307, + 38283.36292668461, + 37396.87633470593, + 36053.91475329789, + 34251.881764007616, + 32964.323175307, + 37772.682879975204, + 36985.751294817775, + 35256.54366015751, + 33351.55315020834, + 31822.661704161917, + 39971.96102831958, + 38568.31278559179, + 37465.47049570003, + 35560.53228098007, + 34167.44752677575, + 39971.96102831958, + 38568.31278559179, + 37465.47049570003, + 35560.53228098007, + 34167.44752677575, + 39009.291147088734, + 38181.47802000118, + 36450.22389156849, + 34357.187789580385, + 32640.251461455562, + 39982.50147137267, + 39011.56619735072, + 37927.177690524986, + 36088.21673666243, + 34695.1252036915, + 39982.50147137267, + 39011.56619735072, + 37927.177690524986, + 36088.21673666243, + 34695.1252036915, + 39612.25697231621, + 38784.44754746098, + 37014.371765847514, + 34962.20035623102, + 33237.096134311876, + 39982.50362420131, + 39982.51037877493, + 39985.152693111675, + 39961.4101731187, + 39929.74376267075, + 39982.50362420131, + 39982.51037877493, + 39985.152693111675, + 39961.4101731187, + 39929.74376267075, + 40000.603894795735, + 40010.83243037419, + 40014.921255733854, + 39630.64540971374, + 37807.429710284014, + 39982.51317698677, + 39961.40359286385, + 39998.34147657338, + 39993.06532546497, + 39961.40976436159, + 39982.51317698677, + 39961.40359286385, + 39998.34147657338, + 39993.06532546497, + 39961.40976436159, + 40031.27706081055, + 40010.83570497827, + 40006.74099838775, + 40014.92321483647, + 39998.572343662025, + 39971.958997125905, + 39982.514546299935, + 39998.33419012684, + 39982.515024228094, + 39993.06540492868, + 39971.958997125905, + 39982.514546299935, + 39998.33419012684, + 39982.515024228094, + 39993.06540492868, + 40010.838614374494, + 40000.60650653532, + 40014.92684842969, + 40006.747331547864, + 40006.74834066397, + 39982.51511844119, + 40003.61518088236, + 39998.33928701817, + 39971.956919010154, + 39982.51228237191, + 39982.51511844119, + 40003.61518088236, + 39998.33928701817, + 39971.956919010154, + 39982.51228237191, + 40021.057799483104, + 40010.832420077626, + 40023.09942269573, + 40014.925500480655, + 40023.0990861197, + 39982.5102951824, + 40003.61869797937, + 39998.336403793954, + 39971.94933600994, + 39993.063134298936, + 39982.5102951824, + 40003.61869797937, + 39998.336403793954, + 39971.94933600994, + 39993.063134298936, + 40021.05040515105, + 40000.609326678255, + 40014.92384297045, + 40014.92151401212, + 40023.09906371962, + 39982.514285320765, + 40003.614676317295, + 39998.33471023026, + 39971.95946386452, + 39993.060629990876, + 39982.514285320765, + 40003.614676317295, + 39998.33471023026, + 39971.95946386452, + 39993.060629990876, + 40021.057848555065, + 40000.6159382718, + 40014.91967114362, + 40014.91175430426, + 40023.10335968129, + 39982.510580309565, + 40003.61583807908, + 39998.34256919803, + 39971.959420364336, + 39993.06467109314, + 39982.510580309565, + 40003.61583807908, + 39998.34256919803, + 39971.959420364336, + 39993.06467109314, + 40021.05511706437, + 40000.605594117194, + 40014.914912578155, + 40014.9214547416, + 40023.09454794208, + 39993.06051337273, + 40003.61945876078, + 39998.33557181648, + 39971.952141949456, + 39993.065791483634, + 39993.06051337273, + 40003.61945876078, + 39998.33557181648, + 39971.952141949456, + 39993.065791483634, + 40021.05359419967, + 40000.603517959375, + 40014.91447333439, + 40014.91363157433, + 40023.09194307021, + 39993.06709345259, + 40003.6168830077, + 39998.33516590634, + 39971.95122509653, + 39993.06073042672, + 39993.06709345259, + 40003.6168830077, + 39998.33516590634, + 39971.95122509653, + 39993.06073042672, + 40021.04554552277, + 40000.60546682648, + 40014.92251040177, + 40014.91691702295, + 40023.10143082637, + 39982.50954957935, + 40003.6168830077, + 39998.33647048319, + 39971.950622392535, + 39993.067868183425, + 39982.50954957935, + 40003.6168830077, + 39998.33647048319, + 39971.950622392535, + 39993.067868183425, + 40021.05540811437, + 40000.61320506527, + 40014.92085101465, + 40014.922400248346, + 40023.09721967218, + 39993.06374868843, + 40003.6168830077, + 39998.33610509235, + 39971.95096233942, + 39993.06124225347, + 39993.06374868843, + 40003.6168830077, + 39998.33610509235, + 39971.95096233942, + 39993.06124225347, + 40021.057083312844, + 40000.61308730505, + 40014.9156463427, + 40014.91856223966, + 40023.08982644207, + 39993.060086477446, + 40003.6168830077, + 39998.33803902207, + 39971.954425801654, + 39993.05955237562, + 39993.060086477446, + 40003.6168830077, + 39998.33803902207, + 39971.954425801654, + 39993.05955237562, + 40021.04746052928, + 40000.60837778565, + 40014.92313516783, + 40014.92081452117, + 40023.09084435882, + 39971.950716725616, + 40003.6196680901, + 39998.339570044525, + 39971.954425801654, + 39993.06670181084, + 39971.950716725616, + 40003.6196680901, + 39998.339570044525, + 39971.954425801654, + 39993.06670181084, + 40021.05158504007, + 40000.61166396923, + 40014.918986740035, + 40014.91543703439, + 40023.092609131556, + 39993.06331607138, + 40003.615925717444, + 39998.339570044525, + 39971.95330797906, + 39993.06585784988, + 39993.06331607138, + 40003.615925717444, + 39998.339570044525, + 39971.95330797906, + 39993.06585784988, + 40021.0487177291, + 40000.61437408074, + 40014.91534080138, + 40014.914167800074, + 40023.09936851698, + 39993.0608029837, + 40003.6145294234, + 39998.34148056321, + 39971.954425801654, + 39993.06670181084, + 39993.0608029837, + 40003.6145294234, + 39998.34148056321, + 39971.954425801654, + 39993.06670181084, + 40021.04796617629, + 40000.60425555776, + 40014.91534080138, + 40014.91460195405, + 40023.09932482379, + 40003.61627433597, + 40003.61816293008, + 39998.339570044525, + 39971.954425801654, + 39993.06670181084, + 40003.61627433597, + 40003.61816293008, + 39998.339570044525, + 39971.954425801654, + 39993.06670181084, + 40021.056703723596, + 40000.60425555776, + 40014.9202186694, + 40014.92381726952, + 40023.09842929096, + 40003.61655557729, + 40003.6130287117, + 39998.33803902207, + 39971.95394669555, + 39993.06585784988, + 40003.61655557729, + 40003.6130287117, + 39998.33803902207, + 39971.95394669555, + 39993.06585784988, + 40021.04660088496, + 40000.60887241812, + 40014.9202186694, + 40014.92381726952, + 40023.09842929096, + 40003.61851768185, + 40003.61126004511, + 39998.339570044525, + 39971.95330797906, + 39993.06670181084, + 40003.61851768185, + 40003.61126004511, + 39998.339570044525, + 39971.95330797906, + 39993.06670181084, + 40021.04660088496, + 40000.60887241812, + 40014.917843687486, + 40014.92381726952, + 40023.09559143076, + 40024.721443974144, + 40003.61601214185, + 39998.337514349856, + 39971.954425801654, + 39993.06670181084, + 40024.721443974144, + 40003.61601214185, + 39998.337514349856, + 39971.954425801654, + 39993.06670181084, + 40021.0487177291, + 40000.60425555776, + 40014.917843687486, + 40014.92381726952, + 40023.09842929096 + ], + "input_power": [ + 16563.95642527562, + 16743.366977890582, + 16732.81541588904, + 16753.922539726093, + 16775.02966356315, + 16563.95642527562, + 16743.366977890582, + 16732.81541588904, + 16753.922539726093, + 16775.02966356315, + 17016.101656593502, + 17103.70002035954, + 17171.44220836131, + 17253.201814495907, + 17318.609099420188, + 16595.617111031173, + 16764.47510168613, + 16796.13578744171, + 16796.13578744171, + 16848.904596992837, + 16595.617111031173, + 16764.47510168613, + 16796.13578744171, + 16796.13578744171, + 16848.904596992837, + 17080.339990041306, + 17150.418081079042, + 17228.67483261817, + 17318.609099420188, + 17400.36770559626, + 16690.60116821493, + 16954.4412161366, + 16943.888654176564, + 16943.888654176564, + 16975.549339932142, + 16690.60116821493, + 16954.4412161366, + 16943.888654176564, + 16943.888654176564, + 16975.549339932142, + 17197.137141757034, + 17284.736505481567, + 17400.36770559626, + 17482.12731173089, + 17563.885917906995, + 16827.798473114275, + 17049.42527332033, + 17081.08595907591, + 17070.53139719889, + 17123.299206791526, + 16827.798473114275, + 17049.42527332033, + 17081.08595907591, + 17070.53139719889, + 17123.299206791526, + 17331.456566118046, + 17401.53565711428, + 17555.70925732259, + 17661.996845293415, + 17735.5807908021, + 16933.333092341054, + 17186.622578219674, + 17239.389387853815, + 17186.622578219674, + 17281.604635486416, + 16933.333092341054, + 17186.622578219674, + 17239.389387853815, + 17186.622578219674, + 17281.604635486416, + 17442.415960160823, + 17570.893627014917, + 17678.349166503733, + 17858.218700066256, + 17939.977306242363, + 17028.31714952478, + 17313.265321241997, + 17355.4805688746, + 17376.58669275316, + 17461.015188101377, + 17028.31714952478, + 17313.265321241997, + 17355.4805688746, + 17376.58669275316, + 17461.015188101377, + 17588.413899743224, + 17664.33274832939, + 17858.218700066256, + 18005.384591166643, + 18111.67117917898, + 17154.959892547107, + 17408.249378425728, + 17524.338559529522, + 17555.999245285104, + 17672.089426347393, + 17154.959892547107, + 17408.249378425728, + 17524.338559529522, + 17555.999245285104, + 17672.089426347393, + 17734.41083936713, + 17804.491930280343, + 17997.207930582237, + 18177.07946406175, + 18267.01473082226, + 17271.05207352638, + 17482.124311855416, + 17587.659931040685, + 17661.53686438736, + 17745.965359735575, + 17271.05207352638, + 17482.124311855416, + 17587.659931040685, + 17661.53686438736, + 17745.965359735575, + 17851.21099095833, + 17985.528415402365, + 18177.07946406175, + 18340.59667641396, + 18406.00496129673, + 17355.4805688746, + 17629.876178631777, + 17714.304673979997, + 17777.626045491157, + 17925.375912350537, + 17355.4805688746, + 17629.876178631777, + 17714.304673979997, + 17777.626045491157, + 17925.375912350537, + 17973.849900180983, + 18078.96753671684, + 18299.716373367417, + 18512.291549309066, + 18634.928458614733, + 17482.124311855416, + 17724.858235898522, + 17883.16266463492, + 17925.375912350537, + 18147.00371251508, + 17482.124311855416, + 17724.858235898522, + 17883.16266463492, + 17925.375912350537, + 18147.00371251508, + 18084.807294306775, + 18224.966476257727, + 18471.411246262523, + 18675.808761661276, + 18806.623331509836, + 17503.23143569247, + 17830.394855042283, + 17988.700283737173, + 18030.913531452792, + 18273.6474554959, + 17503.23143569247, + 17830.394855042283, + 17988.700283737173, + 18030.913531452792, + 18273.6474554959, + 18160.72614289294, + 18300.885324843897, + 18569.52217364894, + 18798.448670842416, + 18904.73525885475, + 17513.783997652503, + 17788.179607409686, + 18030.913531452792, + 18136.450150596556, + 18379.18507459815, + 17513.783997652503, + 17788.179607409686, + 18030.913531452792, + 18136.450150596556, + 18379.18507459815, + 18219.126718667787, + 18388.484688568427, + 18659.458440367944, + 18839.32697397198, + 18929.26224073249, + 17513.783997652503, + 17883.16266463492, + 18125.89758863652, + 18189.218960147682, + 18453.059008069355, + 17513.783997652503, + 17883.16266463492, + 18125.89758863652, + 18189.218960147682, + 18453.059008069355, + 18295.045567253957, + 18464.403537154598, + 18749.391707211467, + 18912.90891956368, + 18937.43890131689, + 17429.355502304286, + 17893.716226553446, + 18157.558274392097, + 18305.30814125148, + 18526.934941457534, + 17429.355502304286, + 17893.716226553446, + 18157.558274392097, + 18305.30814125148, + 18526.934941457534, + 18353.44414311182, + 18522.80211301246, + 18847.503634556382, + 18978.31720444645, + 18970.140543862046, + 18062.57421720837, + 18474.167131864895, + 18706.348493947968, + 18843.54579884731, + 19065.172599053367, + 18062.57421720837, + 18474.167131864895, + 18706.348493947968, + 18843.54579884731, + 19065.172599053367, + 18627.9217494653, + 18785.599204227572, + 19125.4840955053, + 19223.59402293326, + 19231.770683517658, + 15002.016261873217, + 15508.590233837996, + 16067.93501527088, + 16732.81541588904, + 17387.141254630176, + 15002.016261873217, + 15508.590233837996, + 16067.93501527088, + 16732.81541588904, + 17387.141254630176, + 16233.550140538107, + 17068.659474902935, + 18201.606445939487, + 19264.4743259798, + 19256.2976653954, + 12099.761735315971, + 12521.908211891023, + 13461.182222349378, + 14590.423347216694, + 15666.895662532856, + 12099.761735315971, + 12521.908211891023, + 13461.182222349378, + 14590.423347216694, + 15666.895662532856, + 14487.409623346803, + 14966.284745099036, + 16975.220353588466, + 18054.44055483907, + 18896.558598270345, + 10442.838514688334, + 10875.53855318191, + 12131.423421030044, + 13229.001860224798, + 14527.100975747042, + 10442.838514688334, + 10875.53855318191, + 12131.423421030044, + 13229.001860224798, + 14527.100975747042, + 13932.616652966895, + 13839.177531652425, + 16435.610752942393, + 17449.42366926875, + 18136.198161056713, + 10020.693038071775, + 10432.283952811315, + 11667.061696822364, + 12722.426888301528, + 13967.758194231135, + 10020.693038071775, + 10432.283952811315, + 11667.061696822364, + 12722.426888301528, + 13967.758194231135, + 13938.456410556833, + 13792.458470974436, + 15969.584097846518, + 16967.044692962554, + 17629.294202789766, + 9640.76080917083, + 10020.693038071775, + 11202.700972573235, + 12205.298354459735, + 13408.414412756743, + 9640.76080917083, + 10020.693038071775, + 11202.700972573235, + 12205.298354459735, + 13408.414412756743, + 13967.65619846501, + 13728.21813760965, + 15519.910763919446, + 16476.491055988936, + 17089.683602185203, + 9250.276018309853, + 9587.991999619702, + 10706.679562568494, + 11688.168820659446, + 12870.177755119399, + 9250.276018309853, + 9587.991999619702, + 10706.679562568494, + 11688.168820659446, + 12870.177755119399, + 13985.176471193314, + 13699.019349659962, + 15062.058769490988, + 15977.76075843092, + 16574.60098341687, + 8849.237665530347, + 9186.953646840198, + 10284.534085951935, + 11171.040286817653, + 12310.834973603498, + 8849.237665530347, + 9186.953646840198, + 10284.534085951935, + 11171.040286817653, + 12310.834973603498, + 14008.535501553033, + 13576.380440437313, + 14563.328471932971, + 15454.502479036675, + 16051.343703981114, + 8923.112598960037, + 9197.507208758725, + 10052.353723827353, + 10886.091115141946, + 11952.010868498102, + 8923.112598960037, + 9197.507208758725, + 10052.353723827353, + 10886.091115141946, + 11952.010868498102, + 13348.62289472032, + 12957.348136651111, + 13868.377319560603, + 14767.726987290218, + 15299.159927351886, + 8996.987532389729, + 9176.40008492167, + 9883.494733213938, + 10643.358191057332, + 11635.401011066813, + 8996.987532389729, + 9176.40008492167, + 9883.494733213938, + 10643.358191057332, + 11635.401011066813, + 12688.711287846063, + 12303.275287408305, + 13214.304470317795, + 14007.367550035076, + 14571.505132517377, + 9081.417027696436, + 9176.40008492167, + 9725.190304477539, + 10358.409019381625, + 11276.576905961416, + 9081.417027696436, + 9176.40008492167, + 9725.190304477539, + 10358.409019381625, + 11276.576905961416, + 12180.637378144145, + 11865.280468702618, + 12723.749833385687, + 13492.285931225235, + 14007.367550035076, + 9144.73939916609, + 9176.40008492167, + 9545.777751945594, + 10126.228657257043, + 10949.4134866116, + 9144.73939916609, + 9176.40008492167, + 9545.777751945594, + 10126.228657257043, + 10949.4134866116, + 11865.280468702618, + 11520.724771311372, + 12355.835105634724, + 13124.370203515777, + 13631.276161699707, + 9134.18483728907, + 9176.40008492167, + 9482.45638043443, + 10010.138476194754, + 10759.44737216113, + 9134.18483728907, + 9176.40008492167, + 9482.45638043443, + 10010.138476194754, + 10759.44737216113, + 11561.604074399453, + 11240.407407367988, + 12053.326662849546, + 12797.333778894374, + 13271.536094616164, + 9102.52415153349, + 9123.631275370544, + 9471.902818515906, + 10010.138476194754, + 10770.00193403815, + 9102.52415153349, + 9123.631275370544, + 9471.902818515906, + 10010.138476194754, + 10770.00193403815, + 11310.48749832271, + 10977.610316152877, + 11767.169541316196, + 12543.880299823162, + 13018.082615544952, + 9049.756341940853, + 9091.970589614963, + 9471.902818515906, + 10020.693038071775, + 10791.10805791671, + 9049.756341940853, + 9091.970589614963, + 9471.902818515906, + 10020.693038071775, + 10791.10805791671, + 11065.209679877411, + 10749.853770394373, + 11505.541401577564, + 12249.54851762239, + 12715.575172718269, + 9028.6492181038, + 9070.863465777908, + 9503.563504271486, + 10010.138476194754, + 10770.00193403815, + 9028.6492181038, + 9070.863465777908, + 9503.563504271486, + 10010.138476194754, + 10770.00193403815, + 11076.890195015776, + 10779.05355830255, + 11505.541401577564, + 12241.371857037986, + 12699.222851507951, + 8975.880908531919, + 9007.5415942875, + 9471.902818515906, + 10010.138476194754, + 10770.00193403815, + 8975.880908531919, + 9007.5415942875, + 9471.902818515906, + 10010.138476194754, + 10770.00193403815, + 11082.729952605714, + 10779.05355830255, + 11513.71656222423, + 12257.724178248302, + 12707.399512092357, + 8923.112598960037, + 8944.219722797092, + 9482.45638043443, + 10041.799161950337, + 10791.10805791671, + 8923.112598960037, + 8944.219722797092, + 9482.45638043443, + 10041.799161950337, + 10791.10805791671, + 11071.049437467347, + 10773.213800712614, + 11513.71656222423, + 12257.724178248302, + 12707.399512092357, + 8859.790227490383, + 8912.559037041508, + 9471.902818515906, + 10020.693038071775, + 10770.00193403815, + 8859.790227490383, + 8912.559037041508, + 9471.902818515906, + 10020.693038071775, + 10770.00193403815, + 11071.049437467347, + 10773.213800712614, + 11530.068383455302, + 12257.724178248302, + 12691.04719088204, + 8849.237665530347, + 8849.237665530347, + 9493.008942394468, + 10010.138476194754, + 10770.00193403815, + 8849.237665530347, + 8849.237665530347, + 9493.008942394468, + 10010.138476194754, + 10770.00193403815, + 11065.209679877411, + 10779.05355830255, + 11530.068383455302, + 12257.724178248302, + 12707.399512092357 + ] + } + }, + "use_defrost_map": false + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 316.4833333333333, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "secondary_heat_exchanger": { + "cold_side_temperature_offset": 5.555555555555555, + "extra_pump_power": 27.0, + "hot_side_temperature_offset": 8.333333333333334 + }, + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 3.3333333333333335, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 338.15, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/Rheem2020Build40.json b/examples/Rheem2020Build40.json new file mode 100644 index 0000000..2d29300 --- /dev/null +++ b/examples/Rheem2020Build40.json @@ -0,0 +1,252 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 285.0018518518518, + 296.8537037037037, + 308.7055555555555, + 320.55740740740737, + 332.4092592592592, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1474.9878281653585, + 1438.4866398924719, + 1317.4732008695835, + 1122.2860951100233, + 863.2639066271252, + 550.7452194342192, + 195.0686175446373, + 1648.9036621824, + 1557.420398554074, + 1433.560480965215, + 1265.4754666496, + 1041.316912841008, + 749.2363767732154, + 377.38541568000096, + 1890.9315707392004, + 1716.8887468088892, + 1587.3579291136002, + 1460.7993774592005, + 1295.6733516515567, + 1050.4401114965344, + 683.5599168000016, + 2751.6934482820016, + 2242.713337452857, + 2081.3276759902574, + 2128.501306837836, + 2245.19907293922, + 2292.385817238038, + 2131.026382677926 + ], + "input_power": [ + 239.44205176470584, + 275.88951633986926, + 308.69448575163403, + 337.85695999999996, + 363.3769390849673, + 385.2544230065358, + 403.4894117647057, + 252.62656, + 279.5431111111111, + 310.5920711111111, + 345.77343999999994, + 385.08721777777777, + 428.53340444444433, + 476.11199999999985, + 269.86784, + 284.3208888888889, + 313.07352888888886, + 356.1257599999999, + 413.47758222222217, + 485.1289955555555, + 571.0799999999998, + 323.62006588235306, + 299.2163137254902, + 320.8098384313724, + 388.40063999999984, + 501.9887184313724, + 661.5740737254898, + 867.1567058823524 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.638888888888889, + "volume": 0.136653301 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Build50.json b/examples/Rheem2020Build50.json new file mode 100644 index 0000000..4a1e1b7 --- /dev/null +++ b/examples/Rheem2020Build50.json @@ -0,0 +1,252 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 285.0018518518518, + 296.8537037037037, + 308.7055555555555, + 320.55740740740737, + 332.4092592592592, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1474.9878281653585, + 1438.4866398924719, + 1317.4732008695835, + 1122.2860951100233, + 863.2639066271252, + 550.7452194342192, + 195.0686175446373, + 1648.9036621824, + 1557.420398554074, + 1433.560480965215, + 1265.4754666496, + 1041.316912841008, + 749.2363767732154, + 377.38541568000096, + 1890.9315707392004, + 1716.8887468088892, + 1587.3579291136002, + 1460.7993774592005, + 1295.6733516515567, + 1050.4401114965344, + 683.5599168000016, + 2751.6934482820016, + 2242.713337452857, + 2081.3276759902574, + 2128.501306837836, + 2245.19907293922, + 2292.385817238038, + 2131.026382677926 + ], + "input_power": [ + 239.44205176470584, + 275.88951633986926, + 308.69448575163403, + 337.85695999999996, + 363.3769390849673, + 385.2544230065358, + 403.4894117647057, + 252.62656, + 279.5431111111111, + 310.5920711111111, + 345.77343999999994, + 385.08721777777777, + 428.53340444444433, + 476.11199999999985, + 269.86784, + 284.3208888888889, + 313.07352888888886, + 356.1257599999999, + 413.47758222222217, + 485.1289955555555, + 571.0799999999998, + 323.62006588235306, + 299.2163137254902, + 320.8098384313724, + 388.40063999999984, + 501.9887184313724, + 661.5740737254898, + 867.1567058823524 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.375, + "volume": 0.170721991 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Build65.json b/examples/Rheem2020Build65.json new file mode 100644 index 0000000..0e28f8a --- /dev/null +++ b/examples/Rheem2020Build65.json @@ -0,0 +1,252 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 285.0018518518518, + 296.8537037037037, + 308.7055555555555, + 320.55740740740737, + 332.4092592592592, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1474.9878281653585, + 1438.4866398924719, + 1317.4732008695835, + 1122.2860951100233, + 863.2639066271252, + 550.7452194342192, + 195.0686175446373, + 1648.9036621824, + 1557.420398554074, + 1433.560480965215, + 1265.4754666496, + 1041.316912841008, + 749.2363767732154, + 377.38541568000096, + 1890.9315707392004, + 1716.8887468088892, + 1587.3579291136002, + 1460.7993774592005, + 1295.6733516515567, + 1050.4401114965344, + 683.5599168000016, + 2751.6934482820016, + 2242.713337452857, + 2081.3276759902574, + 2128.501306837836, + 2245.19907293922, + 2292.385817238038, + 2131.026382677926 + ], + "input_power": [ + 239.44205176470584, + 275.88951633986926, + 308.69448575163403, + 337.85695999999996, + 363.3769390849673, + 385.2544230065358, + 403.4894117647057, + 252.62656, + 279.5431111111111, + 310.5920711111111, + 345.77343999999994, + 385.08721777777777, + 428.53340444444433, + 476.11199999999985, + 269.86784, + 284.3208888888889, + 313.07352888888886, + 356.1257599999999, + 413.47758222222217, + 485.1289955555555, + 571.0799999999998, + 323.62006588235306, + 299.2163137254902, + 320.8098384313724, + 388.40063999999984, + 501.9887184313724, + 661.5740737254898, + 867.1567058823524 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.9555555555555557, + "volume": 0.221446485 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Build80.json b/examples/Rheem2020Build80.json new file mode 100644 index 0000000..3cc5fdd --- /dev/null +++ b/examples/Rheem2020Build80.json @@ -0,0 +1,252 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 285.0018518518518, + 296.8537037037037, + 308.7055555555555, + 320.55740740740737, + 332.4092592592592, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1474.9878281653585, + 1438.4866398924719, + 1317.4732008695835, + 1122.2860951100233, + 863.2639066271252, + 550.7452194342192, + 195.0686175446373, + 1648.9036621824, + 1557.420398554074, + 1433.560480965215, + 1265.4754666496, + 1041.316912841008, + 749.2363767732154, + 377.38541568000096, + 1890.9315707392004, + 1716.8887468088892, + 1587.3579291136002, + 1460.7993774592005, + 1295.6733516515567, + 1050.4401114965344, + 683.5599168000016, + 2751.6934482820016, + 2242.713337452857, + 2081.3276759902574, + 2128.501306837836, + 2245.19907293922, + 2292.385817238038, + 2131.026382677926 + ], + "input_power": [ + 239.44205176470584, + 275.88951633986926, + 308.69448575163403, + 337.85695999999996, + 363.3769390849673, + 385.2544230065358, + 403.4894117647057, + 252.62656, + 279.5431111111111, + 310.5920711111111, + 345.77343999999994, + 385.08721777777777, + 428.53340444444433, + 476.11199999999985, + 269.86784, + 284.3208888888889, + 313.07352888888886, + 356.1257599999999, + 413.47758222222217, + 485.1289955555555, + 571.0799999999998, + 323.62006588235306, + 299.2163137254902, + 320.8098384313724, + 388.40063999999984, + 501.9887184313724, + 661.5740737254898, + 867.1567058823524 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 3.0083333333333333, + "volume": 0.27254952000000005 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Prem40.json b/examples/Rheem2020Prem40.json new file mode 100644 index 0000000..37cde65 --- /dev/null +++ b/examples/Rheem2020Prem40.json @@ -0,0 +1,261 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.638888888888889, + "volume": 0.136653301 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Prem50.json b/examples/Rheem2020Prem50.json new file mode 100644 index 0000000..9158eaf --- /dev/null +++ b/examples/Rheem2020Prem50.json @@ -0,0 +1,261 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.375, + "volume": 0.170721991 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Prem50.yaml b/examples/Rheem2020Prem50.yaml deleted file mode 100644 index 63a8f5a..0000000 --- a/examples/Rheem2020Prem50.yaml +++ /dev/null @@ -1,223 +0,0 @@ ---- -depresses_temperature: false -fixed_volume: true -integrated_system: - metadata: - schema: RSINTEGRATEDWATERHEATER - performance: - heat_source_configurations: - - companion_heat_source_id: compressor - followed_by_heat_source_id: compressor - heat_distribution: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 1 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSRESISTANCEWATERHEATSOURCE - performance: - input_power: 4500 - heat_source_type: RESISTANCE - id: resistiveElementTop - turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 11.34261111111111 - temperature_weight_distribution: - - 0 - - 0 - - 0 - - 0 - - 0 - - 1 - heating_logic_type: TEMPERATURE_BASED - - backup_heat_source_id: compressor - followed_by_heat_source_id: compressor - heat_distribution: - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSRESISTANCEWATERHEATSOURCE - performance: - input_power: 4500 - heat_source_type: RESISTANCE - id: resistiveElementBottom - shut_off_logic: - - comparison_type: GREATER_THAN - heating_logic: - absolute_temperature: 310.92777777777775 - temperature_weight_distribution: - - 1 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - - backup_heat_source_id: resistiveElementBottom - heat_distribution: - - 0.2 - - 0.2 - - 0.2 - - 0.2 - - 0.2 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - heat_source: - metadata: - schema: RSCONDENSERWATERHEATSOURCE - performance: - coil_configuration: WRAPPED - compressor_lockout_temperature_hysteresis: 0.5555555555555556 - maximum_refrigerant_temperature: 344.26111111111106 - maximum_temperature: 322.0388888888889 - minimum_temperature: 275.92777777777775 - performance_map: - grid_variables: - evaporator_environment_dry_bulb_temperature: - - 275.92777777777775 - - 283.15 - - 292.59444444444443 - - 322.0388888888889 - heat_source_temperature: - - 273.15 - - 283.30873015873016 - - 293.46746031746034 - - 303.6261904761905 - - 313.7849206349207 - - 323.9436507936509 - - 334.10238095238105 - - 344.26111111111123 - lookup_variables: - heating_capacity: - - 1252.9372831623527 - - 1174.0611286362803 - - 1117.2854648238892 - - 1049.2775695916766 - - 922.5762362674727 - - 675.5917736404369 - - 232.6060059610598 - - -496.2277270588364 - - 1449.73786624 - - 1380.3520964056972 - - 1332.7285613394417 - - 1278.5386767780087 - - 1180.0088658205736 - - 989.9205589287104 - - 651.6101939263917 - - 98.96921599999072 - - 1716.3594624000002 - - 1660.8029642055549 - - 1631.6197696026657 - - 1607.8603520471274 - - 1564.3598203828938 - - 1471.7379188420819 - - 1296.3990270449694 - - 1000.5321599999966 - - 2615.0042890541176 - - 2612.883424868158 - - 2688.272582890785 - - 2849.3030965117287 - - 3109.684831458272 - - 3488.7061857953026 - - 4011.234089925281 - - 4707.714006588249 - input_power: - - 205.15423999999993 - - 207.96480345738289 - - 223.5116158463386 - - 251.794677166867 - - 292.81398741896794 - - 346.56954660264165 - - 413.061354717888 - - 492.28941176470704 - - 233.1968 - - 239.77835102040817 - - 258.1296326530613 - - 288.25064489795943 - - 330.1413877551024 - - 383.8018612244904 - - 449.23206530612333 - - 526.4320000000012 - - 269.86784000000006 - - 281.3806824489797 - - 303.39934693877564 - - 335.92383346938806 - - 378.95414204081675 - - 432.4902726530618 - - 496.5322253061234 - - 571.0800000000012 - - 384.1952000000001 - - 411.08206866746735 - - 444.53433853541424 - - 484.5520096038419 - - 531.1350818727495 - - 584.2835553421373 - - 643.9974300120058 - - 710.2767058823539 - heat_source_type: CONDENSER - id: compressor - turn_on_logic: - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 17.77777777777778 - temperature_weight_distribution: - - 1 - - 0 - - 0 - heating_logic_type: TEMPERATURE_BASED - - comparison_type: LESS_THAN - heating_logic: - differential_temperature: 5 - standby_temperature_location: TOP_OF_TANK - heating_logic_type: TEMPERATURE_BASED - primary_heat_source_id: resistiveElementTop - tank: - metadata: - schema: RSTANK - performance: - bottom_fraction_of_tank_mixing_on_draw: 0.3333333333333333 - fittings_ua: 0 - ua: 2.375 - volume: 0.170721991 -metadata: - schema_author: Big Ladder Software - schema_name: HPWHSimInput - schema_version: 1.0.0 - author: None - id: 6998e64f-7824-414c-9d48-57e43ee47071 - time_of_creation: 2022-11-23T11:45Z -number_of_nodes: 12 -standard_setpoint: 325.92777777777775 -system_type: INTEGRATED diff --git a/examples/Rheem2020Prem65.json b/examples/Rheem2020Prem65.json new file mode 100644 index 0000000..8e869e0 --- /dev/null +++ b/examples/Rheem2020Prem65.json @@ -0,0 +1,261 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.9555555555555557, + "volume": 0.221446485 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Rheem2020Prem80.json b/examples/Rheem2020Prem80.json new file mode 100644 index 0000000..47d9991 --- /dev/null +++ b/examples/Rheem2020Prem80.json @@ -0,0 +1,261 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 3.0083333333333333, + "volume": 0.27254952000000005 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHB50.json b/examples/RheemHB50.json new file mode 100644 index 0000000..d1591f4 --- /dev/null +++ b/examples/RheemHB50.json @@ -0,0 +1,206 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4200.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.34261111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 298.02483333333333, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 281.4833333333333, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1940.6741528454966, + 750.681860201882, + 2059.8256176761597, + 985.8244158048004, + 2411.1031296, + 1706.3808000000026, + 3419.689199382456, + 3964.928657430684 + ], + "input_power": [ + 434.8206400000001, + 1054.1031999999998, + 439.14944, + 1075.7471999999998, + 451.51743999999997, + 1137.5871999999997, + 484.2926399999999, + 1301.4631999999997 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 21.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 7.368833333333333, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.9444444444444444, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR2250.json b/examples/RheemHBDR2250.json new file mode 100644 index 0000000..e478737 --- /dev/null +++ b/examples/RheemHBDR2250.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.6666666666666667, + "volume": 0.171 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR2265.json b/examples/RheemHBDR2265.json new file mode 100644 index 0000000..99642e8 --- /dev/null +++ b/examples/RheemHBDR2265.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.2222222222222223, + "volume": 0.2214 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR2280.json b/examples/RheemHBDR2280.json new file mode 100644 index 0000000..b9624d6 --- /dev/null +++ b/examples/RheemHBDR2280.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 2250.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.2995 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR4550.json b/examples/RheemHBDR4550.json new file mode 100644 index 0000000..cc5e7e9 --- /dev/null +++ b/examples/RheemHBDR4550.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.6666666666666667, + "volume": 0.171 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR4565.json b/examples/RheemHBDR4565.json new file mode 100644 index 0000000..bd7b61e --- /dev/null +++ b/examples/RheemHBDR4565.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.2222222222222223, + "volume": 0.2214 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHBDR4580.json b/examples/RheemHBDR4580.json new file mode 100644 index 0000000..735bc52 --- /dev/null +++ b/examples/RheemHBDR4580.json @@ -0,0 +1,212 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 0.75, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 313.7055555555555, + "temperature_weight_distribution": { + "normalized_height": [ + 0.8333333333333334, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.25, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 278.7055555555555, + 283.15, + 294.26111111111106, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1078.2605599999997, + 742.5012, + 1188.68624, + 794.0520000000004, + 1439.5028399999994, + 930.4750000000008, + 1814.1291999999999, + 1279.9340000000009, + 2036.1417999999999, + 1681.1850000000015 + ], + "input_power": [ + 239.72, + 477.79999999999984, + 234.64, + 493.1999999999999, + 221.94000000000003, + 531.6999999999997, + 194.89999999999998, + 598.0999999999998, + 167.8599999999999, + 664.4999999999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 19.444444444444443, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.2995 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemHPHD135.json b/examples/RheemHPHD135.json new file mode 100644 index 0000000..540162b --- /dev/null +++ b/examples/RheemHPHD135.json @@ -0,0 +1,1724 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0021999541116666664, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 316.4833333333333 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 35595.39015191268, + 34921.68129433725, + 34317.816459223744, + 33777.95316575118, + 33296.48444652643, + 32868.03884758431, + 32487.480428387487, + 32149.908761826595, + 31850.658934220115, + 31585.30154531447, + 31349.64270828395, + 31139.724049730823, + 30951.822709685177, + 30782.451341605025, + 30628.358112376325, + 30486.52670231288, + 30354.17630515644, + 30228.761628076652, + 30107.972891671063, + 29989.735829965084, + 29872.211690412085, + 29753.797233893358, + 29633.124734718003, + 29509.06198062312, + 29380.71227277365, + 29247.414425762476, + 29108.74276761037, + 28964.507139765978, + 28814.752897105922, + 28659.76090793469, + 28500.04755398464, + 28336.364730416066, + 28169.699845817177, + 28001.275822204065, + 27832.551095020735, + 27665.21961313909, + 27501.210838858922, + 35595.4482206053, + 34921.738027919666, + 34317.87195325418, + 33778.00751009483, + 33296.53772535544, + 32868.09113937777, + 32487.531805931478, + 32149.959292214106, + 31850.708678851137, + 31585.350559895935, + 31349.691042829738, + 31139.771748561776, + 30951.869811429086, + 30782.497879196653, + 30628.404113057368, + 30486.572187632024, + 30354.221290969304, + 30228.80612454582, + 30108.016903266056, + 29989.779355462415, + 29872.254722895188, + 29753.83976075262, + 29633.16673765082, + 29509.10343563379, + 29380.753150173467, + 29247.454690169663, + 29108.782377950116, + 28964.546049270444, + 28814.791053314195, + 28659.798252692817, + 28500.084023445655, + 28336.400255039924, + 28169.734350370818, + 28001.30922576137, + 27832.58331096253, + 27665.250549153192, + 27501.24039694007, + 35803.242652477085, + 35124.75411967091, + 34516.4514140374, + 33972.471722457325, + 33487.18774523933, + 33055.207696119964, + 32671.375302263674, + 32330.769804262865, + 32028.705956137776, + 31760.73402533659, + 31522.63979273535, + 31310.44455263809, + 31120.405112776658, + 30949.013794310828, + 30792.998431828328, + 30649.32237334471, + 30515.184480303495, + 30388.01912757608, + 30265.496203461775, + 30145.521109687783, + 30026.234761409207, + 29906.013587209065, + 29783.469529098296, + 29657.450042515717, + 29527.038096328026, + 29391.552172829888, + 29250.54626774382, + 29103.809890220255, + 28951.368062837544, + 28793.48132160193, + 28630.645715947576, + 28463.592808736503, + 28293.2896762587, + 28120.938908232005, + 27947.978607802186, + 27776.08239154292, + 27607.15938945576, + 36179.725203725, + 35492.57551384707, + 34876.22954791501, + 34324.78789467279, + 33832.586656292195, + 33394.197448372965, + 33004.42739994274, + 32658.319153457054, + 32351.150864799336, + 32078.436203280926, + 31835.924351641053, + 31619.600006046923, + 31425.683376093548, + 31250.630184803882, + 31091.13166862879, + 30944.114577447035, + 30806.74117456529, + 30676.409236718137, + 30550.752054068034, + 30427.63843020536, + 30305.17268214839, + 30181.69464034335, + 30055.77964866428, + 29926.23856441322, + 29792.117758320026, + 29652.699114542513, + 29507.500030666397, + 29356.27341770526, + 29199.007700100647, + 29035.926815721956, + 28867.49021586652, + 28694.392865259535, + 28517.56524205415, + 28338.17333783139, + 28157.618657600182, + 27977.53821979739, + 27799.8045562877, + 36559.24204411344, + 35863.356649267014, + 35238.89628008897, + 34679.924927186476, + 34180.74209459448, + 33735.88279977589, + 33340.1175736215, + 32988.45246045001, + 32676.12901800803, + 32398.624317470083, + 32151.650943438588, + 31931.15699394386, + 31733.326080444123, + 31554.577327825486, + 31391.56537440201, + 31241.18037191559, + 31100.54798553611, + 30967.02939386129, + 30838.221288916775, + 30711.955876156117, + 30586.300874460754, + 30459.55951614008, + 30330.270546931315, + 30197.20822599965, + 30059.382325938128, + 29916.038132767753, + 29766.656445937373, + 29610.953578323762, + 29448.881356231628, + 29280.62711939355, + 29106.613720970025, + 28927.499527549415, + 28744.178419148047, + 28557.779789210115, + 28369.668544607717, + 28181.44510564088, + 27994.945406037477, + 36941.811268502504, + 36237.11525849294, + 35604.4689808236, + 35037.89982796477, + 34531.67070581461, + 34080.28003369918, + 33678.461744372464, + 33321.185284016334, + 33003.65561224057, + 32721.31320208284, + 32469.83404000873, + 32245.12962591177, + 32043.346973113315, + 31860.868608362674, + 31694.31257183706, + 31540.532417141538, + 31396.61721130917, + 31259.891534800838, + 31127.915481505373, + 30998.48465873947, + 30869.630187247767, + 30739.618701202806, + 30606.952348205, + 30470.368789282693, + 30328.841198892118, + 30181.578264917407, + 30028.024188670628, + 29867.858684891704, + 29700.99698174851, + 29527.58982083681, + 29348.023457180247, + 29162.919659230374, + 28973.13570886668, + 28779.76440139654, + 28584.134045555213, + 28387.808463505895, + 28192.586990839634, + 37327.451033461664, + 36613.86913579636, + 35972.96508209242, + 35398.729666683284, + 34885.389197330274, + 34427.405495222636, + 34019.47589497751, + 33656.53324463995, + 33333.745905682896, + 33046.51775300721, + 32790.48817494162, + 32561.532073242844, + 32355.75986309539, + 32169.51747311176, + 31999.386345332317, + 31842.183435225325, + 31694.961211686976, + 31555.00765704136, + 31419.846267040455, + 31287.236050864143, + 31155.17153112023, + 31021.882743844406, + 30885.835238500276, + 30745.730077979362, + 30600.503838601024, + 30449.328610112636, + 30291.61199568938, + 30126.997111934365, + 29955.36258887864, + 29776.822569981126, + 29591.726712128664, + 29400.660185635956, + 29204.443674245675, + 29004.133375128346, + 28801.020998882414, + 28596.633769534237, + 28392.734424538055, + 37716.17955726969, + 36993.63613715815, + 36344.40207757836, + 35762.431574727, + 35241.914338228526, + 34777.27559113536, + 34363.17606992782, + 33994.5120245141, + 33666.415218230344, + 33374.252927840564, + 33113.6279435367, + 32880.378568938584, + 32670.578621093922, + 32480.537430478387, + 32306.799840995503, + 32146.14620997673, + 31995.592408181397, + 31852.38981979677, + 31714.025342438017, + 31578.22138714818, + 31442.935878398224, + 31306.362254087046, + 31166.929465541383, + 31023.301977515934, + 30874.37976819327, + 30719.298329183857, + 30557.428665526117, + 30388.377295686307, + 30211.986251558643, + 30028.333078465217, + 29837.73083515605, + 29640.728093808997, + 29438.108940029917, + 29230.892972852496, + 29020.335304738353, + 28807.926561577027, + 28595.392882685905, + 38108.01511991464, + 37376.4341802684, + 36718.79752267365, + 36129.02274519021, + 35601.262959305706, + 35129.90678993576, + 34709.57837542384, + 34335.13736754134, + 34001.678931487535, + 33704.533745889625, + 33439.2680028027, + 33201.6834077098, + 32987.8171795218, + 32793.9420505775, + 32616.566266643647, + 32452.43358691483, + 32298.523284013572, + 32152.050143990302, + 32010.46446632334, + 31871.45206391895, + 31732.934263111223, + 31593.067903662217, + 31450.24533876189, + 31303.094435028077, + 31150.478572506516, + 30991.496644670864, + 30825.483058422687, + 30652.00773409145, + 30470.876105434494, + 30282.12911963712, + 30086.043237312497, + 29883.130432501668, + 29674.138192673658, + 29460.049518725304, + 29242.082924981412, + 29021.6924391947, + 28800.567602545707, + 38502.97606309398, + 37762.28124452666, + 37096.16903447984, + 36498.52043287653, + 35963.45195306753, + 35485.31562183162, + 35058.69897937545, + 34678.42507933357, + 34339.55248876842, + 34037.375288170406, + 33767.42307145776, + 33525.460945976694, + 33307.489532501255, + 33109.74496523343, + 32928.69889180311, + 32761.05847326806, + 32603.766384114002, + 32454.00081225451, + 32309.175459031103, + 32166.93953921315, + 32025.177780997972, + 31882.01042601079, + 31735.793229304705, + 31585.117459360757, + 31428.80989808783, + 31265.932840822756, + 31095.784096330295, + 30917.896986803036, + 30732.040347861534, + 30538.21852855424, + 30336.671391357497, + 30127.87431217551, + 29912.53818034049, + 29691.609398612436, + 29466.269883179335, + 29237.937063657046, + 29008.263883089327, + 38901.080790214415, + 38151.19537104169, + 37476.53429180779, + 36870.941954298905, + 36328.49827372899, + 35843.51867874, + 35410.55411140175, + 35024.391027211976, + 34680.05139509628, + 34372.79269740824, + 34098.10792992927, + 33851.72560186872, + 33629.60973586384, + 33427.959867979764, + 33243.21104770958, + 33072.0338379742, + 32911.33431512252, + 32758.254068931295, + 32610.170202605208, + 32464.695332776784, + 32319.677589506555, + 32173.20061628288, + 32023.58357002204, + 31869.381121068236, + 31709.383453193546, + 31542.616263597945, + 31368.340762909374, + 31186.053675183593, + 30995.487237904326, + 30796.609201983214, + 30589.622831759745, + 30374.9669050013, + 30153.315712903266, + 29925.579060088814, + 29692.9022646091, + 29456.666157943157, + 29218.487084997887, + 39302.34776639201, + 38543.19466263164, + 37859.91103517772, + 37246.30468767959, + 36696.41893721442, + 36204.532614287295, + 35765.16006283122, + 35373.0511402071, + 35023.19121720373, + 34710.801178037815, + 34431.33742035395, + 34180.49185522469, + 33954.19190715041, + 33748.60051405945, + 33560.116127308036, + 33385.37271168029, + 33221.23974538824, + 33064.82222007185, + 32913.460640798934, + 32764.73102606523, + 32616.444907794394, + 32466.64933133798, + 32313.626855475453, + 32155.89555241415, + 31992.209007789337, + 31821.556320664185, + 31643.162103529754, + 31456.48648230501, + 31261.225096336868, + 31057.309098400085, + 30844.905154697353, + 30624.415444859223, + 30396.47766194423, + 30161.965012438748, + 29921.986216257075, + 29677.88550674143, + 29431.24263066189, + 39706.79551845219, + 38938.29728382397, + 38246.31706681914, + 37624.6260729502, + 37067.23102115748, + 36568.37414380925, + 36122.53318670167, + 35724.42140905884, + 35368.9875835327, + 35051.415996203126, + 34767.126446577895, + 34511.77424759272, + 34281.25022561119, + 34071.68072042475, + 33879.42758525286, + 33701.08818674275, + 33533.495404969675, + 33373.717633436725, + 33219.0587790749, + 33067.05826224313, + 32915.491016728236, + 32762.367489744895, + 32605.933641935786, + 32444.67094737142, + 32277.29639355023, + 32102.762481398542, + 31920.2572252706, + 31729.204152948547, + 31529.26230564242, + 31320.32623799021, + 31102.52601805773, + 30876.22722733874, + 30642.03096075494, + 30400.773826655848, + 30153.527946818962, + 29901.600956449653, + 29646.536004181173, + 40114.44263492962, + 39336.52146085545, + 38635.77025067089, + 38005.92361175162, + 37440.95166490114, + 36935.06004435089, + 36482.6898977602, + 36078.51788621634, + 35717.45618423438, + 35394.65247975745, + 35105.48997415646, + 34845.58738223028, + 34610.79893220567, + 34397.21436573724, + 34201.15893790764, + 34019.19341722729, + 33848.11408563457, + 33684.952738495755, + 33526.97668460502, + 33371.68874618448, + 33216.82725888408, + 33060.36607178174, + 32900.51454738326, + 32735.717561622318, + 32564.655503860537, + 32386.2442768874, + 32199.635296920347, + 32004.215493604646, + 31799.60731001357, + 31585.66870264821, + 31362.493141437597, + 31130.40960973864, + 30889.982604336223, + 30642.012135443023, + 30387.533726699716, + 30127.818415174836, + 29864.37275136482, + 40525.307766068356, + 39737.88548167218, + 39028.28851238115, + 38390.21486743411, + 37817.59806949771, + 37304.6071546666, + 36845.64667246325, + 36435.35668583809, + 36068.61277116942, + 35740.52601826348, + 35446.44303035436, + 35181.945924104126, + 34942.85232960267, + 34725.215390367855, + 34525.32376334541, + 34339.70161890894, + 34165.10864086004, + 33998.54002642812, + 33837.22648627055, + 33678.63424447258, + 33520.46503854736, + 33360.656119435975, + 33197.38025150736, + 33029.04571255842, + 32854.296293813924, + 32672.011299926493, + 32481.305548976794, + 32281.529372473226, + 32072.268615352226, + 31853.344635978105, + 31624.814306143024, + 31386.970011067064, + 31140.33964939829, + 30885.686633212554, + 30624.009888013687, + 30356.54385273342, + 30084.758479731317, + 40939.40962382177, + 40142.40769592961, + 39423.889839307434, + 38777.51746505723, + 38197.187497708845, + 37677.03237522008, + 37211.420048976586, + 36794.953983791966, + 36422.47315790769, + 36089.05206299317, + 35790.000704145656, + 35520.864599890396, + 35277.424782180446, + 35055.69779639682, + 34851.93570134845, + 34662.626069272104, + 34484.49198583252, + 34314.49205012233, + 34149.820374662064, + 33987.90658540008, + 33826.41582171278, + 33663.24873640436, + 33496.541495706966, + 33324.66577928065, + 33146.228780213336, + 32960.07320502088, + 32765.277273647032, + 32561.154719463426, + 32347.25478926966, + 32123.362243293188, + 31889.497355189385, + 31645.915912041462, + 31393.109214360655, + 31131.804076086017, + 30862.96282458454, + 30587.783300651095, + 30307.698858508465, + 41356.76698185252, + 40550.10651499246, + 39822.59228051651, + 39167.849091389835, + 38579.73727400545, + 38052.352668184314, + 37580.02662717527, + 37157.3260176551, + 36779.053219728405, + 36440.24612692777, + 36136.17814621366, + 35862.35819797445, + 35614.5307160264, + 35388.67564761366, + 35181.00845340836, + 34987.98010751044, + 34806.2770974478, + 34632.821424176225, + 34464.77060207941, + 34299.51765896895, + 34134.69113608433, + 33968.15508809298, + 33798.0090830902, + 33622.588202599196, + 33440.46304157107, + 33250.43970838487, + 33051.55982484748, + 32843.10052619376, + 32624.574461086413, + 32395.72979161608, + 32156.55019330134, + 31907.25485508857, + 31648.29847935214, + 31380.37128189429, + 31104.3989919452, + 30821.542852162875, + 30533.19961863332, + 41777.398675532626, + 40961.00041193484, + 40224.41394678457, + 39561.22749491017, + 38965.264784567844, + 38430.585057441705, + 37951.48306864377, + 37522.48908671398, + 37138.36889362012, + 36794.12378475795, + 36484.990568951085, + 36206.44156845109, + 35954.18461893738, + 35724.163069517315, + 35512.55578272615, + 35315.777134526994, + 35130.47701431095, + 34953.54082489695, + 34782.08948253186, + 34613.47941689046, + 34445.3025710754, + 34275.3864016173, + 34101.793878474586, + 33922.82348503366, + 33737.009218108804, + 33543.1205879422, + 33340.16261820396, + 33127.375845992065, + 32904.2363218324, + 32670.455609678804, + 32425.980786912973, + 32170.9944443445, + 31905.914686210926, + 31631.395130177658, + 31348.32490733799, + 31057.82866221319, + 30761.26655275236, + 42201.323601943426, + 41375.10792154011, + 40629.37301059704, + 39957.670485805764, + 39353.78747728561, + 38811.74662858389, + 38325.806096675784, + 37890.45955196439, + 37500.436178280695, + 37150.70067288361, + 36836.453246459925, + 36553.12962312437, + 36296.40104041954, + 36062.17424931594, + 35846.591514212036, + 35646.0306129341, + 35457.10483673636, + 35276.662990300974, + 35101.789391737955, + 34929.80387258525, + 34758.261777808686, + 34584.95396580203, + 34407.90680838691, + 34225.38219081291, + 34035.87751175745, + 33838.12568332588, + 33631.09513105151, + 33413.989793895475, + 33186.24912424684, + 32947.548087922594, + 32697.797164167638, + 32437.142345654698, + 32165.965138484502, + 31884.882562185612, + 31594.74714971453, + 31296.646947455683, + 30991.905515221322, + 42248.63051832327, + 41421.319082396774, + 40674.562956284746, + 40001.90969021584, + 39397.14234784651, + 38854.279506261126, + 38367.575255971984, + 37931.51920091929, + 37540.836458471094, + 37190.48765942344, + 36875.66894800022, + 36591.81198185325, + 36334.58393206224, + 36099.887483134764, + 35883.860833006365, + 35682.87769304049, + 35493.54728802844, + 35312.71435618946, + 35137.45914917065, + 34965.09743204708, + 34793.180483321645, + 34619.495094925245, + 34442.063572216604, + 34259.14373398237, + 34069.228912437095, + 33871.04795322324, + 33663.565215411174, + 33445.98057149913, + 33217.72940741332, + 32978.48262250782, + 32728.1466295646, + 32466.863354793477, + 32195.010237832346, + 31913.200231746807, + 31622.281803030473, + 31323.338931604867, + 31017.69111081935, + 71594.32702167642, + 70085.04588634659, + 68698.8552685545, + 67427.26948870815, + 66262.03838064337, + 65195.14729162394, + 64218.81708234162, + 63325.50412691594, + 62507.900312894366, + 61758.933041252356, + 61071.765226393116, + 60439.79529614796, + 59856.657191775936, + 59316.220367964044, + 58812.58979282721, + 58340.10594790827, + 57893.3448281779, + 57467.11794203478, + 57056.4723113054, + 56656.69047124417, + 56263.290470533495, + 55872.02587128357, + 55478.88574903253, + 55080.094692746454, + 54672.112804819255, + 54251.63570107282, + 53815.59451075688, + 53361.15587654909, + 52885.72195455505, + 52386.930414308204, + 51862.654438769976, + 51311.00272432955, + 50730.31948080416, + 50119.18443143888, + 49476.412812906725, + 48801.05537530855, + 48092.39838217315 + ], + "input_power": [ + 6366.053571199999, + 6431.190383525925, + 6510.036378903705, + 6602.591557333333, + 6708.855918814814, + 6828.829463348151, + 6962.512190933334, + 7109.90410157037, + 7271.005195259261, + 7445.815472, + 7634.334931792596, + 7836.56357463704, + 8052.501400533334, + 8282.148409481477, + 8525.504601481483, + 8782.569976533332, + 9053.34453463704, + 9337.828275792594, + 9636.0212, + 9947.923307259263, + 10273.53459757037, + 10612.855070933332, + 10965.884727348152, + 11332.623566814815, + 11713.071589333329, + 12107.228794903709, + 12515.095183525927, + 12936.670755199997, + 13371.955509925929, + 13820.949447703704, + 14283.652568533327, + 14760.06487241482, + 15250.186359348145, + 15754.017029333343, + 16271.556882370372, + 16802.80591845926, + 17347.764137599992, + 6366.057035333613, + 6431.193778713434, + 6510.039705145107, + 6602.594814628631, + 6708.859107164006, + 6828.832582751238, + 6962.515241390317, + 7109.907083081246, + 7271.008107824034, + 7445.818315618667, + 7634.337706465158, + 7836.566280363497, + 8052.504037313687, + 8282.150977315727, + 8525.507100369627, + 8782.57240647537, + 9053.346895632974, + 9337.830567842424, + 9636.023423103725, + 9947.925461416886, + 10273.536682781885, + 10612.85708719874, + 10965.886674667458, + 11332.625445188014, + 11713.073398760424, + 12107.230535384697, + 12515.09685506081, + 12936.672357788777, + 13371.957043568606, + 13820.950912400274, + 14283.653964283792, + 14760.06619921918, + 15250.1876172064, + 15754.018218245494, + 16271.558002336416, + 16802.806969479203, + 17347.765119673826, + 6378.4378200500005, + 6443.328396287036, + 6521.928155575926, + 6614.237097916666, + 6720.255223309258, + 6839.982531753707, + 6973.419023249999, + 7120.564697798146, + 7281.41955539815, + 7455.9835960499995, + 7644.256819753707, + 7846.239226509262, + 8061.930816316666, + 8291.331589175921, + 8534.44154508704, + 8791.260684049998, + 9061.789006064819, + 9346.026511131482, + 9643.973199249996, + 9955.629070420375, + 10280.994124642595, + 10620.068361916663, + 10972.851782242598, + 11339.344385620372, + 11719.546172049993, + 12113.457141531488, + 12521.077294064813, + 12942.406629649999, + 13377.445148287043, + 13826.192849975925, + 14288.649734716659, + 14764.815802509265, + 15254.691053353703, + 15758.275487250008, + 16275.569104198152, + 16806.57190419815, + 17351.283887249992, + 6400.791694592001, + 6465.239045869038, + 6543.395580197927, + 6635.261297578667, + 6740.836198011259, + 6860.120281495706, + 6993.113548032, + 7139.815997620147, + 7300.227630260149, + 7474.348445952, + 7662.178444695706, + 7863.717626491261, + 8078.965991338667, + 8307.923539237923, + 8550.590270189039, + 8806.966184191999, + 9077.051281246819, + 9360.845561353484, + 9658.349024511997, + 9969.561670722376, + 10294.483499984593, + 10633.114512298665, + 10985.454707664596, + 11351.504086082372, + 11731.262647551997, + 12124.730392073487, + 12531.907319646816, + 12952.793430271997, + 13387.388723949043, + 13835.693200677926, + 14297.70686045866, + 14773.429703291267, + 15262.8617291757, + 15766.00293811201, + 16282.85333010015, + 16813.41290514015, + 17357.68166323199, + 6423.225574778, + 6487.229701095037, + 6564.943010463926, + 6656.365502884666, + 6761.497178357257, + 6880.338036881705, + 7012.888078458001, + 7159.147303086146, + 7319.115710766149, + 7492.793301497998, + 7680.180075281705, + 7881.276032117261, + 8096.081172004667, + 8324.595494943922, + 8566.819000935038, + 8822.751689977997, + 9092.393562072819, + 9375.744617219481, + 9672.804855417995, + 9983.574276668374, + 10308.052880970594, + 10646.240668324666, + 10998.137638730597, + 11363.74379218837, + 11743.059128697994, + 12136.083648259486, + 12542.817350872814, + 12963.260236537997, + 13397.412305255042, + 13845.273557023926, + 14306.84399184466, + 14782.123609717264, + 15271.112410641701, + 15773.81039461801, + 16290.217561646148, + 16820.33391172615, + 17364.15944485799, + 6445.739460608001, + 6509.300361965037, + 6586.570446373928, + 6677.549713834667, + 6782.238164347258, + 6900.635797911706, + 7032.742614528001, + 7178.558614196146, + 7338.083796916149, + 7511.318162688, + 7698.261711511706, + 7898.914443387262, + 8113.276358314666, + 8341.347456293923, + 8583.12773732504, + 8838.617201407997, + 9107.81584854282, + 9390.723678729482, + 9687.340691967998, + 9997.666888258374, + 10321.702267600594, + 10659.446829994664, + 11010.900575440597, + 11376.06350393837, + 11754.935615487997, + 12147.516910089484, + 12553.807387742814, + 12973.807048447996, + 13407.515892205043, + 13854.933919013925, + 14316.06112887466, + 14790.897521787265, + 15279.443097751699, + 15781.697856768009, + 16297.661798836149, + 16827.33492395615, + 17370.71723212799, + 6468.333352082, + 6531.451028479035, + 6608.277887927926, + 6698.813930428666, + 6803.059155981257, + 6921.013564585705, + 7052.677156241999, + 7198.049930950146, + 7357.13188871015, + 7529.9230295219995, + 7716.423353385706, + 7916.632860301262, + 8130.551550268667, + 8358.17942328792, + 8599.51647935904, + 8854.562718481997, + 9123.318140656818, + 9405.782745883482, + 9701.956534161996, + 10011.839505492373, + 10335.431659874594, + 10672.732997308663, + 11023.743517794597, + 11388.463221332371, + 11766.89210792199, + 12159.030177563485, + 12564.877430256814, + 12984.433866001995, + 13417.69948479904, + 13864.674286647924, + 14325.35827154866, + 14799.751439501264, + 15287.8537905057, + 15789.665324562007, + 16305.186041670151, + 16834.41594183015, + 17377.355025041994, + 6491.007249199999, + 6553.6817006370375, + 6630.065335125926, + 6720.158152666667, + 6823.960153259258, + 6941.471336903705, + 7072.6917036, + 7217.621253348147, + 7376.25998614815, + 7548.607901999998, + 7734.665000903708, + 7934.431282859262, + 8147.906747866666, + 8375.091395925923, + 8615.98522703704, + 8870.588241200001, + 9138.900438414821, + 9420.921818681481, + 9716.652381999998, + 10026.092128370374, + 10349.241057792593, + 10686.099170266665, + 11036.6664657926, + 11400.942944370372, + 11778.928605999996, + 12170.623450681484, + 12576.027478414815, + 12995.140689199996, + 13427.963083037042, + 13874.494659925926, + 14334.735419866662, + 14808.685362859265, + 15296.344488903702, + 15797.71279800001, + 16312.79029014815, + 16841.57696534815, + 17384.072823599992, + 6513.7611519619995, + 6575.992378439037, + 6651.932787967928, + 6741.582380548668, + 6844.941156181258, + 6962.009114865706, + 7092.786256601999, + 7237.272581390147, + 7395.46808923015, + 7567.372780121999, + 7752.986654065707, + 7952.309711061262, + 8165.341951108667, + 8392.083374207921, + 8632.53398035904, + 8886.693769562, + 9154.56274181682, + 9436.140897123483, + 9731.428235481995, + 10040.424756892375, + 10363.130461354596, + 10699.545348868663, + 11049.669419434598, + 11413.502673052371, + 11791.045109721998, + 12182.296729443486, + 12587.257532216814, + 13005.927518041997, + 13438.306686919039, + 13884.395038847926, + 14344.192573828659, + 14817.699291861265, + 15304.915192945704, + 15805.840277082007, + 16320.474544270151, + 16848.81799451015, + 17390.870627801993, + 6536.595060367999, + 6598.383061885038, + 6673.880246453926, + 6763.086614074667, + 6866.002164747258, + 6982.626898471705, + 7112.960815248, + 7257.003915076147, + 7414.756197956149, + 7586.217663887999, + 7771.388312871706, + 7970.268144907261, + 8182.8571599946645, + 8409.155358133923, + 8649.162739325038, + 8902.879303567997, + 9170.305050862818, + 9451.439981209482, + 9746.284094607998, + 10054.837391058374, + 10377.099870560594, + 10713.071533114664, + 11062.752378720596, + 11426.142407378373, + 11803.241619087998, + 12194.050013849484, + 12598.567591662817, + 13016.794352527995, + 13448.730296445041, + 13894.375423413927, + 14353.72973343466, + 14826.793226507265, + 15313.5659026317, + 15814.047761808006, + 16328.238804036151, + 16856.139029316146, + 17397.74843764799, + 6559.5089744179995, + 6620.853750975038, + 6695.907710583927, + 6784.670853244668, + 6887.143178957258, + 7003.324687721705, + 7133.215379537999, + 7276.815254406146, + 7434.124312326149, + 7605.142553297999, + 7789.869977321708, + 7988.306584397261, + 8200.452374524666, + 8426.307347703922, + 8665.87150393504, + 8919.144843217999, + 9186.127365552818, + 9466.819070939482, + 9761.219959378, + 10069.330030868372, + 10391.149285410593, + 10726.677723004663, + 11075.915343650599, + 11438.86214734837, + 11815.518134097998, + 12205.883303899485, + 12609.957656752815, + 13027.741192657997, + 13459.23391161504, + 13904.435813623924, + 14363.346898684662, + 14835.967166797263, + 15322.296617961703, + 15822.335252178007, + 16336.083069446151, + 16863.54006976615, + 17404.706253137992, + 6582.502894111999, + 6643.404445709037, + 6718.0151803579265, + 6806.3350980586665, + 6908.364198811258, + 7024.102482615705, + 7153.549949471999, + 7296.706599380146, + 7453.572432340149, + 7624.147448351999, + 7808.431647415706, + 8006.425029531261, + 8218.127594698666, + 8443.539342917922, + 8682.660274189038, + 8935.490388511998, + 9202.029685886817, + 9482.278166313483, + 9776.235829791996, + 10083.902676322376, + 10405.278705904593, + 10740.363918538662, + 11089.1583142246, + 11451.661892962373, + 11827.874654751997, + 12217.796599593486, + 12621.427727486815, + 13038.768038431994, + 13469.81753242904, + 13914.576209477926, + 14373.04406957866, + 14845.221112731264, + 15331.107338935703, + 15830.702748192009, + 16344.007340500151, + 16871.02111586015, + 17411.744074271992, + 6605.57681945, + 6666.035146087037, + 6740.202655775926, + 6828.079348516667, + 6929.665224309258, + 7044.960283153705, + 7173.964525049999, + 7316.677949998147, + 7473.100557998149, + 7643.23234905, + 7827.073323153708, + 8024.623480309261, + 8235.882820516666, + 8460.851343775921, + 8699.529050087038, + 8951.915939449998, + 9218.01201186482, + 9497.817267331482, + 9791.331705849996, + 10098.555327420374, + 10419.488132042597, + 10754.130119716663, + 11102.481290442598, + 11464.54164422037, + 11840.311181049994, + 12229.789900931486, + 12632.977803864813, + 13049.874889849998, + 13480.481158887042, + 13924.796610975925, + 14382.821246116659, + 14854.555064309265, + 15339.998065553702, + 15839.150249850007, + 16352.011617198152, + 16878.58216759815, + 17418.861901049993, + 6628.730750432, + 6688.7458521090375, + 6762.470136837927, + 6849.9036046186675, + 6951.046255451258, + 7065.898089335706, + 7194.459106272, + 7336.7293062601475, + 7492.70868930015, + 7662.397255392, + 7845.7950045357065, + 8042.901936731262, + 8253.718051978667, + 8478.24335027792, + 8716.47783162904, + 8968.421496031999, + 9234.07434348682, + 9513.436373993483, + 9806.507587551996, + 10113.287984162376, + 10433.777563824593, + 10767.976326538665, + 11115.8842723046, + 11477.50140112237, + 11852.827712991995, + 12241.863207913486, + 12644.607885886815, + 13061.061746911995, + 13491.224790989043, + 13935.097018117925, + 14392.67842829866, + 14863.969021531262, + 15348.968797815702, + 15847.677757152007, + 16360.095899540152, + 16886.22322498015, + 17426.059733471993, + 6651.964687058, + 6711.536563775037, + 6784.817623543926, + 6871.807866364667, + 6972.507292237257, + 7086.915901161706, + 7215.033693138001, + 7356.860668166147, + 7512.3968262461485, + 7681.642167377999, + 7864.596691561707, + 8061.260398797261, + 8271.633289084664, + 8495.715362423922, + 8733.50661881504, + 8985.007058257997, + 9250.21668075282, + 9529.135486299483, + 9821.763474897996, + 10128.100646548375, + 10448.147001250592, + 10781.902539004666, + 11129.367259810599, + 11490.541163668371, + 11865.424250577998, + 12254.016520539484, + 12656.317973552817, + 13072.328609617996, + 13502.048428735041, + 13945.477430903926, + 14402.615616124662, + 14873.462984397263, + 15358.0195357217, + 15856.285270098006, + 16368.26018752615, + 16893.94428800615, + 17433.33757153799, + 6675.2786293280005, + 6734.407281085037, + 6807.245115893928, + 6893.792133754668, + 6994.048334667258, + 7108.013718631706, + 7235.688285648, + 7377.072035716147, + 7532.1649688361495, + 7700.967085008, + 7883.478384231708, + 8079.698866507263, + 8289.628531834667, + 8513.267380213922, + 8750.61541164504, + 9001.672626127998, + 9266.439023662819, + 9544.914604249481, + 9837.099367887999, + 10142.993314578373, + 10462.596444320594, + 10795.908757114665, + 11142.930252960596, + 11503.660931858372, + 11878.100793807997, + 12266.249838809488, + 12668.108066862816, + 13083.675477967996, + 13512.952072125041, + 13955.937849333926, + 14412.632809594661, + 14883.036952907265, + 15367.150279271702, + 15864.972788688008, + 16376.504481156151, + 16901.74535667615, + 17440.695415247992, + 6698.672577242, + 6757.358004039037, + 6829.752613887927, + 6915.856406788666, + 7015.669382741257, + 7129.191541745706, + 7256.422883801999, + 7397.363408910146, + 7552.013117070149, + 7720.372008281999, + 7902.440082545707, + 8098.217339861261, + 8307.703780228667, + 8530.899403647922, + 8767.804210119039, + 9018.418199641997, + 9282.741372216818, + 9560.773727843483, + 9852.515266521996, + 10157.965988252376, + 10477.125893034594, + 10809.994980868663, + 11156.573251754597, + 11516.860705692372, + 11890.857342681995, + 12278.563162723485, + 12679.97816581681, + 13095.102351961998, + 13523.935721159041, + 13966.478273407924, + 14422.73000870866, + 14892.690927061265, + 15376.361028465702, + 15873.740312922007, + 16384.82878043015, + 16909.62643099015, + 17448.13326460199, + 6722.1465308, + 6780.388732637038, + 6852.340117525927, + 6938.000685466666, + 7037.370436459258, + 7150.449370503705, + 7277.2374876, + 7417.734787748146, + 7571.9412709481485, + 7739.856937199999, + 7921.481786503708, + 8116.815818859261, + 8325.859034266665, + 8548.611432725922, + 8785.073014237041, + 9035.243778799999, + 9299.12372641482, + 9576.712857081482, + 9868.011170799997, + 10173.018667570374, + 10491.735347392592, + 10824.161210266664, + 11170.296256192598, + 11530.140485170372, + 11903.693897199997, + 12290.956492281484, + 12691.928270414815, + 13106.609231599996, + 13534.999375837038, + 13977.098703125925, + 14432.90721346666, + 14902.424906859264, + 15385.6517833037, + 15882.58784280001, + 16393.23308534815, + 16917.58751094815, + 17455.651119599992, + 6745.700490002, + 6803.499466879037, + 6875.007626807926, + 6960.224969788666, + 7059.151495821257, + 7171.787204905706, + 7298.132097042, + 7438.186172230146, + 7591.949430470149, + 7759.421871761999, + 7940.603496105707, + 8135.494303501261, + 8344.094293948667, + 8566.40346744792, + 8802.42182399904, + 9052.149363601999, + 9315.58608625682, + 9592.731991963483, + 9883.587080721996, + 10188.151352532375, + 10506.424807394593, + 10838.407445308665, + 11184.099266274598, + 11543.500270292372, + 11916.610457361998, + 12303.429827483484, + 12703.958380656815, + 13118.196116881998, + 13546.143036159041, + 13987.799138487926, + 14443.16442386866, + 14912.238892301264, + 15395.022543785703, + 15891.515378322007, + 16401.71739591015, + 16925.62859655015, + 17463.24898024199, + 6748.3225372980305, + 6806.072266917893, + 6877.531179589607, + 6962.699275313171, + 7061.576554088586, + 7174.1630159158585, + 7300.458660794978, + 7440.463488725949, + 7594.177499708777, + 7761.600693743449, + 7942.733070829981, + 8137.574630968361, + 8346.125374158592, + 8568.38530040067, + 8804.35440969461, + 9054.032702040397, + 9317.42017743804, + 9594.51683588753, + 9885.32267738887, + 10189.837701942073, + 10508.061909547112, + 10839.995300204007, + 11185.637873912767, + 11544.989630673363, + 11918.050570485813, + 12304.820693350128, + 12705.299999266284, + 13119.488488234287, + 13547.386160254156, + 13988.993015325867, + 14444.309053449426, + 14913.33427462485, + 15396.068678852118, + 15892.512266131249, + 16402.665036462215, + 16926.52698984504, + 17464.098126279703, + 8183.057565200001, + 8216.183685970369, + 8263.018989792592, + 8323.563476666666, + 8397.817146592592, + 8485.77999957037, + 8587.452035599998, + 8702.83325468148, + 8831.923656814815, + 8974.723242, + 9131.232010237038, + 9301.449961525926, + 9485.377095866666, + 9683.013413259256, + 9894.358913703705, + 10119.413597199999, + 10358.177463748152, + 10610.650513348151, + 10876.832745999996, + 11156.724161703705, + 11450.32476045926, + 11757.634542266665, + 12078.653507125931, + 12413.381655037037, + 12761.818985999997, + 13123.96550001482, + 13499.821197081481, + 13889.386077199997, + 14292.660140370375, + 14709.64338659259, + 15140.33581586666, + 15584.737428192599, + 16042.848223570367, + 16514.668202000008, + 17000.197363481482, + 17499.435708014815, + 18012.38323559999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 6.426538638300477, + "volume": 1.892705 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/RheemHPHD60.json b/examples/RheemHPHD60.json new file mode 100644 index 0000000..5fde0c8 --- /dev/null +++ b/examples/RheemHPHD60.json @@ -0,0 +1,1724 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0010977689, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 280.3722222222222, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 316.4833333333333 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 13552.909451672069, + 13267.061584284758, + 13024.84452992904, + 12822.533622786603, + 12656.517402307984, + 12523.297613212571, + 12419.489205488619, + 12341.820334393244, + 12287.132360452393, + 12252.379849460907, + 12234.63057248245, + 12231.065505849576, + 12238.978831163657, + 12255.777935294951, + 12278.983410382567, + 12306.22905383446, + 12335.26186832746, + 12363.94206180723, + 12390.243047488313, + 12412.251443854097, + 12428.167074656832, + 12436.30296891762, + 12435.085360926421, + 12423.053690242046, + 12398.860601692175, + 12361.271945373346, + 12309.166776650938, + 12241.537356159197, + 12157.489149801226, + 12056.240828748985, + 11937.124269443284, + 11799.584553593793, + 11643.179968179053, + 11467.582005446437, + 11272.575362912197, + 11058.057943361426, + 10824.040854848092, + 13552.941136064777, + 13267.092642247573, + 13024.87504082654, + 12822.563661867689, + 12656.547040705886, + 12523.326917944843, + 12419.51823945715, + 12341.849156384238, + 12287.161025136389, + 12252.408407392772, + 12234.659070101374, + 12231.093985479074, + 12239.00733101158, + 12255.806489453471, + 12279.012048828183, + 12306.257802428003, + 12335.290748814077, + 12363.971091816411, + 12390.272240533868, + 12412.280809334157, + 12428.196617853859, + 12436.332690998406, + 12435.115258942085, + 12423.083757128028, + 12398.890826268245, + 12361.302312343609, + 12309.197266603816, + 12241.567945567444, + 12157.519811021919, + 12056.271530023538, + 11937.15497489742, + 11799.61522323758, + 11643.210557906883, + 11467.612467037017, + 11272.60564402858, + 11058.087987550976, + 10824.070601542502, + 13666.169797464388, + 13378.077308443788, + 13133.898820635, + 12929.894969388011, + 12762.439595321659, + 12628.019744323634, + 12523.235667550478, + 12444.800821427618, + 12389.541867649294, + 12354.398673178644, + 12336.424310247634, + 12332.785056357116, + 12340.760394276758, + 12357.74301204512, + 12381.238802969612, + 12408.866865626482, + 12438.359503860858, + 12467.562226786715, + 12494.433748786882, + 12517.045989513046, + 12533.584073885753, + 12542.346332094412, + 12541.74429959728, + 12530.302717121467, + 12506.65953066295, + 12469.565891486563, + 12417.886156125978, + 12350.597886383759, + 12266.791849331295, + 12165.67201730885, + 12046.555567925514, + 11908.872884059287, + 11752.16755385699, + 11576.096370734285, + 11380.429333375756, + 11165.049645734758, + 10929.953717033575, + 13870.548646991494, + 13578.378715962783, + 13330.631230591043, + 13123.54036832921, + 12953.453511899042, + 12816.831249291177, + 12710.247373765094, + 12630.388883849153, + 12574.055983340539, + 12538.162081305325, + 12519.733792078414, + 12515.910935263588, + 12523.946535733468, + 12541.206823629544, + 12565.171234362158, + 12593.432408610504, + 12623.696192322643, + 12653.781636715486, + 12681.620998274808, + 12705.25973875523, + 12722.856525180236, + 12732.683229842169, + 12733.12493030222, + 12722.679909390445, + 12699.959655205757, + 12663.688861115932, + 12612.705425757571, + 12545.960453036178, + 12462.518252126076, + 12361.556337470472, + 12242.365428781408, + 12104.349451039798, + 11947.025534495404, + 11770.024014666835, + 11573.088432341601, + 11356.075533576008, + 11118.955269695281, + 14075.577175212253, + 13779.28216197854, + 13527.916374773666, + 13317.687533153485, + 13144.916561942711, + 13006.037591234905, + 12897.597956392501, + 12816.258198046775, + 12758.792062097868, + 12722.08649971478, + 12703.141667335354, + 12699.070926666314, + 12707.100844683215, + 12724.571193630483, + 12748.9349510214, + 12777.758299638104, + 12808.720627531578, + 12839.614528021688, + 12868.34579969713, + 12892.933446415474, + 12911.509677303142, + 12922.319906755401, + 12923.72275443641, + 12914.190045279125, + 12892.30680948542, + 12856.771282525999, + 12806.394905140414, + 12740.102323337092, + 12656.931388393306, + 12556.033156855183, + 12436.671890537717, + 12298.225056524749, + 12140.183327168997, + 11962.150580092, + 11763.843898184194, + 11545.093569604833, + 11305.843087782068, + 14281.24793821729, + 13980.780307602556, + 13725.747019315211, + 13512.329335014061, + 13336.821721626742, + 13195.631851349768, + 13085.280601648496, + 13002.402055257151, + 12943.743500178798, + 12906.165429685396, + 12886.64154231771, + 12882.258741885404, + 12890.21713746697, + 12907.830043409775, + 12932.523979330035, + 12961.838670112826, + 12993.427045912078, + 13025.055242150582, + 13054.60259951998, + 13080.061663980776, + 13099.538186762325, + 13111.251124362852, + 13113.532638549414, + 13104.82809635795, + 13083.696070093241, + 13048.80833732894, + 12998.949880907536, + 12933.018888940393, + 12850.026754807719, + 12749.098077158586, + 12629.470659910916, + 12490.495512251502, + 12331.636848635984, + 12152.472088788838, + 11952.691857703448, + 11732.099985642008, + 11490.613508135602, + 14487.553474230019, + 14182.865796079097, + 13924.11591248082, + 13707.458627196927, + 13529.161949257998, + 13385.607092963472, + 13273.288477881659, + 13188.813728849715, + 13128.903675973641, + 13090.392354628335, + 13070.227005457496, + 13065.468074373734, + 13073.289212558473, + 13090.977276462017, + 13115.93232780353, + 13145.66763357101, + 13177.80966602133, + 13210.098102680227, + 13240.38582634227, + 13266.638925070903, + 13286.936692198424, + 13299.47162632599, + 13302.549431323603, + 13294.589016330128, + 13274.122495753298, + 13239.795189269691, + 13190.365621824738, + 13124.705523632736, + 13041.799830176842, + 12940.746682209066, + 12820.757425750251, + 12681.15661209014, + 12521.381997787312, + 12340.984544669174, + 12139.628419832052, + 11917.09099564108, + 11673.262849730272, + 14694.486303606713, + 14385.531252785306, + 14123.015784668489, + 13903.068245120943, + 13721.930185276187, + 13575.956361536606, + 13461.614735573428, + 13375.486474326772, + 13314.26595000555, + 13274.760740087619, + 13253.891627319603, + 13248.692599717053, + 13256.31085056434, + 13274.00677841469, + 13299.153987090209, + 13329.23928568184, + 13361.862688549394, + 13394.73741532153, + 13425.689890895772, + 13452.659745438497, + 13473.699814384936, + 13486.976138439188, + 13490.767963574188, + 13483.467741031747, + 13463.581127322524, + 13429.72698422605, + 13380.63737879068, + 13315.157583333661, + 13232.24607544107, + 13130.974537967862, + 13010.527859037831, + 12870.204132043647, + 12709.414655646817, + 12527.683933777706, + 12324.649675635568, + 12100.06279568846, + 11853.787413673363, + 14902.038928836466, + 14588.769285231125, + 14322.439348409021, + 14099.15100633778, + 13915.11935225385, + 13766.672684662555, + 13650.252507338068, + 13562.413529323423, + 13499.823664930509, + 13459.264033740077, + 13437.628960601729, + 13431.925975633922, + 13439.275814223976, + 13456.912417028061, + 13482.182929971215, + 13512.547704247323, + 13545.58029631912, + 13578.967467918219, + 13610.509186045076, + 13638.118622968997, + 13659.822156228167, + 13673.759368629606, + 13678.183048249206, + 13671.459188431694, + 13652.066987790682, + 13618.598850208626, + 13569.760384836836, + 13504.37040609548, + 13421.360933673584, + 13319.777192529038, + 13198.77761288857, + 13057.633830247783, + 12895.730685371136, + 12712.566224291928, + 12507.751698312344, + 12281.011564003384, + 12032.183483204952, + 15110.203834541178, + 14792.572483059324, + 14522.379298366055, + 14295.699710531928, + 14108.722354896337, + 13957.749072067534, + 13839.194907922636, + 13749.588113607624, + 13685.570145537306, + 13643.895665395386, + 13621.432540134383, + 13615.161841975718, + 13622.177848409634, + 13639.688042195245, + 13665.013111360517, + 13695.586949202274, + 13728.956654286203, + 13762.782530446839, + 13794.838086787579, + 13823.010037680677, + 13845.298302767236, + 13859.816006957237, + 13864.789480429492, + 13858.558258631674, + 13839.575082280333, + 13806.40589736086, + 13757.729855127496, + 13692.339312103359, + 13609.139830080405, + 13507.150176119465, + 13385.502322550203, + 13243.441446971165, + 13080.325932249742, + 12895.627366522162, + 12688.930543193555, + 12459.933460937867, + 12208.447323697941, + 15318.973487475614, + 14996.933418045528, + 14722.828311336067, + 14492.70713952073, + 14302.732080041846, + 14149.178515610613, + 14028.435034207072, + 13937.003429080149, + 13871.49869874759, + 13828.649046996037, + 13805.295882880946, + 13798.393820726676, + 13805.010680126403, + 13822.32748594218, + 13847.63846830492, + 13878.351062614378, + 13911.985909539175, + 13946.17685501679, + 13978.67095025355, + 14007.328451724657, + 14030.122821174142, + 14045.14072561493, + 14050.582037328768, + 14044.75983386627, + 14026.10039804692, + 13993.143217959041, + 13944.540986959819, + 13879.059603675314, + 13795.578172000423, + 13693.089001098895, + 13570.697605403335, + 13427.622704615243, + 13263.19622370494, + 13076.863292911588, + 12868.182247743269, + 12636.824628976849, + 12382.57518265811, + 15528.340336527326, + 15201.844644098148, + 14923.779046248332, + 14690.166057254324, + 14497.141396661385, + 14340.953989283642, + 14217.965965204094, + 14124.652659774581, + 14057.602613615807, + 14013.517572617338, + 13989.212487937579, + 13981.615516003814, + 13987.76801851217, + 14004.824562427628, + 14030.052919984038, + 14060.834068684097, + 14094.662191299365, + 14129.144675870253, + 14162.002115706038, + 14191.068309384846, + 14214.29026075365, + 14229.728178928312, + 14235.555478293518, + 14230.058778502816, + 14211.637904478637, + 14178.805886412236, + 14130.188959763736, + 14064.526565262135, + 13980.671348905253, + 13877.589161959811, + 13754.359060961338, + 13610.173307714253, + 13444.337369291827, + 13256.269918036161, + 13045.50283155827, + 12811.68119273797, + 12554.563289723968, + 15738.29681271673, + 15407.298697258459, + 15125.22414416499, + 14888.069209815707, + 14691.943155858802, + 14533.06844921135, + 14407.78076205928, + 14312.528971857371, + 14243.875161329264, + 14198.494618467459, + 14173.17583653331, + 14164.82051405703, + 14170.443554837684, + 14187.173067943193, + 14212.250367710343, + 14243.029973744771, + 14276.979610920975, + 14311.680209382303, + 14344.82590454096, + 14374.224037078026, + 14397.795152943405, + 14413.573003355892, + 14419.704544803111, + 14414.449939041559, + 14396.182553096585, + 14363.388959262402, + 14314.668935102067, + 14248.735463447503, + 14164.414732399482, + 14060.646135327652, + 13936.482270870478, + 13791.088942935325, + 13623.745160698398, + 13433.843138604747, + 13220.888296368308, + 12984.499258971837, + 12724.407856666981, + 15948.835329197034, + 15613.288095700533, + 15327.156228280983, + 15086.409325420675, + 14887.130190870763, + 14725.51483365125, + 14597.872468051006, + 14500.62551362775, + 14430.30959520805, + 14383.573542887356, + 14357.179392029951, + 14348.002383268993, + 14353.030962506482, + 14369.366780913278, + 14394.224694929095, + 14424.932766262522, + 14458.932261890977, + 14493.777654060765, + 14527.136620287021, + 14556.790043353752, + 14580.632011313826, + 14596.669817488946, + 14603.023960469693, + 14597.928144115489, + 14579.729277554638, + 14546.887475184276, + 14497.976056670384, + 14431.681546947855, + 14346.80367622039, + 14242.255379960554, + 14117.062798909768, + 13970.365279078334, + 13801.415371745396, + 13609.578833458925, + 13394.33462603582, + 13155.274916561755, + 12892.105077391328, + 16159.948281254288, + 15819.805339731292, + 15529.567903924066, + 15285.17911441787, + 15082.695317066764, + 14918.286062993704, + 14788.234108590494, + 14688.935415517799, + 14616.899150705118, + 14568.747686350842, + 14541.216599922185, + 14531.15467415525, + 14535.523897054967, + 14551.39946189513, + 14575.969767218414, + 14606.536416836325, + 14640.514219829225, + 14675.431190546353, + 14708.928548605787, + 14738.760718894471, + 14762.795331568199, + 14779.013222051624, + 14785.50843103827, + 14780.48820449049, + 14762.272993639512, + 14729.296454985424, + 14680.105450297162, + 14613.36004661252, + 14527.833516238152, + 14422.412336749569, + 14296.09619099113, + 14147.997967076057, + 13977.343758386445, + 13783.472863573208, + 13565.837786556167, + 13324.004236523946, + 13057.651127934065, + 16371.628046307394, + 16026.842911790482, + 15732.451758554871, + 15484.37126928875, + 15278.631331949133, + 15111.3750397619, + 14978.858691221805, + 14877.451790092427, + 14803.637045406242, + 14754.010371464543, + 14725.280887837494, + 14714.270919364135, + 14717.915996152336, + 14733.264853578836, + 14757.47943228923, + 14787.834878197973, + 14821.719542488363, + 14856.634981612573, + 14890.195957291628, + 14920.1304365154, + 14944.279591542625, + 14960.5977999009, + 14967.152644386666, + 14962.12491306523, + 14943.808599270762, + 14910.61090160627, + 14861.052223943649, + 14793.766175423616, + 14707.49957045576, + 14601.112428718545, + 14473.57797515925, + 14323.98263999405, + 14151.526058707976, + 13955.52107205487, + 13735.393726057495, + 13490.683272007409, + 13221.042166465084, + 16583.866983908047, + 16234.393276450657, + 15935.800361766807, + 15683.978464647602, + 15474.931015153014, + 15304.774648611852, + 15169.739205621798, + 15066.167732049385, + 14990.516479030002, + 14939.354902967907, + 14909.365665536194, + 14897.344633676836, + 14900.200879600638, + 14914.956680787289, + 14938.747519985307, + 14968.822085212088, + 15002.542269753878, + 15037.383172165779, + 15070.933096271752, + 15100.893551164612, + 15125.07925120603, + 15141.418116026543, + 15147.951270525522, + 15142.833044871228, + 15124.330974500752, + 15090.825800120052, + 15040.811467703938, + 14972.89512849609, + 14885.797139009039, + 14778.351061024161, + 14649.503661591683, + 14498.314913030728, + 14323.95799292925, + 14125.71928414403, + 13902.998374800785, + 13655.308058293991, + 13382.27433328708, + 16796.657435740777, + 16442.44888041723, + 16139.60626528614, + 15883.993357241565, + 15671.587128446392, + 15498.477756332391, + 15360.868623600178, + 15255.076318219217, + 15177.53063342784, + 15124.774567733235, + 15093.464324911443, + 15080.369314007357, + 15082.372149334748, + 15096.468650476214, + 15119.767842283232, + 15149.491954876128, + 15182.976423644084, + 15217.669889245144, + 15251.134197606198, + 15281.044399923005, + 15305.188752660175, + 15321.46871755118, + 15327.898961598332, + 15322.607357072817, + 15303.834981514683, + 15269.936117732814, + 15219.378253804965, + 15150.74208307775, + 15062.721504166619, + 14954.123620955917, + 14823.8687425988, + 14670.990383517315, + 14494.63526340236, + 14294.063307213659, + 14068.647645179853, + 13817.874612798383, + 13541.343750835587, + 17009.99172562295, + 16651.002152528406, + 16343.862002971939, + 16084.408585950554, + 15868.592415730072, + 15692.477211845195, + 15552.239899099468, + 15444.170607565315, + 15364.67267258399, + 15310.262634765626, + 15277.570239989185, + 15263.338439402536, + 15264.423389422345, + 15277.79445173417, + 15300.534193292426, + 15329.838386320365, + 15363.016008310116, + 15397.489242022657, + 15430.793475487815, + 15460.5773020043, + 15484.602520139631, + 15500.744133730244, + 15506.990351881386, + 15501.44258896717, + 15482.31546463058, + 15447.936803783454, + 15396.747636606466, + 15327.302198549174, + 15238.267930329977, + 15128.425477936142, + 14996.668692623767, + 14842.004630917847, + 14663.553554612203, + 14460.548930769504, + 14232.337431721327, + 13978.378935068053, + 13698.246523678958, + 17033.728790806592, + 16674.20514765561, + 16366.584545736758, + 16106.701354278335, + 15890.503147777485, + 15714.050706000207, + 15573.518013981362, + 15465.192262024673, + 15385.473845702709, + 15330.87636585691, + 15298.02662859755, + 15283.66464530379, + 15284.64363262362, + 15297.930012473907, + 15320.603412040356, + 15349.856663777546, + 15382.995805408904, + 15417.440079926719, + 15450.721935592128, + 15480.48702593514, + 15504.494209754605, + 15520.615551118233, + 15526.836319362592, + 15521.254989093119, + 15502.083240184094, + 15467.64595777865, + 15416.381232288797, + 15346.840359395377, + 15257.687840048111, + 15147.701380465569, + 15015.771892135146, + 14860.903491813162, + 14682.213501524739, + 14478.932448563855, + 14250.404065493403, + 13996.085290145054, + 13715.546265619398, + 29502.68484625786, + 28807.91574332504, + 28189.28535677766, + 27641.158172676267, + 27158.011882350223, + 26734.43738239773, + 26365.138774685885, + 26044.93336635065, + 25768.751669796777, + 25531.637402697957, + 25328.74748799668, + 25155.35205390433, + 25006.83443390112, + 24878.691166736135, + 24766.531996427293, + 24666.079872261416, + 24573.170948794148, + 24483.754585849998, + 24393.893348522313, + 24299.76300717334, + 24197.65253743415, + 24083.964120204666, + 23955.213141653694, + 23808.02819321888, + 23639.15107160671, + 23445.436778792588, + 23223.85352202071, + 22971.482713804133, + 22685.518971924816, + 22363.270119433564, + 22002.157184649983, + 21599.714401162582, + 21153.589207828772, + 20661.542248774702, + 20121.44737339551, + 19531.291636355072, + 18889.175297586236 + ], + "input_power": [ + 2219.6093633, + 2236.3469467074074, + 2260.696278618519, + 2292.6573590333333, + 2332.2301879518513, + 2379.4147653740747, + 2434.2110912999997, + 2496.619165729629, + 2566.6389886629636, + 2644.2705601, + 2729.513880040742, + 2822.3689484851866, + 2922.835765433333, + 3030.914330885184, + 3146.604644840742, + 3269.906707299999, + 3400.820518262966, + 3539.3460777296305, + 3685.4833856999985, + 3839.232442174076, + 4000.593247151853, + 4169.565800633333, + 4346.1501026185215, + 4530.346153107409, + 4722.153952099998, + 4921.5734995962985, + 5128.604795596297, + 5343.247840099999, + 5565.5026331074105, + 5795.3691746185195, + 6032.847464633332, + 6277.937503151855, + 6530.639290174073, + 6790.952825700006, + 7058.878109729631, + 7334.415142262964, + 7617.5639232999965, + 2219.6109219095474, + 2236.34848224371, + 2260.697791081577, + 2292.658848423147, + 2332.2316542684207, + 2379.416208617399, + 2434.2125114700807, + 2496.620562826465, + 2566.640362686555, + 2644.271911050347, + 2729.5152079178447, + 2822.3702532890443, + 2922.837047163947, + 3030.915589542553, + 3146.6058804248664, + 3269.90791981088, + 3400.821707700601, + 3539.347244094022, + 3685.484528991146, + 3839.233562391979, + 4000.594344296511, + 4169.566874704747, + 4346.151153616691, + 4530.3471810323335, + 4722.154956951677, + 4921.574481374734, + 5128.605754301489, + 5343.248775731946, + 5565.503545666113, + 5795.370064103978, + 6032.848331045544, + 6277.938346490822, + 6530.640110439798, + 6790.953622892487, + 7058.878883848868, + 7334.415893308957, + 7617.5646512727435, + 2225.177316075, + 2241.832495037963, + 2266.09942250463, + 2297.9780984749996, + 2337.4685229490733, + 2384.5706959268523, + 2439.284617408333, + 2501.610287393518, + 2571.547705882408, + 2649.096872875, + 2734.2577883712975, + 2827.0304523712975, + 2927.4148648749997, + 3035.4110258824057, + 3151.0189353935193, + 3274.2385934083322, + 3405.0699999268536, + 3543.5131549490743, + 3689.568058474998, + 3843.2347105046324, + 4004.513111037963, + 4173.403260074999, + 4349.9051576157435, + 4534.018803660186, + 4725.74419820833, + 4925.081341260187, + 5132.03023281574, + 5346.590872874999, + 5568.763261437966, + 5798.547398504631, + 6035.943284074997, + 6280.950918149076, + 6533.570300726851, + 6793.801431808339, + 7061.644311393521, + 7337.098939482409, + 7620.165316074997, + 2235.207143316, + 2251.7139942789627, + 2275.8325937456298, + 2307.5629417160003, + 2346.905038190074, + 2393.8588831678526, + 2448.4244766493334, + 2510.6018186345177, + 2580.390909123408, + 2657.7917481160002, + 2742.804335612298, + 2835.4286716122974, + 2935.664756116, + 3043.512589123406, + 3158.97217063452, + 3282.0435006493326, + 3412.7265791678537, + 3551.0214061900742, + 3696.9279817159986, + 3850.4463057456323, + 4011.5763782789645, + 4180.318199316, + 4356.671768856743, + 4540.637086901186, + 4732.21415344933, + 4931.402968501188, + 5138.203532056741, + 5352.615844116, + 5574.639904678966, + 5804.275713745631, + 6041.523271315998, + 6286.382577390077, + 6538.8536319678515, + 6798.936435049339, + 7066.630986634523, + 7341.937286723409, + 7624.855335315997, + 2245.246629159, + 2261.6051521219624, + 2285.5754235886297, + 2317.1574435589996, + 2356.3512120330734, + 2403.156729010852, + 2457.573994492333, + 2519.6030084775175, + 2589.2437709664077, + 2666.4962819589996, + 2751.3605414552976, + 2843.836549455297, + 2943.9243059589994, + 3051.6238109664055, + 3166.935064477519, + 3289.858066492333, + 3420.392817010854, + 3558.5393160330746, + 3704.2975635589987, + 3857.667559588632, + 4018.649304121964, + 4187.242797158999, + 4363.448038699744, + 4547.265028744186, + 4738.69376729233, + 4937.734254344187, + 5144.38648989974, + 5358.650473958999, + 5580.526206521968, + 5810.01368758863, + 6047.112917158997, + 6291.823895233076, + 6544.146621810852, + 6804.081096892339, + 7071.627320477522, + 7346.785292566408, + 7629.555013158996, + 2255.2957736040003, + 2271.505968566963, + 2295.32791203363, + 2326.761604004, + 2365.8070444780733, + 2412.4642334558525, + 2466.7331709373334, + 2528.6138569225177, + 2598.1062914114077, + 2675.2104744040003, + 2759.926405900298, + 2852.2540859002975, + 2952.193514404, + 3059.744691411406, + 3174.9076169225195, + 3297.6822909373323, + 3428.068713455854, + 3566.0668844780744, + 3711.6768040039988, + 3864.8984720336316, + 4025.7318885669642, + 4194.177053604, + 4370.2339671447435, + 4553.902629189187, + 4745.1830397373305, + 4944.075198789185, + 5150.5791063447405, + 5364.694762403999, + 5586.422166966967, + 5815.76132003363, + 6052.712221603998, + 6297.274871678076, + 6549.449270255852, + 6809.235417337339, + 7076.633312922522, + 7351.642957011409, + 7634.264349603996, + 2265.354576651, + 2281.4164436139627, + 2305.0900590806295, + 2336.375423051, + 2375.2725355250736, + 2421.781396502852, + 2475.9020059843333, + 2537.634363969518, + 2606.9784704584076, + 2683.934325451, + 2768.5019289472975, + 2860.681280947297, + 2960.4723814509994, + 3067.8752304584054, + 3182.889827969519, + 3305.5161739843325, + 3435.754268502853, + 3573.6041115250746, + 3719.0657030509983, + 3872.1390430806314, + 4032.824131613964, + 4201.120968650999, + 4377.029554191743, + 4560.549888236186, + 4751.681970784331, + 4950.425801836187, + 5156.781381391741, + 5370.748709450998, + 5592.327786013966, + 5821.518611080632, + 6058.321184650997, + 6302.7355067250755, + 6554.761577302852, + 6814.399396384339, + 7081.64896396952, + 7356.510280058408, + 7638.9833446509965, + 2275.4230383, + 2291.336577262963, + 2314.8618647296303, + 2345.9989007, + 2384.7476851740735, + 2431.1082181518527, + 2485.0804996333327, + 2546.6645296185184, + 2615.8603081074075, + 2692.6678351000005, + 2777.087110596298, + 2869.1181345962973, + 2968.7609071, + 3076.015428107406, + 3190.8816976185194, + 3313.3597156333326, + 3443.449482151854, + 3581.1509971740743, + 3726.4642606999987, + 3879.3892727296316, + 4039.926033262964, + 4208.0745423, + 4383.8347998407435, + 4567.206805885186, + 4758.190560433331, + 4956.786063485187, + 5162.993315040741, + 5376.812315100001, + 5598.243063662967, + 5827.285560729631, + 6063.939806299998, + 6308.205800374077, + 6560.083542951851, + 6819.573034033339, + 7086.674273618522, + 7361.3872617074085, + 7643.711998299997, + 2285.501158551, + 2301.266369513963, + 2324.6433289806296, + 2355.632036951, + 2394.2324934250732, + 2440.4446984028523, + 2494.2686518843334, + 2555.7043538695175, + 2624.7518043584078, + 2701.411003350999, + 2785.681950847298, + 2877.564646847297, + 2977.0590913509996, + 3084.1652843584056, + 3198.883225869519, + 3321.2129158843322, + 3451.1543544028536, + 3588.7075414250744, + 3733.8724769509986, + 3886.649160980631, + 4047.0375935139637, + 4215.037774550999, + 4390.649704091744, + 4573.873382136187, + 4764.7088086843305, + 4963.155983736187, + 5169.214907291742, + 5382.885579350999, + 5604.167999913966, + 5833.06216898063, + 6069.568086550997, + 6313.685752625076, + 6565.415167202851, + 6824.756330284338, + 7091.709241869521, + 7366.273901958408, + 7648.450310550996, + 2295.588937404, + 2311.2058203669626, + 2334.4344518336297, + 2365.274831804, + 2403.7269602780734, + 2449.790837255852, + 2503.4664627373327, + 2564.7538367225175, + 2633.652959211408, + 2710.163830204, + 2794.2864497002975, + 2886.020817700297, + 2985.3669342039993, + 3092.3247992114057, + 3206.894412722519, + 3329.0757747373327, + 3458.868885255854, + 3596.273744278075, + 3741.2903518039984, + 3893.9187078336313, + 4054.158812366963, + 4222.010665403998, + 4397.474266944743, + 4580.549616989186, + 4771.23671553733, + 4969.535562589187, + 5175.446158144741, + 5388.9685022039985, + 5610.102594766965, + 5838.84843583363, + 6075.206025403997, + 6319.175363478075, + 6570.756450055852, + 6829.94928513734, + 7096.7538687225215, + 7371.170200811409, + 7653.198281403996, + 2305.686374859, + 2321.154929821963, + 2344.23523328863, + 2374.9272852589997, + 2413.231085733073, + 2459.1466347108526, + 2512.673932192333, + 2573.8129781775174, + 2642.5637726664077, + 2718.926315659, + 2802.900607155297, + 2894.4866471552973, + 2993.6844356589995, + 3100.4939726664056, + 3214.9152581775193, + 3336.9482921923327, + 3466.593074710854, + 3603.849605733075, + 3748.717885258998, + 3901.197913288632, + 4061.2896898219633, + 4228.993214858999, + 4404.3084883997435, + 4587.235510444186, + 4777.774280992331, + 4975.924800044187, + 5181.68706759974, + 5395.0610836589985, + 5616.046848221967, + 5844.6443612886305, + 6080.8536228589965, + 6324.674632933075, + 6576.107391510852, + 6835.1518985923385, + 7101.808154177521, + 7376.076158266408, + 7657.9559108589965, + 2315.7934709160004, + 2331.113697878963, + 2354.0456733456294, + 2384.589397316, + 2422.7448697900736, + 2468.512090767852, + 2521.8910602493333, + 2582.8817782345172, + 2651.484244723408, + 2727.698459716, + 2811.5244232122977, + 2902.962135212297, + 3002.0115957159996, + 3108.672804723406, + 3222.9457622345194, + 3344.830468249332, + 3474.326922767854, + 3611.4351257900744, + 3756.155077315999, + 3908.486777345632, + 4068.430225878964, + 4235.985422915999, + 4411.152368456744, + 4593.931062501186, + 4784.321505049332, + 4982.323696101187, + 5187.93763565674, + 5401.1633237159995, + 5622.000760278965, + 5850.449945345631, + 6086.510878915999, + 6330.183560990076, + 6581.467991567852, + 6840.364170649339, + 7106.872098234521, + 7380.99177432341, + 7662.723198915997, + 2325.9102255750004, + 2341.082124537963, + 2363.8657720046294, + 2394.261167975, + 2432.268312449073, + 2477.887205426852, + 2531.1178469083334, + 2591.9602368935175, + 2660.4143753824083, + 2736.4802623749993, + 2820.157897871298, + 2911.4472818712975, + 3010.3484143749997, + 3116.8612953824063, + 3230.985924893519, + 3352.722302908332, + 3482.070429426854, + 3619.0303044490747, + 3763.601927974998, + 3915.785300004632, + 4075.580420537964, + 4242.9872895749995, + 4418.005907115743, + 4600.636273160186, + 4790.8783877083315, + 4988.732250760187, + 5194.19786231574, + 5407.2752223749985, + 5627.964330937965, + 5856.2651880046315, + 6092.177793574997, + 6335.702147649076, + 6586.838250226851, + 6845.586101308339, + 7111.9457008935215, + 7385.917048982408, + 7667.500145574996, + 2336.0366388360003, + 2351.0602097989627, + 2373.6955292656303, + 2403.942597236, + 2441.8014137100736, + 2487.271978687852, + 2540.354292169334, + 2601.048354154518, + 2669.3541646434082, + 2745.271723636, + 2828.801031132298, + 2919.9420871322973, + 3018.6948916359997, + 3125.0594446434066, + 3239.035746154519, + 3360.623796169333, + 3489.8235946878535, + 3626.635141710075, + 3771.0584372359986, + 3923.0934812656315, + 4082.740273798964, + 4249.998814835999, + 4424.869104376744, + 4607.351142421186, + 4797.444928969331, + 4995.150464021189, + 5200.46774757674, + 5413.396779635999, + 5633.937560198967, + 5862.090089265631, + 6097.854366835998, + 6341.230392910075, + 6592.218167487852, + 6850.817690569338, + 7117.028962154521, + 7390.851982243409, + 7672.286750835997, + 2346.1727106989997, + 2361.0479536619623, + 2383.5349451286293, + 2413.633685099, + 2451.3441735730735, + 2496.6664105508517, + 2549.600396032333, + 2610.146130017518, + 2678.3036125064077, + 2754.0728434989996, + 2837.4538229952977, + 2928.4465509952975, + 3027.051027499, + 3133.2672525064054, + 3247.095226017519, + 3368.534948032333, + 3497.586418550854, + 3634.249637573075, + 3778.5246050989986, + 3930.411321128632, + 4089.9097856619637, + 4257.019998698998, + 4431.741960239743, + 4614.075670284187, + 4804.021128832331, + 5001.578335884187, + 5206.747291439741, + 5419.527995498999, + 5639.9204480619655, + 5867.92464912863, + 6103.540598698997, + 6346.768296773076, + 6597.607743350853, + 6856.058938432338, + 7122.121882017521, + 7395.796574106408, + 7677.083014698996, + 2356.318441164, + 2371.045356126963, + 2393.38401959363, + 2423.334431564, + 2460.896592038074, + 2506.070501015852, + 2558.8561584973336, + 2619.253564482517, + 2687.2627189714085, + 2762.883621964, + 2846.1162734602976, + 2936.960673460297, + 3035.4168219639996, + 3141.484718971406, + 3255.1643644825194, + 3376.4557584973327, + 3505.358901015854, + 3641.8737920380745, + 3786.0004315639985, + 3937.738819593632, + 4097.088956126964, + 4264.050841164, + 4438.624474704744, + 4620.809856749187, + 4810.606987297332, + 5008.015866349187, + 5213.036493904741, + 5425.668869964, + 5645.912994526966, + 5873.768867593631, + 6109.236489163996, + 6352.315859238075, + 6603.006977815851, + 6861.309844897339, + 7127.224460482522, + 7400.750824571409, + 7681.888937163997, + 2366.473830231, + 2381.0524171939624, + 2403.24275266063, + 2433.0448366309997, + 2470.4586691050736, + 2515.484250082852, + 2568.1215795643334, + 2628.3706575495175, + 2696.231484038408, + 2771.704059031, + 2854.7883825272975, + 2945.484454527297, + 3043.7922750309995, + 3149.711844038406, + 3263.2431615495193, + 3384.386227564333, + 3513.1410420828543, + 3649.5076051050746, + 3793.485916630999, + 3945.075976660632, + 4104.277785193964, + 4271.0913422309995, + 4445.516647771743, + 4627.553701816187, + 4817.202504364332, + 5014.463055416188, + 5219.335354971741, + 5431.819403030999, + 5651.9151995939665, + 5879.622744660632, + 6114.942038230998, + 6357.873080305076, + 6608.415870882852, + 6866.570409964339, + 7132.336697549522, + 7405.714733638408, + 7686.704518230997, + 2376.6388779, + 2391.0691368629628, + 2413.11114432963, + 2442.7649003, + 2480.0304047740733, + 2524.9076577518517, + 2577.396659233333, + 2637.497409218517, + 2705.209907707408, + 2780.5341547, + 2863.470150196298, + 2954.0178941962968, + 3052.1773866999997, + 3157.9486277074056, + 3271.331617218519, + 3392.3263552333324, + 3520.932841751853, + 3657.151076774074, + 3800.9810602999983, + 3952.422792329631, + 4111.476272862964, + 4278.1415019, + 4452.418479440743, + 4634.3072054851855, + 4823.807680033331, + 5020.919903085185, + 5225.64387464074, + 5437.979594699999, + 5657.927063262965, + 5885.486280329631, + 6120.657245899997, + 6363.4399599740755, + 6613.834422551851, + 6871.840633633338, + 7137.458593218521, + 7410.688301307409, + 7691.529757899996, + 2386.813584171, + 2401.0955151339626, + 2422.9891946006296, + 2452.494622571, + 2489.6117990450734, + 2534.3407240228526, + 2586.681397504333, + 2646.6338194895175, + 2714.1979899784083, + 2789.373908971, + 2872.161576467297, + 2962.5609924672976, + 3060.572156971, + 3166.1950699784056, + 3279.4297314895193, + 3400.2761415043324, + 3528.7343000228543, + 3664.8042070450747, + 3808.485862570998, + 3959.7792666006326, + 4118.684419133963, + 4285.201320170999, + 4459.329969711744, + 4641.070367756186, + 4830.42251430433, + 5027.386409356187, + 5231.962052911741, + 5444.149444970999, + 5663.948585533965, + 5891.35947460063, + 6126.382112170997, + 6369.016498245076, + 6619.262632822851, + 6877.120515904338, + 7142.59014748952, + 7415.671527578408, + 7696.364656170997, + 2387.944704204943, + 2402.210154265832, + 2424.087352830426, + 2453.576299898722, + 2490.676995470722, + 2535.389439546427, + 2587.713632125835, + 2647.649573208945, + 2715.1972627957625, + 2790.3567008862806, + 2873.127887480505, + 2963.5108225784306, + 3061.5055061800595, + 3167.111938285392, + 3280.330118894432, + 3401.1600480071716, + 3529.601725623619, + 3665.655151743766, + 3809.3203263676164, + 3960.5972494951766, + 4119.485921126435, + 4285.986341261397, + 4460.098509900067, + 4641.822427042436, + 4831.158092688508, + 5028.105506838289, + 5232.66466949177, + 5444.835580648955, + 5664.618240309848, + 5892.0126484744405, + 6127.018805142732, + 6369.636710314738, + 6619.866363990439, + 6877.707766169853, + 7143.160916852962, + 7416.225816039777, + 7696.902463730289, + 2968.4393282999995, + 2974.464333929629, + 2988.1010880629624, + 3009.349590699999, + 3038.2098418407395, + 3074.6818414851855, + 3118.7655896333326, + 3170.4610862851846, + 3229.768331440741, + 3296.6873250999997, + 3371.218067262964, + 3453.3605579296304, + 3543.1147970999996, + 3640.480784774073, + 3745.4585209518523, + 3858.048005633332, + 3978.2492388185206, + 4106.062220507408, + 4241.486950699998, + 4384.523429396298, + 4535.171656596297, + 4693.431632299999, + 4859.30335650741, + 5032.78682921852, + 5213.882050433331, + 5402.589020151853, + 5598.907738374074, + 5802.838205099999, + 6014.380420329632, + 6233.534384062963, + 6460.300096299998, + 6694.677557040743, + 6936.666766285184, + 7186.267724033339, + 7443.480430285188, + 7708.304885040741, + 7980.741088299997 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 4.048465654178751, + "volume": 0.9463525 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/RheemPlugInDedicated40.json b/examples/RheemPlugInDedicated40.json new file mode 100644 index 0000000..517fddc --- /dev/null +++ b/examples/RheemPlugInDedicated40.json @@ -0,0 +1,118 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 2487.7114752836865, + 2688.7392695223416, + 2740.0287368783997, + 3155.012695560001, + 3683.1371831320002, + 5044.631530140001, + 4253.821739971557, + 6279.205983958521 + ], + "input_power": [ + 669.6066044444442, + 1192.087244444444, + 685.6715999999999, + 1312.7179999999996, + 741.2812, + 1730.2859999999996, + 772.1754222222223, + 1962.2682222222222 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.5277777777777777, + "volume": 0.13627476000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemPlugInDedicated50.json b/examples/RheemPlugInDedicated50.json new file mode 100644 index 0000000..2123a72 --- /dev/null +++ b/examples/RheemPlugInDedicated50.json @@ -0,0 +1,118 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 308.15, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 2487.7114752836865, + 2688.7392695223416, + 2740.0287368783997, + 3155.012695560001, + 3683.1371831320002, + 5044.631530140001, + 4253.821739971557, + 6279.205983958521 + ], + "input_power": [ + 669.6066044444442, + 1192.087244444444, + 685.6715999999999, + 1312.7179999999996, + 741.2812, + 1730.2859999999996, + 772.1754222222223, + 1962.2682222222222 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 11.11111111111111, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.7583333333333333, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemPlugInShared40.json b/examples/RheemPlugInShared40.json new file mode 100644 index 0000000..11afe57 --- /dev/null +++ b/examples/RheemPlugInShared40.json @@ -0,0 +1,172 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.638888888888889, + "volume": 0.13627476000000002 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 333.15, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemPlugInShared50.json b/examples/RheemPlugInShared50.json new file mode 100644 index 0000000..2556793 --- /dev/null +++ b/examples/RheemPlugInShared50.json @@ -0,0 +1,172 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.375, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 333.15, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemPlugInShared65.json b/examples/RheemPlugInShared65.json new file mode 100644 index 0000000..188698e --- /dev/null +++ b/examples/RheemPlugInShared65.json @@ -0,0 +1,172 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 2.9555555555555557, + "volume": 0.221446485 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/RheemPlugInShared80.json b/examples/RheemPlugInShared80.json new file mode 100644 index 0000000..be5f08d --- /dev/null +++ b/examples/RheemPlugInShared80.json @@ -0,0 +1,172 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.4166666666666667, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.5555555555555556, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 283.30873015873016, + 293.46746031746034, + 303.6261904761905, + 313.7849206349207, + 323.9436507936509, + 334.10238095238105, + 344.26111111111123 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1252.9372831623527, + 1174.0611286362803, + 1117.2854648238892, + 1049.2775695916766, + 922.5762362674727, + 675.5917736404369, + 232.6060059610598, + -496.2277270588364, + 1449.73786624, + 1380.3520964056972, + 1332.7285613394417, + 1278.5386767780087, + 1180.0088658205736, + 989.9205589287104, + 651.6101939263917, + 98.96921599999072, + 1716.3594624000002, + 1660.8029642055549, + 1631.6197696026657, + 1607.8603520471274, + 1564.3598203828938, + 1471.7379188420819, + 1296.3990270449694, + 1000.5321599999966, + 2615.0042890541176, + 2612.883424868158, + 2688.272582890785, + 2849.3030965117287, + 3109.684831458272, + 3488.7061857953026, + 4011.234089925281, + 4707.714006588249 + ], + "input_power": [ + 205.15423999999993, + 207.96480345738289, + 223.5116158463386, + 251.794677166867, + 292.81398741896794, + 346.56954660264165, + 413.061354717888, + 492.28941176470704, + 233.1968, + 239.77835102040817, + 258.1296326530613, + 288.25064489795943, + 330.1413877551024, + 383.8018612244904, + 449.23206530612333, + 526.4320000000012, + 269.86784000000006, + 281.3806824489797, + 303.39934693877564, + 335.92383346938806, + 378.95414204081675, + 432.4902726530618, + 496.5322253061234, + 571.0800000000012, + 384.1952000000001, + 411.08206866746735, + 444.53433853541424, + 484.5520096038419, + 531.1350818727495, + 584.2835553421373, + 643.9974300120058, + 710.2767058823539 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 17.77777777777778, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 5.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 3.0083333333333333, + "volume": 0.27254952000000005 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/Sanden120.json b/examples/Sanden120.json new file mode 100644 index 0000000..e5139dd --- /dev/null +++ b/examples/Sanden120.json @@ -0,0 +1,160 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 4.0, + "maximum_refrigerant_temperature": 360.92777777777775, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 241.48333333333332, + 264.81666666666666, + 274.81666666666666, + 283.15, + 292.59444444444443, + 308.15, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 360.92777777777775 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 5003.804444444446, + -3792.0555555555525, + 4966.719999999998, + 943.2500000000023, + 3954.1600000000017, + 1580.999999999998, + 4357.4400000000005, + 734.4999999999999, + 4548.320000000001, + 749.9999999999985, + 5012.9800000000005, + -526.5000000000002, + 6763.7387499999995, + 923.3896683673469 + ], + "input_power": [ + 3221.333333333333, + 4643.333333333332, + 1825.9999999999989, + 2694.999999999998, + 1227.9999999999993, + 1859.999999999999, + 979.2, + 1468.9999999999998, + 868.0, + 1499.9999999999998, + 854.0, + 1170.0, + 795.5, + -208.92857142857136 + ] + } + }, + "use_defrost_map": false + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 330.3722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "standby_logic": { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "standby_temperature_location": "BOTTOM_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "temperature_weight_distribution": { + "normalized_height": [ + 0.5833333333333334, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 4.591055555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.45046379000000003 + } + } + }, + "depresses_temperature": false, + "fixed_volume": true, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 338.15, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/Sanden40.json b/examples/Sanden40.json new file mode 100644 index 0000000..824af26 --- /dev/null +++ b/examples/Sanden40.json @@ -0,0 +1,160 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 4.0, + "maximum_refrigerant_temperature": 360.92777777777775, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 241.48333333333332, + 264.81666666666666, + 274.81666666666666, + 283.15, + 292.59444444444443, + 308.15, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 360.92777777777775 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 5003.804444444446, + -3792.0555555555525, + 4966.719999999998, + 943.2500000000023, + 3954.1600000000017, + 1580.999999999998, + 4357.4400000000005, + 734.4999999999999, + 4548.320000000001, + 749.9999999999985, + 5012.9800000000005, + -526.5000000000002, + 6763.7387499999995, + 923.3896683673469 + ], + "input_power": [ + 3221.333333333333, + 4643.333333333332, + 1825.9999999999989, + 2694.999999999998, + 1227.9999999999993, + 1859.999999999999, + 979.2, + 1468.9999999999998, + 868.0, + 1499.9999999999998, + 854.0, + 1170.0, + 795.5, + -208.92857142857136 + ] + } + }, + "use_defrost_map": false + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 330.3722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "standby_logic": { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "standby_temperature_location": "BOTTOM_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 4.591055555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 1.3888888888888888, + "volume": 0.16 + } + } + }, + "depresses_temperature": false, + "fixed_volume": true, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 338.15, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/Sanden80.json b/examples/Sanden80.json new file mode 100644 index 0000000..d57aa95 --- /dev/null +++ b/examples/Sanden80.json @@ -0,0 +1,160 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9895833333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 4.0, + "maximum_refrigerant_temperature": 360.92777777777775, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 241.48333333333332, + 264.81666666666666, + 274.81666666666666, + 283.15, + 292.59444444444443, + 308.15, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 360.92777777777775 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 5003.804444444446, + -3792.0555555555525, + 4966.719999999998, + 943.2500000000023, + 3954.1600000000017, + 1580.999999999998, + 4357.4400000000005, + 734.4999999999999, + 4548.320000000001, + 749.9999999999985, + 5012.9800000000005, + -526.5000000000002, + 6763.7387499999995, + 923.3896683673469 + ], + "input_power": [ + 3221.333333333333, + 4643.333333333332, + 1825.9999999999989, + 2694.999999999998, + 1227.9999999999993, + 1859.999999999999, + 979.2, + 1468.9999999999998, + 868.0, + 1499.9999999999998, + 854.0, + 1170.0, + 795.5, + -208.92857142857136 + ] + } + }, + "use_defrost_map": false + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 330.3722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "standby_logic": { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "standby_temperature_location": "BOTTOM_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "absolute_temperature": 318.15, + "temperature_weight_distribution": { + "normalized_height": [ + 0.5833333333333334, + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 4.591055555555555, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 1.9444444444444444, + "volume": 0.315 + } + } + }, + "depresses_temperature": false, + "fixed_volume": true, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 96, + "standard_setpoint": 338.15, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/Scalable_MP.json b/examples/Scalable_MP.json new file mode 100644 index 0000000..b70e933 --- /dev/null +++ b/examples/Scalable_MP.json @@ -0,0 +1,2244 @@ +{ + "central_system": { + "control_type": "FIXED_FLOW_RATE", + "external_inlet_height": 0.2916666666666667, + "external_outlet_height": 0.0, + "fixed_flow_rate": 0.0015772541666666665, + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.75, + 0.8333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 30000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 16.666666666666668, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 30000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 313.7055555555555 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 30565.688231424014, + 30043.738401948016, + 29572.427695307666, + 29149.95370263768, + 28774.623979098782, + 28444.85604387781, + 28159.177380187662, + 27916.225435267334, + 27714.747620381862, + 27553.601310822407, + 27431.753845906165, + 27348.28252897644, + 27302.374627402594, + 27293.327372580065, + 27320.547959930384, + 27383.55354890114, + 27481.97126296602, + 27615.538189624756, + 27784.1013804032, + 27987.61785085326, + 28226.154580552888, + 28499.888513106172, + 28809.10655614326, + 29154.205581320315, + 29535.692424319677, + 29954.18388484971, + 30410.406726644836, + 30905.197677465585, + 31439.503429098582, + 32014.380637356473, + 32630.995922078007, + 33290.62586712805, + 33994.65702039748, + 34744.585893803305, + 35542.01896328853, + 36388.672668822364, + 37286.37341439998, + 30618.66517839227, + 30094.85919762458, + 29621.747147557388, + 29197.51985353332, + 28820.478104921018, + 28489.03265511523, + 28201.704221536795, + 27957.123485632597, + 27754.031092875615, + 27591.27765276491, + 27467.823738825606, + 27382.739888608896, + 27335.20660369209, + 27324.51434967854, + 27350.06355619769, + 27411.364616905023, + 27508.037889482166, + 27639.813695636774, + 27806.532321102597, + 28008.144015639475, + 28244.708993033266, + 28516.397431095964, + 28823.489471665667, + 29166.37522060643, + 29545.554747808517, + 29961.638087188203, + 30415.345236687834, + 30907.506158275868, + 31439.060777946826, + 32011.058985721258, + 32624.660635645883, + 33281.13554579344, + 33981.863498262705, + 34728.33423917865, + 35522.14747869219, + 36365.01289098042, + 37258.750114246446, + 31098.895557382482, + 30558.380470585016, + 30069.055610622792, + 29629.05091070967, + 29236.606268085547, + 28890.07154401643, + 28587.90656379439, + 28328.68111673759, + 28111.07495619023, + 27933.877799522645, + 27795.989328131192, + 27696.419187438336, + 27634.286986892606, + 27608.82229996864, + 27619.364664167097, + 27665.36358101476, + 27746.37851606447, + 27862.078898895128, + 28012.244123111752, + 28196.763546345428, + 28415.636490253273, + 28668.97224051854, + 28956.990046850537, + 29280.019122984617, + 29638.49864668226, + 30032.977759731006, + 30464.115567944456, + 30932.681141162313, + 31439.553513250336, + 31985.721682100375, + 32572.284609630326, + 33200.451221784235, + 33871.54040853214, + 34586.981023870205, + 35348.31188582065, + 36157.18177643176, + 37015.34944177799, + 31585.322454961864, + 31028.091737768293, + 30522.552989176704, + 30066.77525027219, + 29658.93752616591, + 29297.328785995127, + 28980.34796292315, + 28706.503954139404, + 28474.415620859338, + 28282.811788324525, + 28130.53124580259, + 28016.522746587234, + 27939.845007998276, + 27899.666711381542, + 27895.26650210899, + 27926.032989578627, + 27991.464747214555, + 28091.17031246695, + 28224.868186812044, + 28392.386835752193, + 28593.664688815752, + 28828.75013955722, + 29097.801545557195, + 29401.087228422246, + 29738.985473785116, + 30111.984531304595, + 30520.68261466552, + 30965.787901578864, + 31448.118533781653, + 31968.602617036933, + 32528.278221133896, + 33128.29337988782, + 33769.90609113998, + 34454.484316757866, + 35183.50598263487, + 35958.55897869056, + 36781.3411588706, + 32077.957775704497, + 31504.005210073126, + 30982.25180044246, + 30510.705695768855, + 30087.485009034724, + 29710.817817248575, + 29379.042161444962, + 29090.60604668456, + 28844.067442054074, + 28638.094280666344, + 28471.464459660216, + 28343.06584020068, + 28251.896247478766, + 28197.06347071157, + 28177.785263142297, + 28193.389342040224, + 28243.31338870068, + 28327.105048445086, + 28444.421930620952, + 28595.03160860186, + 28778.811619787433, + 28995.749465603432, + 29245.942611501658, + 29529.59848695998, + 29847.034485482374, + 30198.67796459888, + 30585.06624586559, + 31006.846614864702, + 31464.77632120454, + 31959.722578519362, + 32492.662564469632, + 33064.68342074189, + 33676.98225304865, + 34330.86613112861, + 35027.75208874645, + 35769.16712369304, + 36556.748197785215, + 32576.81342418449, + 31986.133098398244, + 31448.164561643433, + 30960.855070747668, + 30522.261846564612, + 30130.552073974017, + 29784.002901881697, + 29481.001443219582, + 29220.044774945618, + 28999.73993804389, + 28818.803937524517, + 28676.063742423717, + 28570.45628580377, + 28501.02846475306, + 28466.937140385995, + 28467.449137843138, + 28501.941246291044, + 28569.900218922397, + 28670.922772955957, + 28804.715589636566, + 28971.095314235088, + 29169.988556048538, + 29401.431888399948, + 29665.571848638472, + 29962.664938139318, + 30293.077622303783, + 30657.286330559204, + 31055.877456359034, + 31489.54735718284, + 31959.10235453615, + 32465.458733950683, + 33009.64274498417, + 33592.79060122044, + 34216.14848026942, + 34881.072523767056, + 35589.02883737542, + 36341.59349078268, + 33081.90130497588, + 32474.48761364233, + 31920.30379000294, + 31417.236198756586, + 30963.281168628164, + 30556.544992368697, + 30195.24392675524, + 29877.70419259096, + 29602.361974705083, + 29367.76342195292, + 29172.56464721587, + 29015.53172740136, + 28895.54070344297, + 28811.577580300298, + 28762.73832695902, + 28748.22887643092, + 28767.365125753855, + 28819.572935991713, + 28904.38813223455, + 29021.456503598412, + 29170.533803225455, + 29351.485748283896, + 29564.288019968088, + 29809.026263498374, + 30085.89608812124, + 30395.20306710921, + 30737.362737760905, + 31112.900601401034, + 31522.452123380368, + 31966.762733075742, + 32446.687823890054, + 32963.19275325237, + 33517.35284261771, + 34110.35337746727, + 34743.48960730827, + 35418.166745674, + 36135.899970123864, + 33308.4678772927, + 32693.612811711064, + 32132.219700377784, + 31622.147835351305, + 31161.366472716076, + 30747.954832582647, + 30380.10209908768, + 30056.107420393877, + 29774.37990869001, + 29533.43864019098, + 29331.912655137683, + 29168.540957797188, + 29042.172516462568, + 28951.76626345299, + 28896.391095113715, + 28875.225871816085, + 28887.55941795748, + 28932.790521961386, + 29010.427936277374, + 29120.090377381082, + 29261.50652577421, + 29434.51502598456, + 29639.06448656598, + 29875.21348009843, + 30143.130543187945, + 30443.094176466606, + 30775.492844592576, + 31140.824976250096, + 31539.69896414957, + 31972.833165027314, + 32441.05589964587, + 32945.305452793786, + 33486.63007328567, + 34066.18797396228, + 34685.247331690356, + 35345.186287362805, + 36047.49294589858, + 33593.2333226528, + 32969.08096670413, + 32398.68200274436, + 31879.861903343608, + 31410.55610509803, + 30988.81000862988, + 30612.778978587477, + 30280.728343645256, + 29991.033396503655, + 29742.179393889277, + 29532.761556554724, + 29361.48506927873, + 29227.165080866067, + 29128.72670414763, + 29065.205015980326, + 29035.745057247208, + 29039.601832857355, + 29076.140311745934, + 29144.835426874233, + 29245.272075229557, + 29377.145117825294, + 29540.25937970097, + 29734.529649922097, + 29959.980681580368, + 30216.74719179343, + 30505.073861705132, + 30825.31533648531, + 31177.936225329908, + 31563.511101460972, + 31982.724502126577, + 32436.370928600914, + 32925.354846184244, + 33450.69068420286, + 34013.502836009226, + 34615.02565898175, + 35256.60347452506, + 35939.69056806975, + 34110.82138178928, + 33469.92536848235, + 32883.311717091026, + 32348.745008056707, + 31864.0997858468, + 31427.360558954802, + 31036.621799900302, + 30690.08794522895, + 30386.073395512467, + 30123.002515348682, + 29899.409633361473, + 29713.939042200815, + 29565.344998542732, + 29452.49172308935, + 29374.353400568867, + 29330.01417973555, + 29318.668173369748, + 29339.61945827788, + 29392.282075292464, + 29476.180029272084, + 29590.94728910136, + 29736.327787691072, + 29912.175421978, + 30118.454052925044, + 30355.23750552117, + 30622.70956878143, + 30921.163995746916, + 31251.00450348481, + 31612.744773088456, + 32007.008449677134, + 32434.529142396314, + 32896.15042441749, + 33392.82583293821, + 33925.61886918217, + 34495.70299839909, + 35104.36164986479, + 35752.98821688115, + 34634.677386959454, + 33977.0330298757, + 33374.205450266294, + 32823.8983364439, + 32323.925340747108, + 31872.21007954073, + 31466.78613321558, + 31105.79704618857, + 30787.496326902667, + 30510.24744782696, + 30272.52384545655, + 30072.908920312693, + 29910.096036942654, + 29782.888523919813, + 29690.199673843596, + 29631.052743339555, + 29604.580953059267, + 29610.027487680407, + 29646.745495906736, + 29714.19809046812, + 29811.958348120406, + 29939.709309645623, + 30097.243979851813, + 30284.46532757312, + 30501.38628566977, + 30748.129751028027, + 31024.928584560286, + 31332.125611204963, + 31670.17361992664, + 32039.635363715868, + 32441.183559589343, + 32875.600888589826, + 33343.77999578612, + 33846.72349027317, + 34385.54394517196, + 34961.46389762949, + 35575.81584881896, + 35164.81324273737, + 34490.416161782916, + 33871.37571949353, + 33305.33471205312, + 32790.045899671575, + 32323.372006584912, + 31903.28572105522, + 31527.86969537066, + 31195.316545845428, + 30903.92885281989, + 30652.119160660397, + 30438.409977759427, + 30261.433776535523, + 30119.93299343331, + 30012.760028923472, + 29938.8772475028, + 29897.356977694122, + 29887.381512046384, + 29908.243107134578, + 29959.34398355981, + 30040.196325949208, + 30150.422282956035, + 30289.753967259574, + 30458.033455565233, + 30655.212788604495, + 30881.35397113487, + 31136.628971940005, + 31421.319723829565, + 31735.818123639376, + 32080.626032231237, + 32456.35527449313, + 32863.72763933902, + 33303.57487970897, + 33776.83871256922, + 34284.57081891192, + 34827.932843755436, + 35408.19639614414, + 35701.24085369713, + 35010.086975102684, + 34374.83504199605, + 33793.06695843237, + 33262.47459249281, + 32780.85977628459, + 32346.13430594109, + 31956.3199416217, + 31609.548407511877, + 31304.06139182324, + 31038.21054679339, + 30810.45748868606, + 30619.37379779102, + 30463.64101842417, + 30342.050658927445, + 30253.504191668868, + 30197.013053042538, + 30171.698643468637, + 30176.792327393447, + 30211.635433289248, + 30275.6792536545, + 30368.48504501364, + 30489.72402791729, + 30639.177386942043, + 30816.73627069064, + 31022.401791791868, + 31256.285026900598, + 31518.60701669778, + 31809.69876589045, + 32130.001243211696, + 32480.065381420696, + 32860.55207730273, + 33272.232191669114, + 33715.98654935724, + 34192.80593923065, + 34703.791114178835, + 35250.152791117514, + 36243.9721244128, + 35536.057680733735, + 34884.595934997225, + 34287.10789912964, + 33741.224549083396, + 33244.686824837016, + 32795.345630395066, + 32391.161833788214, + 32030.20626707318, + 31710.659726332808, + 31430.812971675958, + 31189.066727237616, + 30983.93168117883, + 30814.028485686707, + 30678.087756974444, + 30574.950075281347, + 30503.565984872734, + 30462.995994040055, + 30452.4105751008, + 30471.090164398567, + 30518.425162303014, + 30593.915933209882, + 30697.172805540966, + 30827.916071744177, + 30985.975988293496, + 31171.292775688937, + 31383.916618456642, + 31624.007665148783, + 31891.836028343707, + 32187.78178464568, + 32512.334974685196, + 32866.09560311874, + 33249.77363862889, + 33664.18901392431, + 34110.27162573973, + 34589.061334836006, + 35101.707966, + 36793.01895945847, + 36068.34048957481, + 35400.67091572039, + 34787.47035769292, + 34226.30889931602, + 33714.866588439436, + 33250.933436939056, + 32832.40942071674, + 32457.304479700477, + 32123.738517844373, + 31829.94140312853, + 31574.252967559183, + 31355.12300716863, + 31171.111282015238, + 31020.88751618347, + 30903.231397783828, + 30817.032578952927, + 30761.290675853466, + 30735.11526867417, + 30737.725901629896, + 30768.452082961554, + 30826.7332849361, + 30912.11894384666, + 31024.26846001233, + 31162.951197778348, + 31328.046485516003, + 31519.543615622664, + 31737.54184452181, + 31982.250392662958, + 32253.98844452168, + 32553.185148599678, + 32880.37961742474, + 33236.22092755067, + 33621.46811955737, + 34036.99019805085, + 34483.76613166315, + 34962.88485305247, + 37348.39326340824, + 36606.94761252457, + 35923.072501388924, + 35294.167157670185, + 34717.74077306324, + 34191.412503289124, + 33712.911468094906, + 33280.07675125377, + 32890.85740056493, + 32543.312427853718, + 32235.610808971516, + 31966.031483795814, + 31732.96335623013, + 31534.905294204105, + 31370.466129673445, + 31238.364658619907, + 31137.429641051356, + 31066.59980100172, + 31024.923826531016, + 31011.560369725335, + 31025.77804669681, + 31066.955437583736, + 31134.581086550363, + 31228.253501787138, + 31347.68115551051, + 31492.682483963006, + 31663.18588741328, + 31859.229730156014, + 32080.962340512047, + 32328.642010828124, + 32602.636997477286, + 32903.42552085847, + 33231.59576539678, + 33587.84587954341, + 33972.98397577559, + 34387.92813059659, + 34833.70638453585, + 37910.10694083614, + 37151.89126048177, + 36451.813209226144, + 35807.21112260939, + 35215.53330019769, + 34674.33800558329, + 34181.29346638454, + 33734.17787424584, + 33330.87938483767, + 32969.39611785663, + 32647.836157025344, + 32364.41755009253, + 32117.46830883298, + 31905.426409047603, + 31726.839790563306, + 31580.36635723313, + 31464.773976936198, + 31378.940481577683, + 31321.853667088842, + 31292.611293427013, + 31290.421084575606, + 31314.600728544116, + 31364.577877368112, + 31439.890147109247, + 31540.185117855213, + 31665.220333719844, + 31814.863302842994, + 31989.0914973906, + 32187.99235355475, + 32411.76327155349, + 32660.71161563102, + 32935.25471405762, + 33235.91985912961, + 33563.344307169435, + 33918.275278525536, + 34301.56995757249, + 34714.19549271099, + 38478.17189631632, + 37703.18364434513, + 36986.90555645542, + 36326.61507605857, + 35719.699610592004, + 35163.65653151923, + 34656.09317432982, + 34194.72683853947, + 33777.38478768989, + 33402.00424934892, + 33066.632415110435, + 32769.42644059441, + 32508.653445446915, + 32282.690513340065, + 32090.024691972034, + 31929.252993067148, + 31799.08239237572, + 31698.329829674218, + 31625.922208765132, + 31580.896397477067, + 31562.399227664668, + 31569.68749520869, + 31602.127960015932, + 31659.197346019337, + 31740.482341177812, + 31845.679597476457, + 31974.595730926372, + 32127.147321564767, + 32303.360913454955, + 32503.37301468623, + 32727.430097374065, + 32975.888597659985, + 33249.21491571157, + 33547.98541572245, + 33872.88642591241, + 34224.714238527245, + 34604.37510983887, + 39052.600034422816, + 38260.83697501334, + 37528.36206030008, + 36852.39184156569, + 36230.25283411878, + 35659.381517294154, + 35137.32433445264, + 34661.737692981165, + 34230.387964292706, + 33841.15148382633, + 33492.0145510472, + 33181.0734294465, + 32906.53434654158, + 32666.713493875788, + 32460.03702701858, + 32285.041065565496, + 32140.371693138128, + 32024.78495738417, + 31937.146869977372, + 31876.433406617598, + 31841.730507030737, + 31832.23407496879, + 31847.24997820984, + 31886.194048558013, + 31948.59208184354, + 32034.079837922745, + 32142.403040677968, + 32273.41737801768, + 32427.088501876427, + 32603.492028214772, + 32802.81353701945, + 33025.34857230321, + 33271.5026421049, + 33541.7912184894, + 33836.83973754774, + 34157.383599396984, + 34504.26816818024, + 39633.40325972973, + 38824.86346338515, + 38076.19523798352, + 37384.55424267871, + 36747.20610065065, + 36161.52639910535, + 35625.000689274886, + 35135.224486417465, + 34689.90326981727, + 34286.85248278467, + 33923.99753265603, + 33599.37379079386, + 33311.12659258668, + 33057.51123744912, + 32836.89298882189, + 32647.747074171784, + 32488.658684991628, + 32358.322976800384, + 32255.54506914305, + 32179.240045590734, + 32128.43295374058, + 32102.25880521585, + 32099.962575665853, + 32120.899204766007, + 32164.533596217767, + 32230.44061774867, + 32318.305101112368, + 32427.92184208855, + 32559.195600483054, + 32712.14110012764, + 32886.88302888034, + 33083.656038625115, + 33302.80474527204, + 33544.78372875734, + 33810.157533043224, + 34099.600666118014, + 34413.89759999612, + 40220.593476811126, + 39395.27532035923, + 38630.417606729025, + 37923.11510294563, + 37270.57254006021, + 36670.10461315002, + 36119.135981318424, + 35615.20126769485, + 35155.94505943474, + 34739.121907719724, + 34362.59632775741, + 34024.342798781516, + 33722.44576405189, + 33455.09963085436, + 33220.60877050091, + 33017.38751832957, + 32843.960173704436, + 32698.9610000157, + 32581.13422467963, + 32489.334039138572, + 32422.524598860935, + 32379.78002334122, + 32360.284396099985, + 32363.3317646839, + 32388.326140665667, + 32434.7814996441, + 32502.321781244078, + 32590.68088911656, + 32699.70269093858, + 32829.34101841323, + 32979.65966726971, + 33150.83239726331, + 33343.14293217532, + 33556.98495981322, + 33792.86213201045, + 34051.38806462658, + 34333.286337547324, + 40814.18259024111, + 39972.08475683434, + 39191.04168375998, + 38468.08724591443, + 37800.36528222008, + 37185.12959562545, + 36619.743953105164, + 36101.682085659864, + 35628.52768831628, + 35197.974420127255, + 34807.82590417169, + 34455.99572755455, + 34140.50744140689, + 33859.494560885825, + 33611.2005651746, + 33393.97889748246, + 33206.292965044784, + 33046.71613912302, + 32913.931755004654, + 32806.73311200328, + 32724.02347345859, + 32664.816066736308, + 32628.234083228286, + 32613.51067835238, + 32619.98897155261, + 32647.122046298995, + 32694.47295008768, + 32761.714694440878, + 32848.630254906864, + 32955.11257106, + 33081.164546500724, + 33226.899048855565, + 33392.538909777126, + 33578.41692494402, + 33784.97585406103, + 34012.76842085897, + 34262.45731309476, + 41414.18250459376, + 40555.30398370918, + 39758.07998629975, + 39019.483495133114, + 38336.59745700289, + 37706.6147827289, + 37126.83834715696, + 36594.680989159024, + 36107.665511633015, + 35663.424681503086, + 35259.70122971933, + 34894.34785125798, + 34565.32720512137, + 34270.711914337866, + 34008.684565961914, + 33777.53771107407, + 33575.6738647809, + 33401.60550621516, + 33253.955078535546, + 33131.45498892696, + 33032.947608600276, + 32957.385272792526, + 32903.83028076675, + 32871.45489581214, + 32859.54134524388, + 32867.481820403285, + 32894.77847665776, + 32941.04343340074, + 33005.998774051775, + 33089.476546056445, + 33191.4187608865, + 33311.87739403965, + 33451.01438503976, + 33609.10163743677, + 33786.52101880663, + 33983.764360751455, + 34201.433458899366, + 42020.60512444312, + 41144.945211882434, + 40331.545031571644, + 39577.31667414961, + 38879.28219428126, + 38234.57361065758, + 37640.43290599572, + 37094.21202703883, + 36593.37288455611, + 36135.487353342956, + 35718.23727222072, + 35339.414444036884, + 34996.92063566503, + 34688.76757800476, + 34413.076965981796, + 34168.08045854792, + 33952.119678680996, + 33763.64621338497, + 33601.221613689835, + 33463.51739465171, + 33349.31503535275, + 33257.505978901194, + 33187.09163243141, + 33137.183367103746, + 33107.0025181047, + 33095.88038464685, + 33103.25822996879, + 33128.687281335275, + 33171.82873003705, + 33232.45373139099, + 33310.44340474005, + 33405.78883345324, + 33518.59106492562, + 33649.06111057842, + 33797.51994585883, + 33964.398510240244, + 34150.23770722199, + 42633.46235436333, + 41741.02065225288, + 40911.449336799036, + 40141.599606511976, + 39428.4326239278, + 38769.01951560878, + 38160.54137214333, + 37600.289248145826, + 37085.66416225674, + 36614.177097142696, + 36183.448999496315, + 35791.21078003632, + 35435.30331350755, + 35113.67743868086, + 34824.39395835323, + 34565.623639347665, + 34335.6472125133, + 34132.855372725324, + 33955.748778885005, + 33802.93805391968, + 33673.14378478276, + 33565.19652245377, + 33478.036781938274, + 33410.715042267926, + 33362.39174650044, + 33332.33730171965, + 33319.93207903542, + 33324.66641358373, + 33346.14060452658, + 33384.064915052106, + 33438.259572374525, + 33508.65476773406, + 33595.29065639706, + 33698.31735765599, + 33817.9949548293, + 33954.69349526161, + 34108.892990323526, + 42701.955372227814, + 41807.64901408851, + 40976.281229300155, + 40204.6964505754, + 39489.849074652906, + 38828.80346229742, + 38218.73393829983, + 37656.92479147705, + 37140.77027467206, + 36667.77460475396, + 36235.55196261791, + 35841.82649318514, + 35484.43230540294, + 35161.31347224471, + 34870.524030709916, + 34610.22798182409, + 34378.699290638855, + 34174.32188623192, + 33995.589661707025, + 33841.10647419404, + 33709.58614484888, + 33599.852458853544, + 33510.83916541615, + 33441.589977770804, + 33391.25857317776, + 33359.10859292334, + 33344.51364231992, + 33346.95729070595, + 33366.033071446, + 33401.44448193067, + 33453.00498357667, + 33520.63800182675, + 33604.37692614976, + 33704.36511004066, + 33820.8558710204, + 33954.212490636135, + 34104.90821446093, + 81849.50679850118, + 80122.41558087316, + 78495.76909118918, + 76963.36715572991, + 75519.11956480193, + 74157.04607273798, + 72871.27639789689, + 71656.05022266356, + 70505.7171934489, + 69414.73692068997, + 68377.6789788499, + 67389.22290641791, + 66444.15820590922, + 65537.3843438652, + 64663.91075085325, + 63818.85682146691, + 62997.45191432572, + 62195.03535207537, + 61407.05642138759, + 60629.074372960145, + 59856.758421516955, + 59085.88774580802, + 58312.35148860925, + 57532.148756722956, + 56741.38862097718, + 55936.29011622626, + 55113.182241350485, + 54268.50395925641, + 53398.804196876314, + 52500.74184516907, + 51571.08575911905, + 50606.71475773713, + 49604.617624060185, + 48561.89310515092, + 47475.74991209844, + 46343.50672001775, + 45162.59216805002 + ], + "input_power": [ + 12064.560000000001, + 12067.515061728396, + 12085.08424691358, + 12117.267555555556, + 12164.064987654321, + 12225.476543209877, + 12301.502222222221, + 12392.142024691359, + 12497.395950617285, + 12617.264, + 12751.746172839508, + 12900.842469135803, + 13064.552888888888, + 13242.877432098761, + 13435.816098765434, + 13643.368888888886, + 13865.53580246914, + 14102.316839506173, + 14353.712, + 14619.721283950623, + 14900.344691358026, + 15195.58222222222, + 15505.433876543215, + 15829.899654320989, + 16168.979555555552, + 16522.67358024692, + 16890.981728395058, + 17273.904, + 17671.44039506173, + 18083.59091358025, + 18510.35555555555, + 18951.734320987656, + 19407.72720987654, + 19878.334222222227, + 20363.555358024692, + 20863.390617283952, + 21377.839999999993, + 12065.52172, + 12068.501528395062, + 12086.095460246914, + 12118.303515555555, + 12165.125694320986, + 12226.56199654321, + 12302.61242222222, + 12393.276971358022, + 12498.555643950616, + 12618.448439999998, + 12752.955359506175, + 12902.076402469138, + 13065.811568888888, + 13244.160858765428, + 13437.124272098768, + 13644.701808888887, + 13866.893469135804, + 14103.699252839506, + 14355.119159999997, + 14621.15319061729, + 14901.80134469136, + 15197.06362222222, + 15506.94002320988, + 15831.430547654323, + 16170.53519555555, + 16524.253966913584, + 16892.586861728392, + 17275.53388, + 17673.0950217284, + 18085.27028691358, + 18512.05967555555, + 18953.463187654324, + 19409.480823209877, + 19880.112582222228, + 20365.358464691362, + 20865.21847061728, + 21379.69259999999, + 12074.177200000002, + 12077.37972839506, + 12095.196380246914, + 12127.627155555554, + 12174.672054320987, + 12236.33107654321, + 12312.604222222219, + 12403.491491358023, + 12508.992883950617, + 12629.108400000001, + 12763.838039506176, + 12913.181802469137, + 13077.139688888887, + 13255.71169876543, + 13448.897832098766, + 13656.698088888888, + 13879.112469135807, + 14116.140972839507, + 14367.783599999995, + 14634.040350617286, + 14914.911224691357, + 15210.396222222222, + 15520.49534320988, + 15845.208587654322, + 16184.53595555555, + 16538.47744691358, + 16907.03306172839, + 17290.202799999995, + 17687.9866617284, + 18100.38464691358, + 18527.396755555546, + 18969.02298765432, + 19425.263343209877, + 19896.11782222223, + 20381.58642469136, + 20881.66915061728, + 21396.365999999995, + 12082.832680000001, + 12086.25792839506, + 12104.297300246915, + 12136.950795555555, + 12184.218414320987, + 12246.10015654321, + 12322.59602222222, + 12413.706011358023, + 12519.430123950619, + 12639.768359999996, + 12774.720719506175, + 12924.287202469137, + 13088.467808888889, + 13267.262538765428, + 13460.671392098766, + 13668.694368888886, + 13891.331469135803, + 14128.582692839509, + 14380.448039999997, + 14646.92751061729, + 14928.02110469136, + 15223.728822222218, + 15534.05066320988, + 15858.986627654322, + 16198.536715555552, + 16552.700926913585, + 16921.47926172839, + 17304.871719999996, + 17702.878301728397, + 18115.499006913582, + 18542.733835555548, + 18984.582787654323, + 19441.04586320987, + 19912.12306222223, + 20397.814384691363, + 20898.119830617285, + 21413.039399999987, + 12091.488160000003, + 12095.136128395061, + 12113.398220246916, + 12146.274435555557, + 12193.764774320987, + 12255.869236543214, + 12332.587822222224, + 12423.920531358022, + 12529.867363950618, + 12650.428319999999, + 12785.603399506175, + 12935.392602469137, + 13099.79592888889, + 13278.81337876543, + 13472.444952098767, + 13680.690648888887, + 13903.550469135806, + 14141.024412839508, + 14393.11248, + 14659.81467061729, + 14941.13098469136, + 15237.06142222222, + 15547.60598320988, + 15872.76466765432, + 16212.537475555553, + 16566.924406913586, + 16935.925461728395, + 17319.540639999996, + 17717.769941728402, + 18130.61336691358, + 18558.07091555555, + 19000.142587654325, + 19456.82838320988, + 19928.12830222223, + 20414.04234469136, + 20914.57051061729, + 21429.71279999999, + 12100.143640000002, + 12104.014328395062, + 12122.499140246915, + 12155.598075555557, + 12203.311134320988, + 12265.638316543213, + 12342.579622222222, + 12434.135051358024, + 12540.304603950619, + 12661.08828, + 12796.486079506178, + 12946.498002469138, + 13111.124048888887, + 13290.364218765431, + 13484.218512098767, + 13692.68692888889, + 13915.769469135807, + 14153.466132839509, + 14405.776919999997, + 14672.701830617287, + 14954.24086469136, + 15250.39402222222, + 15561.16130320988, + 15886.542707654324, + 16226.538235555552, + 16581.147886913583, + 16950.371661728394, + 17334.209559999996, + 17732.6615817284, + 18145.72772691358, + 18573.40799555555, + 19015.70238765432, + 19472.610903209876, + 19944.13354222223, + 20430.270304691363, + 20931.02119061728, + 21446.386199999994, + 12108.799120000001, + 12112.892528395061, + 12131.600060246914, + 12164.921715555556, + 12212.857494320988, + 12275.407396543214, + 12352.571422222223, + 12444.349571358023, + 12550.741843950618, + 12671.748239999995, + 12807.368759506175, + 12957.603402469136, + 13122.452168888887, + 13301.915058765431, + 13495.992072098767, + 13704.683208888888, + 13927.988469135807, + 14165.907852839506, + 14418.441359999999, + 14685.588990617287, + 14967.350744691363, + 15263.726622222219, + 15574.71662320988, + 15900.320747654323, + 16240.538995555553, + 16595.371366913587, + 16964.817861728392, + 17348.878479999996, + 17747.553221728394, + 18160.842086913584, + 18588.74507555555, + 19031.262187654323, + 19488.393423209876, + 19960.138782222228, + 20446.49826469136, + 20947.471870617286, + 21463.05959999999, + 12112.647346408003, + 12116.83977611506, + 12135.646329278912, + 12169.067005899557, + 12217.101805976989, + 12279.75072951121, + 12357.013776502221, + 12448.890946950023, + 12555.382240854618, + 12676.487658216, + 12812.207199034176, + 12962.540863309137, + 13127.48865104089, + 13307.050562229428, + 13501.226596874765, + 13710.016754976888, + 13933.421036535807, + 14171.439441551507, + 14424.071970023997, + 14691.318621953285, + 14973.179397339358, + 15269.654296182222, + 15580.743318481878, + 15906.446464238321, + 16246.763733451551, + 16601.695126121584, + 16971.240642248395, + 17355.400281831993, + 17754.1740448724, + 18167.56193136958, + 18595.563941323548, + 19038.180074734322, + 19495.410331601877, + 19967.25471192623, + 20453.71321570736, + 20954.78584294528, + 21470.472593639992, + 12117.454600000003, + 12121.770728395062, + 12140.700980246913, + 12174.245355555557, + 12222.403854320986, + 12285.176476543213, + 12362.563222222221, + 12454.564091358023, + 12561.179083950617, + 12682.4082, + 12818.251439506177, + 12968.708802469138, + 13133.780288888887, + 13313.465898765431, + 13507.765632098766, + 13716.679488888887, + 13940.207469135808, + 14178.349572839506, + 14431.105799999998, + 14698.476150617289, + 14980.460624691355, + 15277.05922222222, + 15588.271943209878, + 15914.098787654326, + 16254.539755555552, + 16609.594846913584, + 16979.264061728394, + 17363.5474, + 17762.444861728396, + 18175.956446913577, + 18604.082155555552, + 19046.821987654326, + 19504.175943209873, + 19976.14402222223, + 20462.726224691363, + 20963.922550617288, + 21479.732999999993, + 12126.11008, + 12130.648928395061, + 12149.801900246914, + 12183.568995555555, + 12231.950214320987, + 12294.94555654321, + 12372.555022222223, + 12464.778611358024, + 12571.616323950619, + 12693.068159999997, + 12829.134119506174, + 12979.814202469137, + 13145.108408888887, + 13325.016738765427, + 13519.539192098768, + 13728.675768888887, + 13952.426469135806, + 14190.791292839507, + 14443.770239999998, + 14711.36331061729, + 14993.570504691359, + 15290.391822222218, + 15601.827263209881, + 15927.876827654321, + 16268.54051555555, + 16623.818326913584, + 16993.710261728396, + 17378.216319999996, + 17777.336501728398, + 18191.07080691358, + 18619.41923555555, + 19062.381787654325, + 19519.958463209874, + 19992.14926222223, + 20478.954184691356, + 20980.373230617286, + 21496.406399999993, + 12134.76556, + 12139.52712839506, + 12158.902820246913, + 12192.89263555556, + 12241.496574320987, + 12304.714636543209, + 12382.54682222222, + 12474.993131358022, + 12582.053563950618, + 12703.72812, + 12840.016799506175, + 12990.919602469137, + 13156.436528888888, + 13336.56757876543, + 13531.312752098765, + 13740.672048888888, + 13964.645469135807, + 14203.233012839506, + 14456.434679999995, + 14724.250470617286, + 15006.680384691357, + 15303.724422222218, + 15615.38258320988, + 15941.654867654319, + 16282.541275555552, + 16638.041806913585, + 17008.156461728395, + 17392.885239999996, + 17792.2281417284, + 18206.18516691358, + 18634.756315555547, + 19077.94158765432, + 19535.74098320988, + 20008.15450222223, + 20495.182144691364, + 20996.82391061728, + 21513.079799999992, + 12143.421040000001, + 12148.405328395063, + 12168.003740246915, + 12202.216275555558, + 12251.042934320989, + 12314.48371654321, + 12392.538622222222, + 12485.207651358025, + 12592.490803950617, + 12714.38808, + 12850.899479506177, + 13002.02500246914, + 13167.76464888889, + 13348.11841876543, + 13543.086312098767, + 13752.668328888889, + 13976.864469135808, + 14215.674732839509, + 14469.099119999997, + 14737.137630617288, + 15019.790264691359, + 15317.057022222221, + 15628.93790320988, + 15955.432907654324, + 16296.542035555554, + 16652.26528691358, + 17022.602661728397, + 17407.55416, + 17807.1197817284, + 18221.29952691358, + 18650.093395555552, + 19093.501387654327, + 19551.523503209875, + 20024.159742222233, + 20511.41010469136, + 21013.274590617286, + 21529.753199999992, + 12152.07652, + 12157.283528395063, + 12177.104660246914, + 12211.539915555555, + 12260.589294320991, + 12324.252796543211, + 12402.530422222224, + 12495.422171358026, + 12602.928043950618, + 12725.04804, + 12861.782159506176, + 13013.13040246914, + 13179.09276888889, + 13359.669258765429, + 13554.859872098768, + 13764.664608888888, + 13989.083469135805, + 14228.116452839506, + 14481.76356, + 14750.024790617288, + 15032.90014469136, + 15330.38962222222, + 15642.493223209882, + 15969.210947654323, + 16310.542795555551, + 16666.488766913586, + 17037.0488617284, + 17422.22308, + 17822.011421728403, + 18236.413886913582, + 18665.43047555555, + 19109.061187654323, + 19567.306023209876, + 20040.164982222228, + 20527.638064691364, + 21029.725270617284, + 21546.42659999999, + 12160.732000000002, + 12166.16172839506, + 12186.205580246915, + 12220.863555555556, + 12270.135654320986, + 12334.021876543211, + 12412.522222222222, + 12505.636691358024, + 12613.365283950618, + 12735.708, + 12872.664839506177, + 13024.235802469137, + 13190.42088888889, + 13371.22009876543, + 13566.633432098764, + 13776.66088888889, + 14001.302469135806, + 14240.558172839508, + 14494.427999999998, + 14762.911950617286, + 15046.010024691359, + 15343.72222222222, + 15656.04854320988, + 15982.988987654322, + 16324.543555555554, + 16680.712246913583, + 17051.495061728394, + 17436.891999999996, + 17836.9030617284, + 18251.52824691358, + 18680.767555555547, + 19124.62098765432, + 19583.08854320988, + 20056.17022222223, + 20543.86602469136, + 21046.175950617282, + 21563.099999999995, + 12169.387480000001, + 12175.039928395065, + 12195.306500246912, + 12230.187195555554, + 12279.682014320988, + 12343.790956543211, + 12422.514022222224, + 12515.851211358024, + 12623.802523950617, + 12746.367959999998, + 12883.547519506175, + 13035.341202469135, + 13201.749008888888, + 13382.770938765429, + 13578.406992098768, + 13788.657168888887, + 14013.521469135805, + 14252.999892839507, + 14507.092439999999, + 14775.799110617289, + 15059.119904691363, + 15357.05482222222, + 15669.60386320988, + 15996.767027654323, + 16338.544315555551, + 16694.935726913583, + 17065.94126172839, + 17451.560919999996, + 17851.7947017284, + 18266.64260691358, + 18696.104635555548, + 19140.180787654324, + 19598.871063209874, + 20072.17546222223, + 20560.093984691364, + 21062.626630617284, + 21579.77339999999, + 12178.04296, + 12183.91812839506, + 12204.407420246915, + 12239.510835555557, + 12289.228374320988, + 12353.560036543211, + 12432.50582222222, + 12526.065731358023, + 12634.239763950618, + 12757.027919999999, + 12894.430199506176, + 13046.44660246914, + 13213.077128888888, + 13394.32177876543, + 13590.180552098765, + 13800.653448888886, + 14025.740469135806, + 14265.441612839506, + 14519.756879999997, + 14788.686270617287, + 15072.229784691355, + 15370.387422222222, + 15683.15918320988, + 16010.545067654324, + 16352.54507555555, + 16709.159206913584, + 17080.38746172839, + 17466.229839999996, + 17866.6863417284, + 18281.75696691358, + 18711.441715555553, + 19155.740587654323, + 19614.65358320987, + 20088.18070222223, + 20576.32194469136, + 21079.077310617286, + 21596.44679999999, + 12186.69844, + 12192.79632839506, + 12213.508340246914, + 12248.834475555555, + 12298.774734320987, + 12363.329116543211, + 12442.497622222221, + 12536.280251358023, + 12644.677003950617, + 12767.687879999998, + 12905.312879506175, + 13057.552002469138, + 13224.405248888886, + 13405.872618765428, + 13601.954112098767, + 13812.649728888886, + 14037.959469135805, + 14277.883332839507, + 14532.421319999998, + 14801.573430617289, + 15085.339664691359, + 15383.720022222216, + 15696.714503209882, + 16024.323107654322, + 16366.545835555553, + 16723.382686913585, + 17094.833661728393, + 17480.898759999996, + 17881.577981728402, + 18296.87132691358, + 18726.77879555555, + 19171.300387654323, + 19630.43610320988, + 20104.185942222226, + 20592.54990469136, + 21095.52799061728, + 21613.12019999999, + 12195.353920000001, + 12201.67452839506, + 12222.609260246914, + 12258.158115555556, + 12308.321094320985, + 12373.098196543211, + 12452.48942222222, + 12546.494771358022, + 12655.114243950617, + 12778.34784, + 12916.195559506177, + 13068.657402469136, + 13235.733368888887, + 13417.42345876543, + 13613.727672098765, + 13824.646008888889, + 14050.178469135806, + 14290.325052839506, + 14545.085759999996, + 14814.460590617287, + 15098.449544691359, + 15397.05262222222, + 15710.26982320988, + 16038.101147654324, + 16380.54659555555, + 16737.60616691358, + 17109.27986172839, + 17495.567679999993, + 17896.469621728396, + 18311.98568691358, + 18742.115875555548, + 19186.86018765432, + 19646.218623209876, + 20120.19118222223, + 20608.777864691358, + 21111.97867061728, + 21629.793599999994, + 12204.009400000003, + 12210.552728395061, + 12231.710180246915, + 12267.481755555558, + 12317.867454320987, + 12382.867276543213, + 12462.48122222222, + 12556.709291358024, + 12665.55148395062, + 12789.0078, + 12927.07823950618, + 13079.762802469138, + 13247.061488888889, + 13428.97429876543, + 13625.501232098766, + 13836.642288888888, + 14062.397469135809, + 14302.766772839508, + 14557.750199999997, + 14827.34775061729, + 15111.559424691359, + 15410.385222222221, + 15723.82514320988, + 16051.879187654322, + 16394.54735555555, + 16751.829646913586, + 17123.726061728394, + 17510.2366, + 17911.361261728398, + 18327.10004691358, + 18757.452955555553, + 19202.419987654328, + 19662.001143209873, + 20136.19642222223, + 20625.00582469136, + 21128.429350617287, + 21646.466999999993, + 12212.664880000002, + 12219.43092839506, + 12240.811100246916, + 12276.805395555555, + 12327.413814320988, + 12392.636356543213, + 12472.473022222222, + 12566.923811358023, + 12675.988723950619, + 12799.667759999997, + 12937.960919506173, + 13090.868202469139, + 13258.389608888889, + 13440.525138765428, + 13637.274792098766, + 13848.638568888888, + 14074.616469135804, + 14315.208492839509, + 14570.414639999999, + 14840.23491061729, + 15124.66930469136, + 15423.71782222222, + 15737.38046320988, + 16065.657227654323, + 16408.548115555554, + 16766.053126913586, + 17138.172261728396, + 17524.905519999997, + 17926.2529017284, + 18342.21440691358, + 18772.79003555555, + 19217.979787654327, + 19677.783663209877, + 20152.20166222223, + 20641.233784691358, + 21144.880030617285, + 21663.14039999999, + 12221.320360000002, + 12228.309128395062, + 12249.912020246917, + 12286.129035555556, + 12336.960174320988, + 12402.405436543213, + 12482.46482222222, + 12577.138331358023, + 12686.425963950616, + 12810.32772, + 12948.843599506177, + 13101.97360246914, + 13269.717728888889, + 13452.07597876543, + 13649.048352098767, + 13860.634848888889, + 14086.835469135807, + 14327.650212839506, + 14583.079079999998, + 14853.122070617286, + 15137.779184691359, + 15437.05042222222, + 15750.93578320988, + 16079.435267654322, + 16422.54887555555, + 16780.276606913583, + 17152.618461728394, + 17539.574439999997, + 17941.144541728398, + 18357.32876691358, + 18788.127115555548, + 19233.539587654323, + 19693.566183209878, + 20168.20690222223, + 20657.46174469136, + 21161.330710617283, + 21679.813799999993, + 12229.975840000001, + 12237.18732839506, + 12259.012940246916, + 12295.452675555556, + 12346.506534320988, + 12412.174516543211, + 12492.456622222222, + 12587.352851358024, + 12696.86320395062, + 12820.987679999998, + 12959.726279506176, + 13113.079002469138, + 13281.045848888889, + 13463.626818765428, + 13660.821912098769, + 13872.631128888886, + 14099.054469135805, + 14340.091932839507, + 14595.74352, + 14866.009230617288, + 15150.889064691359, + 15450.383022222219, + 15764.49110320988, + 16093.213307654323, + 16436.54963555555, + 16794.500086913587, + 17167.064661728393, + 17554.243359999997, + 17956.036181728396, + 18372.443126913582, + 18803.46419555555, + 19249.099387654325, + 19709.348703209875, + 20184.21214222223, + 20673.68970469136, + 21177.781390617285, + 21696.487199999992, + 12238.631320000002, + 12246.06552839506, + 12268.113860246915, + 12304.776315555557, + 12356.052894320987, + 12421.943596543211, + 12502.44842222222, + 12597.567371358024, + 12707.300443950617, + 12831.64764, + 12970.608959506177, + 13124.184402469138, + 13292.373968888889, + 13475.177658765428, + 13672.595472098765, + 13884.62740888889, + 14111.273469135805, + 14352.533652839506, + 14608.407959999997, + 14878.896390617287, + 15163.998944691357, + 15463.715622222218, + 15778.04642320988, + 16106.991347654322, + 16450.55039555555, + 16808.72356691358, + 17181.510861728395, + 17568.91228, + 17970.927821728397, + 18387.557486913578, + 18818.80127555555, + 19264.65918765432, + 19725.13122320987, + 20200.217382222232, + 20689.917664691362, + 21194.232070617287, + 21713.160599999992, + 12247.286800000002, + 12254.94372839506, + 12277.214780246915, + 12314.099955555555, + 12365.599254320987, + 12431.71267654321, + 12512.440222222222, + 12607.781891358025, + 12717.737683950616, + 12842.307599999998, + 12981.491639506175, + 13135.289802469137, + 13303.70208888889, + 13486.728498765428, + 13684.369032098764, + 13896.623688888885, + 14123.492469135805, + 14364.975372839506, + 14621.072399999997, + 14891.783550617289, + 15177.108824691359, + 15477.048222222218, + 15791.601743209883, + 16120.769387654324, + 16464.55115555555, + 16822.947046913585, + 17195.957061728393, + 17583.581199999997, + 17985.8194617284, + 18402.67184691358, + 18834.138355555548, + 19280.218987654323, + 19740.913743209872, + 20216.22262222223, + 20706.14562469136, + 21210.682750617285, + 21729.833999999988, + 12255.942280000001, + 12263.82192839506, + 12286.315700246912, + 12323.423595555558, + 12375.145614320989, + 12441.48175654321, + 12522.432022222221, + 12617.996411358023, + 12728.174923950617, + 12852.96756, + 12992.374319506176, + 13146.395202469137, + 13315.030208888888, + 13498.27933876543, + 13696.142592098766, + 13908.619968888885, + 14135.711469135806, + 14377.417092839507, + 14633.736839999996, + 14904.670710617287, + 15190.218704691355, + 15490.38082222222, + 15805.157063209877, + 16134.547427654323, + 16478.55191555555, + 16837.170526913582, + 17210.403261728392, + 17598.250119999997, + 18000.7111017284, + 18417.78620691358, + 18849.47543555555, + 19295.778787654323, + 19756.696263209877, + 20232.227862222233, + 20722.373584691362, + 21227.133430617283, + 21746.50739999999, + 12256.904000769378, + 12264.808395850901, + 12287.32691438922, + 12324.459556384323, + 12376.20632183622, + 12442.567210744908, + 12523.542223110382, + 12619.13135893265, + 12729.334618211706, + 12854.152000947548, + 12993.58350714019, + 13147.629136789617, + 13316.288889895832, + 13499.562766458837, + 13697.45076647864, + 13909.952889955224, + 14137.069136888605, + 14378.79950727877, + 14635.144001125727, + 14906.10261842948, + 15191.675359190016, + 15491.862223407337, + 15806.663211081466, + 16136.07832221237, + 16480.107556800063, + 16838.75091484456, + 17212.00839634584, + 17599.8800013039, + 18002.365729718767, + 18419.46558159041, + 18851.179556918847, + 19297.507655704085, + 19758.4498779461, + 20234.00622364492, + 20724.176692800513, + 21228.9612854129, + 21748.36000148207, + 12689.678, + 12708.71839506173, + 12742.372913580248, + 12790.641555555556, + 12853.524320987655, + 12931.021209876544, + 13023.13222222222, + 13129.85735802469, + 13251.196617283951, + 13387.15, + 13537.717506172843, + 13702.899135802474, + 13882.69488888889, + 14077.104765432097, + 14286.1287654321, + 14509.76688888889, + 14748.019135802473, + 15000.88550617284, + 15268.365999999996, + 15550.460617283952, + 15847.169358024692, + 16158.492222222218, + 16484.429209876544, + 16824.980320987655, + 17180.145555555548, + 17549.92491358025, + 17934.318395061728, + 18333.325999999997, + 18746.947728395065, + 19175.183580246914, + 19618.03355555555, + 20075.49765432099, + 20547.575876543215, + 21034.268222222232, + 21535.574691358026, + 22051.495283950615, + 22582.02999999999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 0.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 2.7777777777777777, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/Stiebel220e.json b/examples/Stiebel220e.json new file mode 100644 index 0000000..4748d6a --- /dev/null +++ b/examples/Stiebel220e.json @@ -0,0 +1,157 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "backup_heat_source_id": "resistiveElement", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 0.5454545454545454, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 273.15, + 283.15, + 292.59444444444443, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 1082.4131829009364, + 859.2780486000414, + 1811.63246823398, + 1053.1031907248607, + 2514.617379191681, + 1253.457673622402, + 4795.302552364209, + 1985.9466407591244 + ], + "input_power": [ + 364.6833523529412, + 584.7011970588234, + 368.67913, + 661.1821699999998, + 372.45291999999995, + 733.4141999999999, + 384.2182652941177, + 958.608175882353 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 310.92777777777775, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 3.639388888888889, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 0.5, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 1500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElement" + } + ], + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.5, + "volume": 0.21198296000000003 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/TamScalable_SP.json b/examples/TamScalable_SP.json new file mode 100644 index 0000000..48d1e1e --- /dev/null +++ b/examples/TamScalable_SP.json @@ -0,0 +1,4241 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9583333333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.75, + 0.8333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 30000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 30000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 28614.30306806241, + 28627.32956646414, + 28639.62969678998, + 28651.164317672923, + 28661.86554477708, + 28671.636750797727, + 28680.35256546123, + 28687.858875525166, + 28693.97282477815, + 28698.482814040013, + 28701.148501161664, + 28701.700801025156, + 28699.84188554373, + 28695.245183661693, + 28687.555381354523, + 28676.38842162884, + 28661.33150452233, + 28641.943087103926, + 28617.752883473604, + 28588.261864762517, + 28552.942259132942, + 28511.237551778282, + 28462.56248492308, + 28406.30305782303, + 28341.81652676495, + 28268.431405066767, + 28185.447463077573, + 28092.1357281776, + 27987.738484778205, + 27871.469274321833, + 27742.512895282158, + 27600.025403163912, + 27443.134110502975, + 27270.937586866396, + 27082.50565885232, + 26876.87941009005, + 26653.07118124001, + 28435.223463901377, + 28476.316639663084, + 28515.55141707658, + 28552.898500121348, + 28588.299849808052, + 28621.668684178494, + 28652.88947830556, + 28681.817964293325, + 28708.28113127696, + 28732.077225422785, + 28752.97574992828, + 28770.717465021986, + 28785.014387963663, + 28795.54979304415, + 28801.978211585458, + 28803.925431940723, + 28800.988499494164, + 28792.735716661216, + 28778.70664288838, + 28758.412094653362, + 28731.334145464934, + 28696.92612586302, + 28654.612623418703, + 28603.789482734184, + 28543.823805442833, + 28474.053950209065, + 28393.78953272852, + 28302.31142572794, + 28198.871758965193, + 28082.693919229292, + 27952.972550340386, + 27808.873553149733, + 27649.53408553979, + 27474.062562424064, + 27281.538655747256, + 27071.013294485194, + 26841.5086646448, + 28651.37468579172, + 28664.20764704207, + 28676.324423007147, + 28687.685663709963, + 28698.22327620464, + 28707.84042457647, + 28716.41152994184, + 28723.782270448304, + 28729.769581274533, + 28734.161654630334, + 28736.717939756643, + 28737.169142925537, + 28735.217227440244, + 28730.535413635112, + 28722.768178875605, + 28711.53125755836, + 28696.4116411111, + 28676.967577992727, + 28652.72857369328, + 28623.195390733872, + 28587.84004866682, + 28546.105824075545, + 28497.407250574593, + 28441.130118809666, + 28376.63147645759, + 28303.23962822632, + 28220.254135854968, + 28126.94581811374, + 28022.556750804026, + 27906.300266758302, + 27777.36095584023, + 27634.894664944546, + 27478.028497997184, + 27305.860815955144, + 27117.461236806634, + 26911.87063557096, + 26688.101144298536, + 28470.406785422274, + 28511.304399787197, + 28550.351843130305, + 28587.51955120525, + 28622.749216796852, + 28655.953789721032, + 28687.017476824854, + 28715.79574198653, + 28742.1153061154, + 28765.774147151926, + 28786.541500067724, + 28804.157856865513, + 28818.334966579187, + 28828.755835273754, + 28835.074726045346, + 28836.917159021275, + 28833.87991135991, + 28825.53101725082, + 28811.409767914698, + 28791.02671160333, + 28763.86365359969, + 28729.373656217867, + 28686.981038803067, + 28636.08137773165, + 28576.04150641112, + 28506.199515280066, + 28425.86475180828, + 28334.317820496635, + 28230.810582877188, + 28114.566157513043, + 27984.778919998545, + 27840.614502959128, + 27681.20979605134, + 27505.67294596286, + 27313.083356412553, + 27102.491688150392, + 26872.919858957466, + 28986.001007148756, + 28997.08778754702, + 29007.550386053837, + 29017.347575202326, + 29026.409384556744, + 29034.637100712436, + 29041.903267295944, + 29048.05168496491, + 29052.897411408114, + 29056.226761345497, + 29057.79730652807, + 29057.33787573803, + 29054.548554788715, + 29049.100686524587, + 29040.636870821207, + 29028.77096458533, + 29013.08808175478, + 28993.14459329858, + 28968.468127216856, + 28938.557568540855, + 28902.883059332977, + 28860.885998686772, + 28811.97904272687, + 28755.546104609108, + 28690.942354520408, + 28617.49421967885, + 28534.499384333623, + 28441.22678976507, + 28336.91663428466, + 28220.78037323502, + 28092.00071898988, + 27949.7316409541, + 27793.098365563717, + 27621.197376285858, + 27433.096413618827, + 27227.834475092022, + 27004.421815266, + 28788.08540201967, + 28827.21997169883, + 28864.578745959778, + 28900.129746523537, + 28933.812252142263, + 28965.536798599263, + 28995.18517870897, + 29022.610442316938, + 29047.63689629986, + 29070.060104565582, + 29089.64688805308, + 29106.135324732437, + 29119.234749604882, + 29128.62575470281, + 29133.96018908972, + 29134.861158860276, + 29130.923027140198, + 29121.711414086432, + 29106.763196887016, + 29085.586509761142, + 29057.66074395909, + 29022.436547762336, + 28979.335826483446, + 28927.75174246614, + 28867.04871508529, + 28796.56242074686, + 28715.59979288796, + 28623.43902197687, + 28519.329555512973, + 28402.492098026778, + 28272.11861107996, + 28127.372313265303, + 27967.387680206743, + 27791.270444559323, + 27598.097596009262, + 27386.91738127388, + 27156.74930410164, + 29322.391205744898, + 29331.724013810515, + 29340.5252882793, + 29348.751924194476, + 29356.332073630394, + 29363.165145692532, + 29369.121806517527, + 29374.043979273127, + 29377.74484415824, + 29380.008838402875, + 29380.5916562682, + 29379.220249046488, + 29375.592825061194, + 29369.378849666886, + 29360.219045249247, + 29347.725391225118, + 29331.481124042453, + 29311.04073718037, + 29285.929981149096, + 29255.645863490015, + 29219.656648775617, + 29177.40185860955, + 29128.292271626582, + 29071.70992349263, + 29007.008106904756, + 28933.51137159109, + 28850.515524310984, + 28757.287628854872, + 28653.06600604434, + 28537.060233732107, + 28408.451146802014, + 28266.39083716906, + 28110.002653779346, + 27938.381202610126, + 27750.59234666982, + 27545.673205997922, + 27322.632157665106, + 29107.61383965441, + 29144.980034764838, + 29180.645403459395, + 29214.57555342643, + 29246.707349385484, + 29276.94891308721, + 29305.179623313394, + 29331.25011587699, + 29354.98228362203, + 29376.169276423705, + 29394.575501188367, + 29409.936621853478, + 29421.9595593876, + 29430.322491790506, + 29434.674854093057, + 29434.63733835727, + 29429.801893676235, + 29419.73172617426, + 29403.961299006747, + 29381.996332360217, + 29353.31380345238, + 29317.361946532008, + 29273.560252879066, + 29221.299470804628, + 29159.94160565093, + 29088.819919791276, + 29007.23893263016, + 28914.474420603223, + 28809.773417177195, + 28692.354212849983, + 28561.406355150575, + 28416.090648639147, + 28255.539154906975, + 28078.855192576506, + 27885.113337301293, + 27673.359421766, + 27442.610535686475, + 29660.54053436698, + 29668.111624378354, + 29675.24447398829, + 29681.894100750105, + 29687.98677924827, + 29693.42004109839, + 29698.06267494718, + 29701.754726472518, + 29704.30749838339, + 29705.503550419955, + 29705.096699353464, + 29702.812018986304, + 29698.34584015204, + 29691.36575071534, + 29681.510595571996, + 29668.390476648972, + 29651.586752904317, + 29630.652040327273, + 29605.11021193817, + 29574.45639778846, + 29538.156984960806, + 29495.64961756893, + 29446.34319675771, + 29389.617880703176, + 29324.825084612487, + 29251.287480723913, + 29168.298998306876, + 29075.124823661954, + 28971.0014001208, + 28855.136428046266, + 28726.708864832315, + 28584.868924904014, + 28428.738079717634, + 28257.409057760484, + 28069.945844551094, + 27865.383682639113, + 27642.729071605263, + 29428.9893601822, + 29464.581930311193, + 29498.54923642533, + 29530.85447218036, + 29561.43208826314, + 29590.18779239173, + 29616.99854931524, + 29641.712580814008, + 29664.149365699428, + 29684.09963981404, + 29701.32539603156, + 29715.5598842568, + 29726.50761142575, + 29733.844341505475, + 29737.217095494205, + 29736.244151421328, + 29730.515044347318, + 29719.59056636383, + 29703.002766593618, + 29680.254951190564, + 29650.821683339742, + 29614.148783257322, + 29569.653328190583, + 29516.723652417983, + 29454.71934724909, + 29382.97126102462, + 29300.781499116416, + 29207.423423927456, + 29102.141654891842, + 28984.152068474832, + 28852.641798172812, + 28706.76923451329, + 28545.664025054924, + 28368.42707438749, + 28174.130544131916, + 27961.81785294028, + 27730.50367649572, + 30000.444160582425, + 30006.245832576915, + 30011.703202266133, + 30016.769409713525, + 30021.368852013653, + 30025.39718329223, + 30028.72131470609, + 30031.179414443213, + 30032.580907722688, + 30032.706476794796, + 30031.308060940883, + 30028.108856473445, + 30022.803316736175, + 30015.057152103826, + 30004.507329982316, + 29990.762074808707, + 29973.400868051154, + 29951.974448209017, + 29926.004810812723, + 29894.985208423845, + 29858.380150635137, + 29815.625404070463, + 29766.127992384787, + 29709.266196264227, + 29644.38955342608, + 29570.818858618713, + 29487.846163621667, + 29394.734777245612, + 29290.719265332318, + 29175.005450754765, + 29046.770413416984, + 28905.16249025418, + 28749.30127523271, + 28578.277619350018, + 28391.15363063474, + 28186.962674146595, + 27964.70937197647, + 29752.209140239363, + 29786.022914444406, + 29818.287580434346, + 29848.963917832265, + 29877.98396329243, + 29905.25101050022, + 29930.63961017212, + 29953.995570055817, + 29975.135954930094, + 29993.849086604863, + 30009.894543921164, + 30023.003162751193, + 30032.877035998266, + 30039.18951359687, + 30041.585202512568, + 30039.679966742093, + 30033.060927313294, + 30021.286462285185, + 30003.88620674791, + 29980.36105282269, + 29950.183149661934, + 29912.795903449212, + 29867.613977399167, + 29814.02329175758, + 29751.381023801427, + 29679.015607838748, + 29596.226735208777, + 29502.285354281845, + 29396.433670459402, + 29277.88514617408, + 29145.824500889637, + 28999.407711100925, + 28837.76201033397, + 28659.985889145904, + 28465.14909512503, + 28252.292632890767, + 28020.428764093653, + 30342.097166739015, + 30346.121766512933, + 30349.896646978552, + 30353.373070709393, + 30356.47355731016, + 30359.091883416648, + 30361.093082695803, + 30362.31344584572, + 30362.560520595605, + 30361.61311170583, + 30359.221280967853, + 30355.106347204295, + 30348.96088626893, + 30340.448731046647, + 30329.20497145345, + 30314.83595443653, + 30296.91928397414, + 30275.003821075734, + 30248.609683781866, + 30217.22824716423, + 30180.322143325666, + 30137.32526140013, + 30087.642747552727, + 30030.651004979685, + 29965.697693908383, + 29892.10173159732, + 29809.15329233614, + 29716.113807445596, + 29612.21596527763, + 29496.66371121524, + 29368.632247672642, + 29227.268034095123, + 29071.68878695913, + 28900.983479772254, + 28714.2123430732, + 28510.40686443184, + 28288.56978844911, + 30077.270271242578, + 30109.300158051406, + 30139.85768584357, + 30168.901220209536, + 30196.360383770916, + 30222.136056180476, + 30246.10037412208, + 30268.09673131072, + 30287.939778492568, + 30305.415423444887, + 30320.28083097611, + 30332.26442292579, + 30341.065878164572, + 30346.356132594316, + 30347.777379147952, + 30344.943067789605, + 30337.437905514445, + 30324.81785634886, + 30306.610141350335, + 30282.313238607523, + 30251.39688324013, + 30213.302067399087, + 30167.441040266403, + 30113.197308055263, + 30049.925634009986, + 29976.95203840595, + 29893.57379854975, + 29799.059448779106, + 29692.648780462845, + 29573.552842000903, + 29440.95393882444, + 29294.005633395656, + 29131.832745207954, + 28953.53135078582, + 28758.168783684898, + 28544.78363449198, + 28312.385750825, + 30494.556573604546, + 30497.788641014027, + 30500.81324781556, + 30503.580821850723, + 30506.013047992175, + 30508.00286814373, + 30509.41448124031, + 30510.083343248014, + 30509.816167164037, + 30508.39092301675, + 30505.556837865603, + 30501.034395801216, + 30494.51533794534, + 30485.66266245089, + 30474.11062450183, + 30459.46473631336, + 30441.30176713173, + 30419.16974323439, + 30392.587947929882, + 30361.04692155789, + 30324.008461489255, + 30280.905622125927, + 30231.142714901012, + 30174.09530827872, + 30109.110227754434, + 30035.50555585464, + 29952.570632136965, + 29859.566053190185, + 29755.7236726342, + 29640.24660112005, + 29512.3092063299, + 29371.057112977058, + 29215.607202805964, + 29045.04761459218, + 28858.437744142422, + 28654.808244294552, + 28433.161024917517, + 30222.38299122186, + 30253.618147442423, + 30283.415257900804, + 30311.731614908556, + 30338.4957678084, + 30363.607522974165, + 30386.937943810786, + 30408.329350754386, + 30427.595321272227, + 30444.52068986263, + 30458.861548055123, + 30470.345244410335, + 30478.670384520054, + 30483.506831007202, + 30484.495703525787, + 30481.249378761, + 30473.35149042915, + 30460.356929277692, + 30441.791843085226, + 30417.153636661413, + 30385.91097184714, + 30347.503767514383, + 30301.343199566258, + 30246.81170093703, + 30183.262961592078, + 30110.02192852792, + 30026.384805772224, + 29931.619054383802, + 29824.963392452508, + 29705.627795099463, + 29572.79349447686, + 29425.61297976801, + 29263.209997187372, + 29084.679549980567, + 28889.087898424295, + 28675.47255982648, + 28442.84230852607, + 30685.494549965115, + 30687.73446907376, + 30689.819896771824, + 30691.700218142974, + 30693.296075301994, + 30694.499367394805, + 30695.173250598447, + 30695.152138121135, + 30694.24170020218, + 30692.218864112063, + 30688.83181415235, + 30683.79999165577, + 30676.814094986203, + 30667.536079538644, + 30655.599157739223, + 30640.607799045207, + 30622.13772994499, + 30599.735933958123, + 30572.92065163526, + 30541.181380558213, + 30503.978875339915, + 30460.745147624468, + 30410.883466087038, + 30353.768356434008, + 30288.74560140282, + 30215.13224076211, + 30132.216571311626, + 30039.258146882225, + 29935.48777833595, + 29820.107533565933, + 29692.29073749648, + 29551.181972082974, + 29395.897076312005, + 29225.523146201234, + 29039.118534799505, + 28835.712852186774, + 28614.306965474105, + 30404.169759389126, + 30434.41074679967, + 30463.25671779071, + 30490.66362392009, + 30516.558673776777, + 30540.84033298091, + 30563.378324183686, + 30584.013627067496, + 30602.558478345843, + 30618.79637176339, + 30632.48205809589, + 30643.341545150266, + 30651.07209776456, + 30655.342237807945, + 30655.79174418075, + 30652.031652814443, + 30643.64425667156, + 30630.183105745862, + 30611.17300706217, + 30586.1100246765, + 30554.46147967597, + 30515.665950178834, + 30469.133271334467, + 30414.244535323403, + 30350.352091357337, + 30276.779545679008, + 30192.821761562376, + 30097.744859312512, + 29990.78621626559, + 29871.154466788976, + 29738.029502281122, + 29590.562471171615, + 29427.8757789212, + 29249.063088021765, + 29053.189317996294, + 28839.290645398956, + 28606.374503814983, + 31030.631222169504, + 31031.078897927106, + 31031.467955072654, + 31031.745901199924, + 31031.83150093377, + 31031.614775930273, + 31030.957004876564, + 31029.690723490963, + 31027.619724522898, + 31024.519057752925, + 31020.13502999275, + 31014.185205085203, + 31006.35840390428, + 30996.31470435508, + 30983.68544137384, + 30968.07320692793, + 30949.051850015858, + 30926.166476667277, + 30898.93344994296, + 30866.840389934823, + 30829.346173765916, + 30785.88093559042, + 30735.846066593644, + 30678.614214992056, + 30613.529286033234, + 30539.90644199588, + 30457.032102189885, + 30364.163942956213, + 30260.530897666988, + 30145.33315672548, + 30017.742167566077, + 29876.900634654303, + 29721.922519486834, + 29551.89304059145, + 29365.868673527086, + 29162.877150883818, + 28941.91746228284, + 30732.904525656686, + 30761.351681137083, + 30788.48175619388, + 30814.24828835226, + 30838.576072168562, + 30861.361159230273, + 30882.470858155957, + 30901.74373459538, + 30918.989611229405, + 30933.989567770033, + 30946.495940960398, + 30956.23232457477, + 30962.893569418564, + 30966.145783328346, + 30965.626331171745, + 30960.943834847618, + 30951.678173285884, + 30937.38048244765, + 30917.573155325103, + 30891.749841941597, + 30859.375449351628, + 30819.88614164083, + 30772.68933992592, + 30717.16372235479, + 30652.659224106494, + 30578.497037391146, + 30493.969611450106, + 30398.340652555733, + 30290.845124011605, + 30170.689246152426, + 30037.050496344036, + 29889.077608983367, + 29725.89057549855, + 29546.580644348804, + 29350.21032102448, + 29135.81336804713, + 28902.394804969364, + 31377.5020100415, + 31376.149925521262, + 31374.835740088278, + 31373.505083846416, + 31372.074843930684, + 31370.433164507198, + 31368.43944677324, + 31365.924348957236, + 31362.68978631873, + 31358.50893114838, + 31353.126212767987, + 31346.2573175305, + 31337.589188820024, + 31326.78002705178, + 31313.459289672082, + 31297.227691158427, + 31277.65720301943, + 31254.291053794863, + 31226.643729055595, + 31194.200971403632, + 31156.41978047217, + 31112.728412925488, + 31062.526382458993, + 31005.184459799253, + 30940.044672703963, + 30866.420305961958, + 30783.595901393208, + 30690.82725784879, + 30587.34143121094, + 30472.336734393048, + 30344.982737339593, + 30204.420267026217, + 30049.761407459693, + 29880.089499677906, + 29694.45914174993, + 29491.896188775943, + 29271.397752887202, + 31063.471405803448, + 31090.119876292116, + 31115.52979575177, + 31139.652287674962, + 31162.40973258539, + 31183.695768037913, + 31203.375288618485, + 31221.284445944173, + 31237.23064866324, + 31250.992562455034, + 31262.320110030058, + 31270.93447112997, + 31276.52808252751, + 31278.764638026598, + 31277.279088462274, + 31271.677641700724, + 31261.537762639215, + 31246.40817320622, + 31225.80885236133, + 31199.231036095214, + 31166.13721742977, + 31125.961146417932, + 31078.107830143843, + 31021.953532722746, + 30956.845775301044, + 30882.1033360562, + 30797.01625019692, + 30700.845809962993, + 30592.8245646253, + 30472.15632048594, + 30338.016140878095, + 30189.550346166052, + 30025.876513745323, + 29846.083478042492, + 29649.231330515275, + 29434.351419652532, + 29200.44635097428, + 31726.10165505085, + 31722.94233908496, + 31719.918084806373, + 31716.97264482912, + 31714.02102879829, + 31710.949503390122, + 31707.615592312002, + 31703.848076302456, + 31699.446993131136, + 31694.183637598806, + 31687.80056153742, + 31680.01157380999, + 31670.501740310723, + 31658.927383964972, + 31644.91608472914, + 31628.066679590876, + 31607.94926256884, + 31584.10518471296, + 31556.04705410419, + 31523.258735854677, + 31485.195352107672, + 31441.2832820376, + 31390.92016184997, + 31333.474884781448, + 31268.287601099863, + 31194.66971810413, + 31111.903900124336, + 31019.244068521653, + 30915.915401688486, + 30801.11433504825, + 30674.008561055587, + 30533.737029196232, + 30379.40994598706, + 30210.108774976085, + 30024.886236742466, + 29822.766308896484, + 29602.744226079543, + 31395.8671503681, + 31420.712162273627, + 31444.397745943443, + 31466.872610837476, + 31488.056723446796, + 31507.841307293605, + 31526.088842931204, + 31542.633067944054, + 31557.278976947768, + 31569.802821589044, + 31579.952110545775, + 31587.44560952696, + 31591.973341272686, + 31593.196585554266, + 31590.747879174083, + 31584.231015965684, + 31573.221046793726, + 31557.26427955402, + 31535.878279173496, + 31508.551867610237, + 31474.74512385347, + 31433.8893839235, + 31385.387240871816, + 31328.61254478104, + 31262.910402764934, + 31187.59717896833, + 31101.96049456728, + 31005.25922776894, + 30896.72351381157, + 30775.554744964596, + 30640.92557052858, + 30491.979896835208, + 30327.832887247292, + 30147.570962158792, + 29950.25179899481, + 29734.904332211583, + 29500.52875329644, + 32076.42481344784, + 32071.450840627396, + 32066.709736995148, + 32062.14337767518, + 32057.66489482272, + 32053.158677624113, + 32048.480372296865, + 32043.456882089606, + 32037.886367282063, + 32031.53824518517, + 32024.153190140925, + 32015.44313352248, + 32005.091263734164, + 31992.752026211405, + 31978.05112342075, + 31960.585514859915, + 31939.923417057722, + 31915.604303574168, + 31887.13890500032, + 31854.009208958436, + 31815.668460101893, + 31771.541160115183, + 31721.02306771397, + 31663.481198644997, + 31598.25382568622, + 31524.650478646658, + 31441.951944366505, + 31349.41026671705, + 31246.248746600755, + 31131.66194195123, + 31004.815667733154, + 30864.846995942404, + 30710.86425560596, + 30541.947032781954, + 30357.146170559616, + 30155.48376905935, + 29935.953185432718, + 31730.088424669793, + 31753.125283870995, + 31775.082431028524, + 31795.906161569666, + 31815.514027952842, + 31833.79483966762, + 31850.608663234634, + 31865.786822205762, + 31879.131897163956, + 31890.417725723266, + 31899.38940252894, + 31905.763279257324, + 31909.226964615937, + 31909.439324343417, + 31906.030481209476, + 31898.601815015052, + 31886.725962592154, + 31869.946817803993, + 31847.779531544827, + 31819.710511740068, + 31785.197423346348, + 31743.669188351356, + 31694.525985773904, + 31637.139251663975, + 31570.851679102692, + 31494.977218202275, + 31408.80107610615, + 31311.579716988766, + 31202.54086205579, + 31080.883489544012, + 30945.777834721383, + 30796.36538988689, + 30631.758904370745, + 30451.04238453425, + 30253.27109376986, + 30037.47155250123, + 29802.64153818301, + 32428.4660562632, + 32421.670046938292, + 32415.205359203224, + 32409.0119906922, + 32403.00119607055, + 32397.055487034733, + 32391.02863231234, + 32384.745657662133, + 32378.00284587394, + 32370.567736768808, + 32362.17912719883, + 32352.547071047295, + 32341.352879228612, + 32328.24911968832, + 32312.85961740309, + 32294.779454380736, + 32273.574969660178, + 32248.783759311544, + 32219.914676436005, + 32186.44783116591, + 32147.834590664763, + 32103.497579127164, + 32052.830677778857, + 31995.199024876743, + 31929.939015708846, + 31856.358302594323, + 31773.73579488341, + 31681.321658957597, + 31578.337318229413, + 31463.975453142557, + 31337.40000117185, + 31197.746156823243, + 31044.12037163385, + 30875.600354171907, + 30691.235070036757, + 30490.044741858906, + 30271.020849300014, + 32066.131808808164, + 32087.355900654096, + 32107.580590047106, + 32126.749758381833, + 32144.77854408405, + 32161.553342610692, + 32176.931806449767, + 32190.742845120487, + 32202.786625173187, + 32212.834570189294, + 32220.629360781386, + 32225.88493459318, + 32228.286486299574, + 32227.49046760654, + 32223.124587251175, + 32214.78781100178, + 32202.05036165771, + 32184.453719049536, + 32161.51062003889, + 32132.705058518568, + 32097.492285412492, + 32055.298808675798, + 32005.522393294603, + 31947.532061286267, + 31880.668091699285, + 31804.242020613226, + 31717.536641138886, + 31619.806003418085, + 31510.275414623833, + 31388.14143896031, + 31252.57189766277, + 31102.705868997597, + 30937.653688262406, + 30756.4969477858, + 30558.288496927635, + 30342.052442078897, + 30106.78414666161, + 32782.219869308145, + 32773.59448958783, + 32765.399528759768, + 32757.573106968295, + 32750.024601388854, + 32742.63464622798, + 32735.25513272341, + 32727.709209143988, + 32719.79128078968, + 32711.267009991603, + 32701.87331611199, + 32691.318375544208, + 32679.281621712806, + 32665.413745073423, + 32649.336693112826, + 32630.643670348953, + 32608.899138330828, + 32583.638815638667, + 32554.36967788377, + 32520.56995770859, + 32481.68914478675, + 32437.14798582293, + 32386.338484553035, + 32328.62390174401, + 32263.33875519403, + 32189.78881973233, + 32107.251127219297, + 32014.973966546495, + 31912.176883636563, + 31798.050681443325, + 31671.757419951715, + 31532.430416177765, + 31379.17424416872, + 31211.064735002918, + 31027.148976789787, + 30826.445314670014, + 30607.943350815254, + 32403.99379766333, + 32423.40058697329, + 32441.888876819758, + 32459.400134564763, + 32475.847084601428, + 32491.113708354056, + 32505.05524427805, + 32517.498187859925, + 32528.240291617396, + 32537.050565099253, + 32543.669274885462, + 32547.8079445871, + 32549.14935484639, + 32547.347543336677, + 32542.027804762438, + 32532.78669085933, + 32519.19201039406, + 32500.782829164564, + 32477.069469999846, + 32447.53351276005, + 32411.627794336495, + 32368.776408651604, + 32318.37470665893, + 32259.789296343162, + 32192.358042720178, + 32115.3900678369, + 32028.165750771434, + 31929.936727633034, + 31819.92589156204, + 31697.327392730007, + 31561.306638339534, + 31411.000292624394, + 31245.51627684951, + 31063.933769310916, + 30865.303205335804, + 30648.646277282463, + 30412.95593454037, + 33137.68065317439, + 33127.21861492666, + 33117.286737774404, + 33107.82126437206, + 33098.729694405156, + 33089.89078459038, + 33081.15454867555, + 33072.34225743962, + 33063.24643869266, + 33053.63087727591, + 33043.23061506169, + 33031.75195095352, + 33018.87244088599, + 33004.240897824915, + 32987.47739176712, + 32968.17324974067, + 32945.89105580471, + 32920.16465104954, + 32890.49913359658, + 32856.37085859842, + 32817.22743823873, + 32772.487741732366, + 32721.54189532528, + 32663.751282294572, + 32598.448542948496, + 32524.937574626405, + 32442.493531698812, + 32350.362825567365, + 32247.763124664812, + 32133.88335445511, + 32007.88369743326, + 31868.895593125446, + 31716.021738089, + 31548.336085912346, + 31364.883847215096, + 31164.68148964794, + 30946.716737892744, + 32743.670800895903, + 32761.255831959363, + 32778.0038599475, + 32793.853938189706, + 32808.71637704647, + 32822.47274390945, + 32834.97586320138, + 32846.049816376195, + 32855.489941918946, + 32863.06283534578, + 32868.50634920402, + 32871.52959307211, + 32871.81293355963, + 32869.007994307314, + 32862.73765598698, + 32852.596056301634, + 32838.14858998537, + 32818.931908803475, + 32794.453921552304, + 32764.19379405938, + 32727.60194918337, + 32684.10006681408, + 32633.08108387241, + 32573.909194310403, + 32505.91984911129, + 32428.419756289386, + 32340.686880890175, + 32241.97044499023, + 32131.49092769725, + 32008.440065150167, + 31871.980850518972, + 31721.24753400475, + 31555.34562283981, + 31373.351881287545, + 31174.314330642497, + 30957.25224923036, + 30721.156172407922, + 33494.84272323414, + 33482.53678408596, + 33470.86139313725, + 33459.750915552555, + 33449.11097352753, + 33438.81844628894, + 33428.72147009472, + 33418.63943823393, + 33408.363001026766, + 33397.654065824565, + 33386.24579700977, + 33373.84261599596, + 33360.12020122792, + 33344.725488181466, + 33327.27666936361, + 33307.363194312515, + 33284.545769597404, + 33258.35635881872, + 33228.298182607985, + 33193.845718627854, + 33154.44470157216, + 33109.51212316584, + 33058.436232164975, + 33000.57653435673, + 32935.263792559526, + 32861.80002662278, + 32779.45851342715, + 32687.483786884346, + 32585.09163793728, + 32471.469114559935, + 32345.774521757525, + 32207.13742156628, + 32054.658633053634, + 31887.410232318154, + 31704.435552489515, + 31504.749183728578, + 31287.33697322725, + 33085.15914294697, + 33100.91803952367, + 33115.922022811916, + 33130.10773210847, + 33143.383063741174, + 33155.62717106906, + 33166.69046448224, + 33176.39461140199, + 33184.53253628072, + 33190.86842060196, + 33195.13770288036, + 33197.04707866177, + 33196.27450052311, + 33192.46917807246, + 33185.25157794899, + 33174.21342382313, + 33158.9176963963, + 33138.89863340111, + 33113.66172960135, + 33082.683736791856, + 33045.412663798685, + 33001.26777647896, + 32949.63959772099, + 32889.88990744417, + 32821.3517425991, + 32743.32939716742, + 32655.098422161995, + 32555.905625626754, + 32444.96907263678, + 32321.478085298368, + 32184.59324274882, + 32033.44638115665, + 31867.1405937215, + 31684.750230674108, + 31485.3208992764, + 31267.869463821437, + 31031.38404563335, + 33853.70030964002, + 33839.54327297733, + 33826.11781651889, + 33813.35642793935, + 33801.16285194444, + 33789.412090271115, + 33777.95040168733, + 33766.595301992325, + 33755.13556401635, + 33743.331217620886, + 33730.91354969846, + 33717.58510417279, + 33703.019681998725, + 33686.86234116224, + 33668.72939668042, + 33648.20842060154, + 33624.85824200495, + 33598.208947001185, + 33567.76187873188, + 33532.989637369814, + 33493.3360801189, + 33448.21632121418, + 33397.01673192189, + 33339.094940539275, + 33273.77983239484, + 33200.371549848154, + 33118.14149228993, + 33026.33231614204, + 32924.157934857474, + 32810.80351892038, + 32685.425495845986, + 32547.15155018068, + 32395.080623502025, + 32228.282914418654, + 32045.799878570386, + 31846.644228628153, + 31629.79993429403, + 33428.45506303811, + 33442.38352835796, + 33455.63976357498, + 33468.157993953246, + 33479.84370178799, + 33490.57362640559, + 33500.19576416351, + 33508.529368450414, + 33515.36494968609, + 33520.464275321356, + 33523.5603698383, + 33524.35751475008, + 33522.531248601015, + 33517.728366966534, + 33509.566922453196, + 33497.63622469872, + 33481.49684037195, + 33460.68059317287, + 33434.69056383258, + 33403.001090113314, + 33365.057766808444, + 33320.277445742526, + 33268.04823577117, + 33207.72950278118, + 33138.651869690475, + 33060.117216448074, + 32971.39868003421, + 32871.740654460205, + 32760.358790768445, + 32636.439997032587, + 32499.142438357365, + 32347.595536878576, + 32180.899971763272, + 31998.127679209534, + 31798.321852446657, + 31580.496941735055, + 31343.638654366234, + 34214.24755732525, + 34198.23227229294, + 34183.050244370424, + 34168.63208374248, + 34154.87965762495, + 34141.666090264865, + 34128.835762940354, + 34116.20431396069, + 34103.558638666276, + 34090.656889428676, + 34077.22847565057, + 34062.97406376574, + 34047.565577239155, + 34030.64619656689, + 34011.830359276166, + 33990.70375992536, + 33966.82335010389, + 33939.717338432456, + 33908.88519056276, + 33873.79762917771, + 33833.89663399134, + 33788.595441748774, + 33737.278546226335, + 33679.30169823144, + 33613.99190560267, + 33540.64743320969, + 33458.537802953324, + 33366.90379376557, + 33264.95744160953, + 33151.88203947944, + 33026.83213740063, + 32888.93354242962, + 32737.28331865407, + 32570.949787192752, + 32388.972526195546, + 32190.362370843508, + 31974.101413348806, + 33773.5547151714, + 33785.64853193458, + 33797.153395179215, + 33808.00111613679, + 33818.09476306988, + 33827.3086612722, + 33835.48839306862, + 33842.450797815116, + 33847.983971898844, + 33851.84726873803, + 33853.771298782114, + 33853.45792951157, + 33850.5802854381, + 33844.78274810453, + 33835.68095608474, + 33822.861804983826, + 33805.88344743798, + 33784.275293114566, + 33757.53800871203, + 33725.14351795998, + 33686.535001619166, + 33641.12689748148, + 33588.304900369905, + 33527.42596213858, + 33457.81829167282, + 33378.781354889, + 33289.585874734716, + 33189.473831188625, + 33077.658461260515, + 32953.32425899137, + 32815.6269754533, + 32663.69361874948, + 32496.62245401429, + 32313.48300341323, + 32113.31604614288, + 31895.133618431053, + 31657.91901353664, + 34576.47852600343, + 34558.59788750533, + 34541.6528279234, + 34525.57207995244, + 34510.2556333185, + 34495.57473477865, + 34481.37188812113, + 34467.460854165365, + 34453.62665076184, + 34439.62555279222, + 34425.18509216931, + 34410.00405783698, + 34393.75249577032, + 34376.071708975534, + 34356.57425748991, + 34334.843958381956, + 34310.43588575122, + 34282.87637072846, + 34251.66300147553, + 34216.264623185416, + 34176.12133808228, + 34130.644505421355, + 34079.21674148906, + 34021.19191960292, + 33955.895170111646, + 33882.622880394985, + 33800.642694863905, + 33709.193514960476, + 33607.485499157905, + 33494.70006296055, + 33369.989878903885, + 33232.478876554494, + 33081.26224251015, + 32915.40642039973, + 32733.949110883237, + 32535.89927165185, + 32320.237117427823, + 34120.45416812933, + 34130.70919850624, + 34140.4591453476, + 34149.6334058523, + 34158.13263425023, + 34165.82874180252, + 34172.56489680136, + 34178.15552457013, + 34182.38630746331, + 34185.01418486651, + 34185.7673531965, + 34184.34526590119, + 34180.41863345956, + 34173.62942338181, + 34163.590860209224, + 34149.88742551425, + 34132.07485790044, + 34109.680153002475, + 34082.20156348622, + 34049.10859904862, + 34009.8420264178, + 33963.81386935299, + 33910.40740864455, + 33848.97718211398, + 33778.84898461398, + 33699.31986802825, + 33609.65814127174, + 33509.10337029051, + 33396.8663780617, + 33272.12924459365, + 33134.04530692581, + 32981.73915912874, + 32814.30665230418, + 32630.81489458498, + 32430.30225113512, + 32211.77834414972, + 31974.224052855043, + 34940.387190168716, + 34920.634138867645, + 34901.91963318986, + 34884.1705283403, + 34867.28493655507, + 34851.132227101385, + 34835.553026277616, + 34820.359217413235, + 34805.33394086888, + 34790.23159403631, + 34774.77783133842, + 34758.66956422925, + 34741.574961193925, + 34723.1334477488, + 34702.955706441266, + 34680.62367684993, + 34655.69055558445, + 34627.6807962857, + 34596.09010962563, + 34560.38546330735, + 34520.00508206511, + 34474.35844766427, + 34422.826298901375, + 34364.76063160401, + 34299.48469863102, + 34226.293009872265, + 34144.45133224883, + 34053.19668971286, + 33951.737363247696, + 33839.25289086781, + 33714.89406761874, + 33577.78294557724, + 33427.01283385116, + 33261.64829857947, + 33080.72516293233, + 32883.250507110955, + 32668.20266834779, + 34469.14940547497, + 34477.56159110619, + 34485.55315658362, + 34493.05108507345, + 34499.953616773, + 34506.130248910726, + 34511.42173574617, + 34515.640088570086, + 34518.56857570433, + 34519.96172250186, + 34519.5453113468, + 34517.01638165442, + 34512.04322987109, + 34504.26540947438, + 34493.29373097287, + 34478.710261906424, + 34460.06832684593, + 34436.89250739347, + 34408.67864218224, + 34374.89382687654, + 34334.97641417186, + 34288.336013794826, + 34234.35349250311, + 34172.38097408562, + 34101.74183936238, + 34021.73072618447, + 33931.61352943422, + 33830.62740102499, + 33717.98074990134, + 33592.85324203897, + 33454.39580044467, + 33301.730605156365, + 33133.95109324316, + 32950.12195880527, + 32749.279152974013, + 32530.429883911936, + 32292.5526168126, + 35305.96743909564, + 35284.33496141339, + 35263.84464096231, + 35244.42145545749, + 35225.961639645095, + 35208.332685302485, + 35191.3733412381, + 35174.89361329159, + 35158.67476433365, + 35142.469314266156, + 35126.00104002213, + 35108.96497556566, + 35091.02741189207, + 35071.82589702775, + 35050.96923603026, + 35028.037490988245, + 35002.581981021525, + 34974.12528228106, + 34942.16122794893, + 34906.15490823832, + 34865.54267039362, + 34819.73211869029, + 34768.10211443495, + 34710.00277596535, + 34644.7554786504, + 34571.65285489009, + 34489.958794115606, + 34398.9084427892, + 34297.70820440434, + 34185.535739485575, + 34061.53996558858, + 33924.84105730019, + 33774.53044623839, + 33609.67082105225, + 33429.296127422014, + 33232.41156805907, + 33017.99360270586, + 34819.636325551786, + 34826.201687548164, + 34832.43148617119, + 34838.25029055443, + 34843.553926862536, + 34848.20947829137, + 34852.05528506784, + 34854.90094445001, + 34856.527310727135, + 34856.686495219525, + 34855.101866278674, + 34851.468049287214, + 34845.450926658865, + 34836.687637838535, + 34824.786579302236, + 34809.32740455716, + 34789.86102414152, + 34765.90960562479, + 34736.96657360753, + 34702.4966097214, + 34661.935652629276, + 34614.690898025074, + 34560.14079863392, + 34497.635064212016, + 34426.49466154678, + 34346.01181445665, + 34255.450003791295, + 34154.043967431484, + 34040.99970028908, + 33915.4944543072, + 33776.676738459944, + 33623.66631875265, + 33455.554218221754, + 33271.402716934834, + 33070.2453519906, + 32851.086917518885, + 32612.903464680698, + 35673.21307683938, + 35649.69420495665, + 35627.42174681379, + 35606.31880263598, + 35586.2797296795, + 35567.17014223183, + 35548.82691161152, + 35531.05816616827, + 35513.64329128295, + 35496.33292936752, + 35478.8489798651, + 35460.88459924992, + 35442.10420102738, + 35422.143455734, + 35400.60929093742, + 35377.079891236426, + 35351.10469826093, + 35322.204410672006, + 35289.87098416183, + 35253.56763145371, + 35212.72882230214, + 35166.76028349268, + 35115.038998842065, + 35056.91320919815, + 34991.70241243997, + 34918.69736347762, + 34837.160074252366, + 34746.3238137366, + 34645.39310793387, + 34533.54373987886, + 34409.922749637335, + 34273.64843430627, + 34123.810348013714, + 33959.46930191887, + 33779.65736421209, + 33583.37786011486, + 33369.60537187976, + 35171.91074148381, + 35176.62538042636, + 35181.09010617474, + 35185.22707382988, + 35188.92969552379, + 35192.06264041963, + 35194.46183471172, + 35195.93446162548, + 35196.258961417545, + 35195.185031375564, + 35192.4336258184, + 35187.696956096, + 35180.63849058954, + 35170.89295471125, + 35158.066330904476, + 35141.735858643755, + 35121.45003443473, + 35096.72861181424, + 35067.062601350124, + 35031.914270641486, + 34990.71714431848, + 34942.87600404248, + 34887.76688850592, + 34824.73709343236, + 34753.10517157658, + 34672.16093272438, + 34581.16544369286, + 34479.35102833004, + 34365.92126751523, + 34240.05099915882, + 34100.88631820241, + 33947.54457661855, + 33779.114383411135, + 33594.65560461508, + 33393.19936329642, + 33173.74803955245, + 32935.27527051143, + 36042.11782223547, + 36016.70563409196, + 35992.644761097785, + 35969.85642598824, + 35948.23310852973, + 35927.638545519796, + 35907.907730787134, + 35888.846915191556, + 35870.23360662402, + 35851.81657000661, + 35833.31582729254, + 35814.42265746615, + 35794.79959654296, + 35774.08043756959, + 35751.87023062378, + 35727.745282814445, + 35701.253158281594, + 35671.912678196415, + 35639.21392076117, + 35602.61822120931, + 35561.55817180541, + 35515.43762184516, + 35463.631677655394, + 35405.48670259409, + 35340.32031705033, + 35267.42139844438, + 35186.0500812276, + 35095.43775688251, + 34994.787073922715, + 34883.27193789305, + 34760.037511369395, + 34624.20021395878, + 34474.84772229942, + 34311.03897006059, + 34131.804147942756, + 33936.14470367754, + 33723.03334202759, + 35525.968381175466, + 35528.8284771155, + 35531.524903439255, + 35533.97740121496, + 35536.07696854203, + 35537.68586055102, + 35538.63758940359, + 35538.73692429251, + 35537.75989144176, + 35535.45377410637, + 35531.53711257258, + 35525.69970415773, + 35517.602603210245, + 35506.8781211098, + 35493.129826267104, + 35475.93254412405, + 35454.83235715363, + 35429.34660486001, + 35398.96388377846, + 35363.1440474754, + 35321.3182065484, + 35272.888728626116, + 35217.22923836839, + 35153.684617466155, + 35081.57100464154, + 35000.17579564771, + 34908.757643269055, + 34806.54645732107, + 34692.74340465038, + 34566.520909134764, + 34427.02265168309, + 34273.36357023539, + 34104.62985976284, + 33919.87897226774, + 33718.13961678353, + 33498.41175937477, + 33259.66662313717, + 36412.67530889998, + 36385.36292819435, + 36359.5074089483, + 36335.02809640723, + 36311.815592847684, + 36289.73175757728, + 36268.60970693484, + 36248.25381429027, + 36228.43971004464, + 36208.91428163014, + 36189.39567351011, + 36169.573287178995, + 36149.10778116239, + 36127.63107101707, + 36104.74632933087, + 36080.027985722794, + 36053.02172684296, + 36023.24449637268, + 35990.18449502433, + 35953.301180541464, + 35912.02526769876, + 35865.758728302004, + 35813.87479118816, + 35755.71794222528, + 35690.60392431263, + 35617.81973738051, + 35536.62363839041, + 35446.245141334955, + 35345.88501723791, + 35234.71529415411, + 35111.87925716965, + 34976.491448401604, + 34827.63766699832, + 34664.374969139186, + 34485.73166803479, + 34290.707333926795, + 34078.27279408805, + 35881.80488731175, + 35882.80669977076, + 35883.731679590055, + 35884.49715380527, + 35884.99170648318, + 35885.07517872168, + 35884.57866864975, + 35883.3045314276, + 35881.02637924655, + 35877.48908132899, + 35872.408763928484, + 35865.47281032975, + 35856.33986084863, + 35844.63981283211, + 35829.97382065825, + 35811.91429573633, + 35790.00490650671, + 35763.7605784409, + 35732.66749404155, + 35696.18309284243, + 35653.73607140843, + 35604.72638333566, + 35548.52523925126, + 35484.47510681353, + 35411.889710711956, + 35330.05403266709, + 35238.224311430706, + 35135.628042785625, + 35021.46397954581, + 34894.90213155641, + 34755.08376569371, + 34601.12140586506, + 34432.09883300899, + 34247.0710850952, + 34045.06445712441, + 33825.07650112867, + 33586.076026170966, + 36453.95013764236, + 36426.4262017852, + 36400.37089457355, + 36375.70335264264, + 36352.313969658826, + 36330.06439631962, + 36308.78754035366, + 36288.28756652072, + 36268.33989661172, + 36248.69120944866, + 36229.05944088473, + 36209.133783804245, + 36188.57468812266, + 36167.013860786545, + 36144.0542657736, + 36119.2701240927, + 36092.206913783775, + 36062.38136991799, + 36029.28148459758, + 35992.36650695591, + 35951.06694315755, + 35904.784556398095, + 35852.892366904394, + 35794.73465193432, + 35729.62694577694, + 35656.85603975246, + 35575.67998221223, + 35485.328078538645, + 35385.000891145355, + 35273.87023947709, + 35151.079200009684, + 35015.74210625015, + 34866.944548736654, + 34703.74337503841, + 34525.16668975583, + 34330.2138545205, + 34117.855487995046, + 35921.45192302504, + 35922.24703193467, + 35922.974993394855, + 35923.552866215134, + 35923.86896623621, + 35923.782866329966, + 35923.12539639932, + 35921.698643378375, + 35919.27595123238, + 35915.60192095769, + 35910.39241058183, + 35903.33453516345, + 35894.08666679227, + 35882.27843458923, + 35867.51072470639, + 35849.35568032692, + 35827.35670166509, + 35801.02844596639, + 35769.8568275074, + 35733.2990175958, + 35690.78344457048, + 35641.7097938014, + 35585.449007689684, + 35521.34328566759, + 35448.70608419853, + 35366.82211677695, + 35274.947353928575, + 35172.30902321018, + 35058.105609209684, + 34931.506853546154, + 34791.65375486978, + 34637.6585688619, + 34468.60480823496, + 34283.54724273258, + 34081.51189912947, + 33861.49606123152, + 33622.46826987573, + 114565.23071326857, + 114155.47538646925, + 113774.27824729642, + 113421.24134520392, + 113095.93798667652, + 112797.91273523033, + 112526.68141141238, + 112281.73109280088, + 112062.52011400533, + 111868.47806666615, + 111699.00579945506, + 111553.47541807474, + 111431.23028525931, + 111331.58502077365, + 111253.82550141412, + 111197.20886100797, + 111160.96349041353, + 111144.2890375206, + 111146.35640724978, + 111166.30776155306, + 111203.25651941329, + 111256.28735684477, + 111324.45620689263, + 111406.79025963337, + 111502.28796217452, + 111609.91901865463, + 111728.62439024373, + 111857.3162951425, + 111994.8782085833, + 112140.16486282906, + 112292.00224717443, + 112449.18760794455, + 112610.48944849633, + 112774.6475292174, + 112940.3728675266, + 113106.34773787405, + 113271.22567174082, + 115003.33839862536, + 114701.6289444873, + 114423.042279273, + 114167.08775850227, + 113933.24599472614, + 113720.96885752666, + 113529.67947351698, + 113358.77222634129, + 113207.6127566753, + 113075.53796222537, + 112961.85599772942, + 112865.84627495614, + 112786.75946270568, + 112723.8174868091, + 112676.21353012869, + 112643.11203255784, + 112623.64869102098, + 112616.930459474, + 112622.0355489035, + 112638.01342732756, + 112663.88481979509, + 112698.64170838651, + 112741.24733221305, + 112790.63618741716, + 112845.71402717251, + 112905.35786168376, + 112968.4159581869, + 113033.70784094889, + 113100.02429126788, + 113166.12734747314, + 113230.75030492517, + 113292.59771601534, + 113350.34539016659, + 113402.64039383264, + 113448.10105049827, + 113485.31694067981, + 113512.84890192433 + ], + "input_power": [ + 14781.572000000002, + 14787.02049382716, + 14798.334864197532, + 14815.515111111114, + 14838.561234567902, + 14867.473234567902, + 14902.25111111111, + 14942.894864197531, + 14989.404493827162, + 15041.780000000004, + 15100.021382716055, + 15164.128641975309, + 15234.101777777778, + 15309.940790123455, + 15391.645679012347, + 15479.216444444446, + 15572.653086419756, + 15671.955604938272, + 15777.123999999998, + 15888.15827160494, + 16005.058419753088, + 16127.824444444446, + 16256.456345679013, + 16390.95412345679, + 16531.317777777775, + 16677.54730864198, + 16829.64271604938, + 16987.603999999996, + 17151.431160493834, + 17321.124197530862, + 17496.68311111111, + 17678.107901234573, + 17865.398567901233, + 18058.555111111116, + 18257.5775308642, + 18462.465827160497, + 18673.219999999998, + 15490.397599999998, + 15500.808938271603, + 15517.086153086419, + 15539.229244444443, + 15567.238212345675, + 15601.113056790124, + 15640.853777777776, + 15686.46037530864, + 15737.932849382716, + 15795.2712, + 15858.475427160496, + 15927.545530864198, + 16002.481511111111, + 16083.283367901231, + 16169.951101234567, + 16262.48471111111, + 16360.884197530864, + 16465.149560493828, + 16575.280799999997, + 16691.277916049385, + 16813.140908641977, + 16940.869777777778, + 17074.46452345679, + 17213.92514567901, + 17359.251644444445, + 17510.44401975309, + 17667.502271604935, + 17830.4264, + 17999.216404938274, + 18173.87228641975, + 18354.394044444445, + 18540.781679012347, + 18733.035190123457, + 18931.154577777786, + 19135.13984197531, + 19344.990982716055, + 19560.708, + 14784.249919999998, + 14789.690804938271, + 14800.997566419752, + 14818.170204444446, + 14841.208719012346, + 14870.113110123457, + 14904.883377777778, + 14945.51952197531, + 14992.021542716053, + 15044.38944, + 15102.623213827163, + 15166.722864197529, + 15236.68839111111, + 15312.5197945679, + 15394.217074567901, + 15481.780231111112, + 15575.209264197532, + 15674.50417382716, + 15779.66496, + 15890.69162271605, + 16007.58416197531, + 16130.342577777777, + 16258.966870123459, + 16393.457039012348, + 16533.813084444442, + 16680.035006419756, + 16832.122804938273, + 16990.07648, + 17153.896031604938, + 17323.581459753084, + 17499.132764444443, + 17680.549945679017, + 17867.83300345679, + 18060.98193777778, + 18259.996748641974, + 18464.877436049384, + 18675.624, + 15493.454247999996, + 15503.86972493827, + 15520.151078419753, + 15542.298308444442, + 15570.311415012344, + 15604.190398123455, + 15643.935257777775, + 15689.545993975305, + 15741.02260671605, + 15798.365095999998, + 15861.573461827158, + 15930.647704197529, + 16005.587823111107, + 16086.393818567896, + 16173.065690567895, + 16265.603439111108, + 16364.00706419753, + 16468.27656582716, + 16578.411944, + 16694.413198716044, + 16816.280329975303, + 16944.013337777775, + 17077.612222123455, + 17217.076983012343, + 17362.40762044444, + 17513.60413441975, + 17670.66652493827, + 17833.594791999993, + 18002.38893560494, + 18177.04895575308, + 18357.574852444435, + 18543.96662567901, + 18736.22427545679, + 18934.347801777774, + 19138.33720464197, + 19348.19248404938, + 19563.913639999995, + 14808.252199999999, + 14813.624604938272, + 14824.862886419753, + 14841.967044444445, + 14864.937079012348, + 14893.772990123458, + 14928.474777777777, + 14969.042441975309, + 15015.47598271605, + 15067.775400000004, + 15125.940693827166, + 15189.97186419753, + 15259.868911111109, + 15335.631834567901, + 15417.260634567903, + 15504.755311111114, + 15598.11586419753, + 15697.342293827161, + 15802.4346, + 15913.392782716051, + 16030.21684197531, + 16152.90677777778, + 16281.462590123454, + 16415.884279012345, + 16556.171844444438, + 16702.325286419757, + 16854.344604938273, + 17012.2298, + 17175.980871604937, + 17345.597819753086, + 17521.080644444446, + 17702.429345679015, + 17889.64392345679, + 18082.72437777778, + 18281.670708641974, + 18486.482916049383, + 18697.160999999996, + 15520.865079999996, + 15531.317804938268, + 15547.63640641975, + 15569.820884444443, + 15597.871239012344, + 15631.787470123456, + 15671.569577777778, + 15717.217561975307, + 15768.731422716048, + 15826.111159999999, + 15889.35677382716, + 15958.46826419753, + 16033.445631111106, + 16114.288874567894, + 16200.997994567899, + 16293.572991111108, + 16392.013864197528, + 16496.320613827156, + 16606.493239999996, + 16722.53174271605, + 16844.43612197531, + 16972.206377777773, + 17105.842510123457, + 17245.344519012342, + 17390.71240444444, + 17541.946166419755, + 17699.04580493827, + 17862.011319999994, + 18030.84271160494, + 18205.539979753084, + 18386.10312444444, + 18572.532145679015, + 18764.827043456786, + 18962.98781777778, + 19167.01446864197, + 19376.90699604938, + 19592.665399999994, + 14832.07628, + 14837.38020493827, + 14848.550006419753, + 14865.585684444446, + 14888.487239012347, + 14917.254670123457, + 14951.887977777778, + 14992.38716197531, + 15038.75222271605, + 15090.98316, + 15149.079973827165, + 15213.04266419753, + 15282.87123111111, + 15358.565674567899, + 15440.125994567901, + 15527.552191111114, + 15620.844264197533, + 15720.00221382716, + 15825.026039999995, + 15935.91574271605, + 16052.671321975311, + 16175.292777777777, + 16303.780110123455, + 16438.133319012344, + 16578.352404444442, + 16724.437366419756, + 16876.38820493827, + 17034.204919999996, + 17197.88751160494, + 17367.435979753085, + 17542.850324444444, + 17724.130545679018, + 17911.27664345679, + 18104.28861777778, + 18303.166468641975, + 18507.910196049383, + 18718.519799999995, + 15548.097711999999, + 15558.58768493827, + 15574.94353441975, + 15597.16526044444, + 15625.252863012343, + 15659.206342123452, + 15699.025697777775, + 15744.710929975305, + 15796.26203871605, + 15853.679023999997, + 15916.96188582716, + 15986.110624197532, + 16061.125239111107, + 16142.005730567895, + 16228.752098567898, + 16321.36434311111, + 16419.84246419753, + 16524.18646182716, + 16634.396335999998, + 16750.472086716047, + 16872.413713975307, + 17000.221217777773, + 17133.894598123454, + 17273.433855012343, + 17418.83898844444, + 17570.109998419757, + 17727.246884938268, + 17890.249647999994, + 18059.11828760494, + 18233.852803753085, + 18414.45319644444, + 18600.919465679017, + 18793.251611456784, + 18991.44963377778, + 19195.513532641977, + 19405.44330804938, + 19621.238959999995, + 14855.722159999998, + 14860.957604938269, + 14872.058926419753, + 14889.026124444443, + 14911.859199012342, + 14940.558150123456, + 14975.122977777775, + 15015.553681975309, + 15061.850262716049, + 15114.01272, + 15172.041053827163, + 15235.93526419753, + 15305.69535111111, + 15381.321314567898, + 15462.8131545679, + 15550.170871111111, + 15643.39446419753, + 15742.483933827161, + 15847.439280000002, + 15958.26050271605, + 16074.947601975311, + 16197.500577777777, + 16325.919430123457, + 16460.204159012348, + 16600.354764444444, + 16746.371246419756, + 16898.253604938272, + 17056.00184, + 17219.615951604937, + 17389.095939753082, + 17564.441804444443, + 17745.65354567901, + 17932.731163456792, + 18125.674657777778, + 18324.48402864197, + 18529.159276049384, + 18739.700399999998, + 15575.152143999996, + 15585.679364938267, + 15602.072462419752, + 15624.331436444441, + 15652.456287012341, + 15686.447014123456, + 15726.303617777776, + 15772.026097975306, + 15823.614454716051, + 15881.068688, + 15944.388797827161, + 16013.57478419753, + 16088.626647111108, + 16169.544386567899, + 16256.328002567898, + 16348.97749511111, + 16447.49286419753, + 16551.87410982716, + 16662.121232, + 16778.234230716047, + 16900.213105975305, + 17028.057857777774, + 17161.768486123456, + 17301.344991012345, + 17446.78737244444, + 17598.095630419753, + 17755.269764938268, + 17918.309776, + 18087.21566360494, + 18261.98742775308, + 18442.625068444435, + 18629.128585679013, + 18821.497979456788, + 19019.73324977778, + 19223.83439664197, + 19433.80142004938, + 19649.634319999997, + 14879.189840000001, + 14884.356804938274, + 14895.389646419755, + 14912.288364444446, + 14935.052959012348, + 14963.683430123458, + 14998.17977777778, + 15038.542001975311, + 15084.770102716051, + 15136.864080000003, + 15194.823933827167, + 15258.64966419753, + 15328.34127111111, + 15403.898754567897, + 15485.322114567902, + 15572.611351111113, + 15665.766464197532, + 15764.787453827163, + 15869.674320000002, + 15980.427062716051, + 16097.045681975305, + 16219.530177777777, + 16347.88055012346, + 16482.096799012346, + 16622.178924444444, + 16768.126926419754, + 16919.940804938273, + 17077.62056, + 17241.166191604938, + 17410.57769975309, + 17585.855084444443, + 17766.998345679014, + 17954.007483456793, + 18146.88249777778, + 18345.62338864198, + 18550.230156049383, + 18760.702799999995, + 15602.028376, + 15612.59284493827, + 15629.023190419754, + 15651.319412444444, + 15679.481511012345, + 15713.509486123457, + 15753.403337777776, + 15799.163065975305, + 15850.788670716049, + 15908.280152, + 15971.63750982716, + 16040.860744197531, + 16115.949855111108, + 16196.904842567896, + 16283.7257065679, + 16376.412447111112, + 16474.96506419753, + 16579.38355782716, + 16689.667928, + 16805.81817471605, + 16927.834297975307, + 17055.716297777773, + 17189.46417412346, + 17329.077927012342, + 17474.55755644444, + 17625.90306241975, + 17783.114444938266, + 17946.191703999993, + 18115.134839604936, + 18289.943851753083, + 18470.61874044444, + 18657.15950567901, + 18849.566147456786, + 19047.838665777777, + 19251.977060641973, + 19461.981332049378, + 19677.851479999994, + 14902.479319999999, + 14907.577804938272, + 14918.542166419753, + 14935.372404444446, + 14958.068519012348, + 14986.630510123457, + 15021.05837777778, + 15061.35212197531, + 15107.511742716051, + 15159.537240000001, + 15217.428613827165, + 15281.18586419753, + 15350.808991111111, + 15426.2979945679, + 15507.652874567902, + 15594.873631111113, + 15687.960264197534, + 15786.912773827162, + 15891.731160000001, + 16002.41542271605, + 16118.965561975312, + 16241.38157777778, + 16369.663470123456, + 16503.81123901235, + 16643.824884444442, + 16789.704406419758, + 16941.449804938275, + 17099.06108, + 17262.538231604947, + 17431.88125975309, + 17607.090164444442, + 17788.16494567902, + 17975.105603456792, + 18167.912137777785, + 18366.58454864198, + 18571.122836049388, + 18781.527000000002, + 15628.726407999997, + 15639.328124938269, + 15655.795718419751, + 15678.129188444442, + 15706.328535012344, + 15740.393758123455, + 15780.324857777778, + 15826.121833975307, + 15877.78468671605, + 15935.313415999999, + 15998.708021827159, + 16067.968504197534, + 16143.09486311111, + 16224.0870985679, + 16310.945210567901, + 16403.66919911111, + 16502.259064197533, + 16606.71480582716, + 16717.036423999998, + 16833.223918716052, + 16955.27728997531, + 17083.196537777778, + 17216.981662123457, + 17356.632663012344, + 17502.149540444443, + 17653.532294419758, + 17810.780924938266, + 17973.895431999998, + 18142.87581560494, + 18317.722075753085, + 18498.434212444445, + 18685.012225679016, + 18877.456115456793, + 19075.765881777785, + 19279.941524641978, + 19489.983044049382, + 19705.89044, + 14912.776596625845, + 14917.84463535612, + 14928.778550629597, + 14945.57834244629, + 14968.244010806191, + 14996.775555709302, + 15031.172977155622, + 15071.436275145155, + 15117.565449677893, + 15169.560500753847, + 15227.421428373007, + 15291.148232535375, + 15360.740913240952, + 15436.199470489744, + 15517.523904281747, + 15604.714214616959, + 15697.770401495378, + 15796.692464917007, + 15901.480404881846, + 16012.134221389897, + 16128.653914441156, + 16251.039484035622, + 16379.290930173305, + 16513.40825285419, + 16653.39145207829, + 16799.240527845603, + 16950.955480156117, + 17108.536309009844, + 17271.983014406786, + 17441.29559634693, + 17616.474054830283, + 17797.51838985686, + 17984.42860142664, + 18177.204689539627, + 18375.84665419582, + 18580.35449539523, + 18790.72821313784, + 15640.539126845042, + 15651.157404244113, + 15667.641558186397, + 15689.991588671888, + 15718.20749570059, + 15752.289279272505, + 15792.236939387623, + 15838.050476045952, + 15889.729889247496, + 15947.275178992248, + 16010.686345280206, + 16079.963388111377, + 16155.106307485756, + 16236.115103403343, + 16322.989775864144, + 16415.730324868153, + 16514.336750415376, + 16618.809052505803, + 16729.147231139443, + 16845.351286316294, + 16967.421218036354, + 17095.35702629962, + 17229.1587111061, + 17368.826272455786, + 17514.359710348686, + 17665.7590247848, + 17823.024215764115, + 17986.155283286647, + 18155.15222735238, + 18330.01504796133, + 18510.74374511349, + 18697.33831880886, + 18889.798769047433, + 19088.125095829226, + 19292.317299154216, + 19502.37537902243, + 19718.29933543384, + 14925.590599999998, + 14930.620604938269, + 14941.51648641975, + 14958.278244444444, + 14980.905879012344, + 15009.399390123455, + 15043.758777777775, + 15083.984041975307, + 15130.075182716047, + 15182.032199999998, + 15239.855093827162, + 15303.543864197529, + 15373.098511111108, + 15448.519034567897, + 15529.8054345679, + 15616.95771111111, + 15709.97586419753, + 15808.859893827159, + 15913.609799999998, + 16024.22558271605, + 16140.707241975306, + 16263.054777777776, + 16391.268190123454, + 16525.347479012347, + 16665.29264444444, + 16811.103686419752, + 16962.78060493827, + 17120.323399999994, + 17283.732071604936, + 17453.006619753083, + 17628.147044444442, + 17809.15334567901, + 17996.02552345679, + 18188.763577777776, + 18387.367508641975, + 18591.837316049383, + 18802.17299999999, + 15655.246239999997, + 15665.885204938268, + 15682.390046419752, + 15704.76076444444, + 15732.99735901234, + 15767.099830123458, + 15807.068177777775, + 15852.902401975307, + 15904.602502716047, + 15962.168479999998, + 16025.60033382716, + 16094.89806419753, + 16170.06167111111, + 16251.091154567896, + 16337.986514567898, + 16430.74775111111, + 16529.37486419753, + 16633.86785382716, + 16744.226719999995, + 16860.451462716046, + 16982.542081975305, + 17110.498577777777, + 17244.320950123456, + 17384.009199012344, + 17529.56332444444, + 17680.98332641975, + 17838.269204938268, + 18001.420959999996, + 18170.438591604936, + 18345.32209975308, + 18526.071484444445, + 18712.686745679017, + 18905.167883456787, + 19103.514897777783, + 19307.72778864197, + 19517.80655604938, + 19733.75119999999, + 14948.523679999997, + 14953.48520493827, + 14964.312606419751, + 14981.005884444445, + 15003.565039012343, + 15031.990070123455, + 15066.280977777777, + 15106.437761975307, + 15152.460422716053, + 15204.348960000001, + 15262.103373827162, + 15325.723664197529, + 15395.209831111108, + 15470.561874567898, + 15551.779794567901, + 15638.86359111111, + 15731.81326419753, + 15830.62881382716, + 15935.310239999997, + 16045.857542716047, + 16162.270721975308, + 16284.549777777773, + 16412.694710123455, + 16546.705519012346, + 16686.582204444443, + 16832.32476641975, + 16983.933204938272, + 17141.407519999997, + 17304.747711604938, + 17473.953779753083, + 17649.025724444436, + 17829.96354567901, + 18016.76724345679, + 18209.43681777778, + 18407.972268641974, + 18612.37359604938, + 18822.640799999994, + 15681.587871999996, + 15692.264084938268, + 15708.806174419755, + 15731.214140444445, + 15759.48798301234, + 15793.627702123455, + 15833.633297777775, + 15879.504769975309, + 15931.242118716047, + 15988.845343999998, + 16052.314445827162, + 16121.649424197532, + 16196.850279111108, + 16277.917010567897, + 16364.849618567896, + 16457.648103111107, + 16556.31246419753, + 16660.842701827158, + 16771.238815999997, + 16887.50080671605, + 17009.62867397531, + 17137.622417777773, + 17271.482038123457, + 17411.20753501234, + 17556.79890844444, + 17708.25615841975, + 17865.579284938267, + 18028.768287999996, + 18197.823167604936, + 18372.743923753085, + 18553.530556444435, + 18740.183065679008, + 18932.701451456785, + 19131.08571377778, + 19335.33585264197, + 19545.451868049375, + 19761.43376, + 14971.278559999999, + 14976.17160493827, + 14986.930526419752, + 15003.555324444444, + 15026.045999012345, + 15054.402550123456, + 15088.624977777776, + 15128.713281975308, + 15174.667462716048, + 15226.487520000002, + 15284.173453827161, + 15347.725264197528, + 15417.142951111107, + 15492.4265145679, + 15573.575954567901, + 15660.591271111112, + 15753.472464197532, + 15852.21953382716, + 15956.832479999997, + 16067.311302716045, + 16183.656001975305, + 16305.866577777773, + 16433.943030123453, + 16567.885359012347, + 16707.693564444442, + 16853.367646419752, + 17004.90760493827, + 17162.313439999998, + 17325.585151604933, + 17494.722739753084, + 17669.72620444444, + 17850.595545679014, + 18037.33076345679, + 18229.931857777778, + 18428.398828641974, + 18632.73167604938, + 18842.930399999994, + 15707.751303999998, + 15718.464764938268, + 15735.044102419753, + 15757.489316444444, + 15785.800407012342, + 15819.977374123455, + 15860.020217777777, + 15905.928937975308, + 15957.703534716049, + 16015.344008, + 16078.850357827161, + 16148.22258419753, + 16223.46068711111, + 16304.564666567896, + 16391.5345225679, + 16484.370255111113, + 16583.07186419753, + 16687.639349827157, + 16798.072712, + 16914.37195071605, + 17036.537065975306, + 17164.568057777775, + 17298.464926123455, + 17438.227671012344, + 17583.856292444445, + 17735.35079041975, + 17892.711164938268, + 18055.937415999997, + 18225.02954360494, + 18399.987547753084, + 18580.811428444445, + 18767.50118567901, + 18960.05681945679, + 19158.478329777787, + 19362.765716641978, + 19572.918980049384, + 19788.938119999995, + 14993.855239999997, + 14998.67980493827, + 15009.370246419749, + 15025.926564444444, + 15048.348759012346, + 15076.636830123454, + 15110.790777777778, + 15150.810601975307, + 15196.69630271605, + 15248.447879999996, + 15306.065333827162, + 15369.54866419753, + 15438.897871111107, + 15514.112954567901, + 15595.1939145679, + 15682.140751111114, + 15774.95346419753, + 15873.632053827161, + 15978.17652, + 16088.586862716053, + 16204.863081975307, + 16327.005177777777, + 16455.013150123457, + 16588.88699901235, + 16728.626724444443, + 16874.232326419755, + 17025.703804938275, + 17183.041159999993, + 17346.24439160494, + 17515.313499753087, + 17690.24848444444, + 17871.049345679014, + 18057.71608345679, + 18250.24869777778, + 18448.64718864198, + 18652.91155604938, + 18863.0418, + 15733.736535999999, + 15744.48724493827, + 15761.103830419754, + 15783.586292444443, + 15811.934631012344, + 15846.148846123458, + 15886.228937777776, + 15932.174905975307, + 15983.986750716049, + 16041.664472, + 16105.20806982716, + 16174.617544197534, + 16249.89289511111, + 16331.0341225679, + 16418.0412265679, + 16510.91420711111, + 16609.65306419753, + 16714.25779782716, + 16824.728408, + 16941.064894716048, + 17063.26725797531, + 17191.335497777774, + 17325.269614123456, + 17465.069607012345, + 17610.735476444443, + 17762.267222419756, + 17919.664844938266, + 18082.928344, + 18252.05771960494, + 18427.052971753084, + 18607.91410044444, + 18794.641105679017, + 18987.23398745679, + 19185.692745777782, + 19390.01738064197, + 19600.207892049384, + 19816.264279999996, + 15016.253719999997, + 15021.009804938269, + 15031.631766419752, + 15048.119604444444, + 15070.473319012344, + 15098.692910123455, + 15132.778377777775, + 15172.72972197531, + 15218.54694271605, + 15270.23004, + 15327.779013827163, + 15391.193864197528, + 15460.47459111111, + 15535.621194567899, + 15616.6336745679, + 15703.51203111111, + 15796.25626419753, + 15894.86637382716, + 15999.34236, + 16109.684222716052, + 16225.89196197531, + 16347.965577777775, + 16475.905070123456, + 16609.710439012346, + 16749.38168444444, + 16894.91880641975, + 17046.321804938274, + 17203.590679999994, + 17366.72543160494, + 17535.726059753088, + 17710.592564444443, + 17891.324945679014, + 18077.92320345679, + 18270.387337777785, + 18468.717348641978, + 18672.913236049382, + 18882.975000000002, + 15759.543567999996, + 15770.331524938267, + 15786.985358419752, + 15809.505068444443, + 15837.890655012341, + 15872.142118123456, + 15912.259457777775, + 15958.242673975306, + 16010.091766716052, + 16067.806736000002, + 16131.387581827163, + 16200.834304197531, + 16276.146903111112, + 16357.3253785679, + 16444.369730567898, + 16537.27995911111, + 16636.05606419753, + 16740.69804582716, + 16851.205904000002, + 16967.579638716044, + 17089.819249975306, + 17217.924737777776, + 17351.896102123457, + 17491.733343012347, + 17637.43646044444, + 17789.005454419756, + 17946.440324938274, + 18109.741071999997, + 18278.907695604936, + 18453.940195753083, + 18634.838572444445, + 18821.602825679016, + 19014.23295545679, + 19212.72896177778, + 19417.090844641967, + 19627.31860404938, + 19843.412239999994, + 15038.473999999997, + 15043.16160493827, + 15053.715086419752, + 15070.134444444444, + 15092.419679012344, + 15120.570790123456, + 15154.587777777777, + 15194.47064197531, + 15240.219382716048, + 15291.834, + 15349.314493827163, + 15412.66086419753, + 15481.873111111108, + 15556.9512345679, + 15637.895234567899, + 15724.70511111111, + 15817.38086419753, + 15915.922493827158, + 16020.329999999998, + 16130.60338271605, + 16246.74264197531, + 16368.747777777777, + 16496.61879012345, + 16630.355679012344, + 16769.95844444444, + 16915.427086419757, + 17066.761604938267, + 17223.961999999996, + 17387.028271604937, + 17555.960419753086, + 17730.758444444444, + 17911.422345679013, + 18097.952123456787, + 18290.34777777778, + 18488.609308641975, + 18692.73671604938, + 18902.73, + 15785.172399999998, + 15795.99760493827, + 15812.688686419753, + 15835.245644444445, + 15863.668479012344, + 15897.95719012346, + 15938.111777777778, + 15984.132241975307, + 16036.01858271605, + 16093.770800000002, + 16157.388893827165, + 16226.872864197529, + 16302.22271111111, + 16383.4384345679, + 16470.520034567897, + 16563.46751111111, + 16662.28086419753, + 16766.960093827158, + 16877.5052, + 16993.916182716053, + 17116.193041975304, + 17244.33577777778, + 17378.34439012346, + 17518.218879012344, + 17663.959244444442, + 17815.56548641975, + 17973.03760493827, + 18136.375599999996, + 18305.57947160494, + 18480.64921975309, + 18661.584844444442, + 18848.38634567901, + 19041.053723456793, + 19239.58697777778, + 19443.986108641973, + 19654.251116049385, + 19870.381999999994, + 15060.516079999998, + 15065.135204938273, + 15075.620206419753, + 15091.971084444442, + 15114.187839012344, + 15142.270470123454, + 15176.218977777775, + 15216.033361975307, + 15261.71362271605, + 15313.25976, + 15370.671773827162, + 15433.949664197527, + 15503.093431111109, + 15578.103074567896, + 15658.9785945679, + 15745.719991111111, + 15838.327264197533, + 15936.80041382716, + 16041.139439999999, + 16151.344342716051, + 16267.415121975311, + 16389.351777777774, + 16517.15431012346, + 16650.822719012347, + 16790.357004444446, + 16935.75716641976, + 17087.02320493827, + 17244.15512, + 17407.15291160494, + 17576.016579753086, + 17750.746124444442, + 17931.34154567901, + 18117.80284345679, + 18310.130017777785, + 18508.323068641974, + 18712.381996049386, + 18922.306799999995, + 15810.623032, + 15821.485484938272, + 15838.21381441975, + 15860.808020444443, + 15889.268103012342, + 15923.59406212346, + 15963.78589777778, + 16009.843609975309, + 16061.767198716052, + 16119.556664000002, + 16183.212005827161, + 16252.733224197531, + 16328.12031911111, + 16409.3732905679, + 16496.492138567897, + 16589.476863111107, + 16688.32746419753, + 16793.04394182716, + 16903.626296, + 17020.07452671605, + 17142.388633975308, + 17270.568617777775, + 17404.614478123458, + 17544.52621501234, + 17690.30382844444, + 17841.947318419756, + 17999.45668493827, + 18162.831927999996, + 18332.07304760494, + 18507.180043753084, + 18688.152916444444, + 18874.991665679016, + 19067.696291456792, + 19266.26679377778, + 19470.703172641974, + 19681.00542804938, + 19897.173559999996, + 15082.379959999998, + 15086.930604938272, + 15097.347126419754, + 15113.629524444446, + 15135.777799012345, + 15163.791950123457, + 15197.671977777776, + 15237.417881975309, + 15283.02966271605, + 15334.507320000002, + 15391.850853827164, + 15455.060264197531, + 15524.135551111109, + 15599.0767145679, + 15679.883754567902, + 15766.556671111113, + 15859.095464197531, + 15957.500133827163, + 16061.770679999998, + 16171.907102716052, + 16287.909401975308, + 16409.77757777778, + 16537.51163012346, + 16671.111559012345, + 16810.577364444445, + 16955.90904641975, + 17107.10660493827, + 17264.17004, + 17427.09935160494, + 17595.894539753088, + 17770.555604444442, + 17951.082545679015, + 18137.47536345679, + 18329.73405777778, + 18527.858628641978, + 18731.84907604938, + 18941.705399999995, + 15835.895463999996, + 15846.79516493827, + 15863.56074241975, + 15886.192196444443, + 15914.689527012342, + 15949.052734123457, + 15989.281817777775, + 16035.376777975309, + 16087.337614716049, + 16145.164328, + 16208.85691782716, + 16278.41538419753, + 16353.839727111108, + 16435.129946567897, + 16522.2860425679, + 16615.30801511111, + 16714.195864197533, + 16818.94958982716, + 16929.569192, + 17046.05467071605, + 17168.406025975306, + 17296.623257777774, + 17430.70636612346, + 17570.655351012345, + 17716.47021244444, + 17868.15095041975, + 18025.69756493827, + 18189.110056, + 18358.388423604934, + 18533.532667753087, + 18714.54278844444, + 18901.418785679012, + 19094.16065945679, + 19292.76840977778, + 19497.242036641976, + 19707.581540049378, + 19923.786919999995, + 15104.06564, + 15108.547804938273, + 15118.895846419755, + 15135.109764444445, + 15157.189559012346, + 15185.135230123458, + 15218.946777777779, + 15258.62420197531, + 15304.167502716049, + 15355.576680000002, + 15412.851733827165, + 15475.99266419753, + 15544.999471111112, + 15619.8721545679, + 15700.610714567902, + 15787.215151111113, + 15879.685464197531, + 15978.021653827162, + 16082.223720000002, + 16192.291662716048, + 16308.225481975309, + 16430.025177777778, + 16557.69075012346, + 16691.222199012343, + 16830.619524444443, + 16975.882726419753, + 17127.011804938273, + 17284.006759999997, + 17446.867591604943, + 17615.594299753084, + 17790.18688444444, + 17970.64534567902, + 18156.969683456795, + 18349.159897777783, + 18547.215988641976, + 18751.137956049384, + 18960.925799999997, + 15860.989695999999, + 15871.92664493827, + 15888.729470419752, + 15911.398172444442, + 15939.932751012344, + 15974.333206123458, + 16014.599537777773, + 16060.731745975303, + 16112.729830716049, + 16170.593792000001, + 16234.323629827159, + 16303.919344197528, + 16379.380935111109, + 16460.7084025679, + 16547.901746567895, + 16640.960967111107, + 16739.88606419753, + 16844.677037827158, + 16955.333887999997, + 17071.856614716045, + 17194.245217975305, + 17322.499697777774, + 17456.620054123454, + 17596.606287012342, + 17742.45839644444, + 17894.17638241975, + 18051.76024493827, + 18215.209983999997, + 18384.525599604935, + 18559.70709175308, + 18740.754460444437, + 18927.667705679014, + 19120.446827456788, + 19319.091825777774, + 19523.60270064196, + 19733.979452049378, + 19950.222079999996, + 15125.573119999997, + 15129.986804938273, + 15140.266366419755, + 15156.411804444446, + 15178.423119012346, + 15206.300310123459, + 15240.04337777778, + 15279.65232197531, + 15325.12714271605, + 15376.467840000003, + 15433.674413827164, + 15496.746864197532, + 15565.685191111113, + 15640.489394567901, + 15721.159474567903, + 15807.695431111113, + 15900.097264197531, + 15998.364973827162, + 16102.49856, + 16212.498022716054, + 16328.363361975309, + 16450.094577777774, + 16577.69167012346, + 16711.154639012348, + 16850.483484444445, + 16995.678206419758, + 17146.73880493827, + 17303.665279999997, + 17466.45763160494, + 17635.11585975309, + 17809.639964444446, + 17990.029945679016, + 18176.285803456794, + 18368.40753777778, + 18566.395148641976, + 18770.248636049386, + 18979.968, + 15885.905727999998, + 15896.879924938268, + 15913.719998419752, + 15936.425948444443, + 15964.997775012343, + 15999.435478123458, + 16039.739057777777, + 16085.908513975308, + 16137.943846716053, + 16195.845056, + 16259.612141827161, + 16329.245104197533, + 16404.743943111112, + 16486.108658567897, + 16573.339250567897, + 16666.43571911111, + 16765.39806419753, + 16870.226285827157, + 16980.920384, + 17097.480358716053, + 17219.906209975306, + 17348.197937777775, + 17482.355542123456, + 17622.379023012345, + 17768.268380444446, + 17920.023614419755, + 18077.64472493827, + 18241.131712000002, + 18410.48457560494, + 18585.703315753086, + 18766.787932444444, + 18953.738425679014, + 19146.554795456792, + 19345.23704177778, + 19549.785164641973, + 19760.199164049383, + 19976.47904, + 15146.902399999999, + 15151.247604938271, + 15161.458686419754, + 15177.535644444444, + 15199.478479012345, + 15227.287190123458, + 15260.961777777778, + 15300.50224197531, + 15345.908582716049, + 15397.1808, + 15454.318893827163, + 15517.32286419753, + 15586.19271111111, + 15660.9284345679, + 15741.5300345679, + 15827.997511111113, + 15920.330864197529, + 16018.530093827163, + 16122.5952, + 16232.52618271605, + 16348.323041975313, + 16469.98577777778, + 16597.514390123462, + 16730.908879012346, + 16870.16924444445, + 17015.29548641976, + 17166.287604938272, + 17323.1456, + 17485.86947160494, + 17654.459219753087, + 17828.914844444444, + 18009.236345679015, + 18195.42372345679, + 18387.476977777784, + 18585.396108641977, + 18789.18111604938, + 18998.831999999995, + 15910.643559999995, + 15921.655004938268, + 15938.53232641975, + 15961.275524444442, + 15989.884599012343, + 16024.359550123456, + 16064.700377777779, + 16110.907081975309, + 16162.979662716047, + 16220.918119999997, + 16284.722453827164, + 16354.39266419753, + 16429.92875111111, + 16511.3307145679, + 16598.5985545679, + 16691.732271111112, + 16790.73186419753, + 16895.597333827158, + 17006.32868, + 17122.925902716048, + 17245.389001975305, + 17373.717977777775, + 17507.91283012346, + 17647.973559012342, + 17793.900164444443, + 17945.69264641975, + 18103.351004938268, + 18266.875239999998, + 18436.26535160494, + 18611.521339753086, + 18792.643204444437, + 18979.63094567901, + 19172.484563456786, + 19371.204057777784, + 19575.789428641976, + 19786.240676049376, + 20002.5578, + 15168.053479999997, + 15172.330204938271, + 15182.472806419755, + 15198.481284444446, + 15220.355639012347, + 15248.09587012346, + 15281.701977777777, + 15321.173961975312, + 15366.511822716051, + 15417.71556, + 15474.785173827167, + 15537.720664197535, + 15606.52203111111, + 15681.189274567902, + 15761.722394567902, + 15848.12139111111, + 15940.386264197532, + 16038.51701382716, + 16142.513639999997, + 16252.376142716048, + 16368.104521975312, + 16489.69877777778, + 16617.158910123457, + 16750.484919012342, + 16889.676804444443, + 17034.734566419756, + 17185.65820493827, + 17342.44772, + 17505.103111604938, + 17673.624379753088, + 17848.011524444446, + 18028.264545679016, + 18214.38344345679, + 18406.36821777778, + 18604.218868641976, + 18807.935396049383, + 19017.5178, + 15935.203191999997, + 15946.251884938272, + 15963.166454419752, + 15985.946900444444, + 16014.593223012344, + 16049.105422123457, + 16089.483497777774, + 16135.72744997531, + 16187.83727871605, + 16245.812984, + 16309.654565827163, + 16379.362024197533, + 16454.935359111107, + 16536.374570567896, + 16623.679658567897, + 16716.850623111106, + 16815.88746419753, + 16920.790181827157, + 17031.558775999998, + 17148.193246716048, + 17270.693593975306, + 17399.059817777776, + 17533.291918123457, + 17673.38989501234, + 17819.353748444442, + 17971.183478419753, + 18128.879084938264, + 18292.440567999998, + 18461.867927604937, + 18637.16116375308, + 18818.32027644444, + 19005.345265679014, + 19198.236131456786, + 19396.99287377778, + 19601.615492641973, + 19812.10398804938, + 20028.458359999993, + 15189.02636, + 15193.23460493827, + 15203.308726419757, + 15219.248724444446, + 15241.054599012348, + 15268.726350123457, + 15302.263977777779, + 15341.66748197531, + 15386.936862716051, + 15438.072120000003, + 15495.073253827164, + 15557.940264197532, + 15626.673151111112, + 15701.2719145679, + 15781.7365545679, + 15868.067071111112, + 15960.263464197533, + 16058.325733827161, + 16162.253879999998, + 16272.04790271605, + 16387.70780197531, + 16509.233577777777, + 16636.62523012346, + 16769.882759012347, + 16909.006164444447, + 17053.995446419754, + 17204.850604938274, + 17361.57164, + 17524.158551604938, + 17692.611339753086, + 17866.930004444443, + 18047.11454567901, + 18233.16496345679, + 18425.08125777778, + 18622.863428641976, + 18826.511476049378, + 19036.025399999995, + 15959.584623999997, + 15970.67056493827, + 15987.622382419753, + 16010.440076444444, + 16039.123647012342, + 16073.67309412346, + 16114.088417777775, + 16160.36961797531, + 16212.51669471605, + 16270.529648, + 16334.40847782716, + 16404.153184197534, + 16479.763767111108, + 16561.240226567897, + 16648.5825625679, + 16741.79077511111, + 16840.86486419753, + 16945.804829827157, + 17056.610672000003, + 17173.28239071605, + 17295.819985975308, + 17424.223457777774, + 17558.492806123457, + 17698.628031012347, + 17844.629132444446, + 17996.496110419757, + 18154.22896493827, + 18317.827695999997, + 18487.29230360494, + 18662.622787753087, + 18843.819148444443, + 19030.88138567902, + 19223.80949945679, + 19422.603489777783, + 19627.263356641975, + 19837.789100049384, + 20054.18072, + 15209.821039999999, + 15213.960804938271, + 15223.966446419758, + 15239.837964444449, + 15261.575359012348, + 15289.17863012346, + 15322.647777777778, + 15361.982801975313, + 15407.18370271605, + 15458.250480000004, + 15515.183133827166, + 15577.981664197534, + 15646.646071111112, + 15721.1763545679, + 15801.572514567906, + 15887.834551111115, + 15979.962464197533, + 16077.95625382716, + 16181.815920000001, + 16291.541462716052, + 16407.13288197531, + 16528.59017777778, + 16655.913350123457, + 16789.102399012347, + 16928.157324444444, + 17073.078126419758, + 17223.864804938275, + 17380.517359999998, + 17543.035791604943, + 17711.42009975309, + 17885.670284444444, + 18065.786345679015, + 18251.768283456793, + 18443.616097777784, + 18641.32978864198, + 18844.909356049386, + 19054.354799999997, + 15983.787855999999, + 15994.911044938272, + 16011.900110419756, + 16034.755052444445, + 16063.475871012344, + 16098.062566123459, + 16138.515137777777, + 16184.833585975304, + 16237.017910716051, + 16295.068111999999, + 16358.984189827159, + 16428.766144197532, + 16504.41397511111, + 16585.927682567897, + 16673.3072665679, + 16766.552727111113, + 16865.664064197532, + 16970.64127782716, + 17081.484368, + 17198.19333471605, + 17320.768177975307, + 17449.208897777775, + 17583.515494123458, + 17723.68796701234, + 17869.72631644444, + 18021.630542419753, + 18179.400644938272, + 18343.036624, + 18512.538479604933, + 18687.906211753085, + 18869.13982044444, + 19056.239305679013, + 19249.20466745679, + 19448.035905777782, + 19652.733020641976, + 19863.29601204938, + 20079.724879999998, + 15230.437519999998, + 15234.508804938268, + 15244.445966419751, + 15260.249004444444, + 15281.917919012343, + 15309.452710123456, + 15342.853377777777, + 15382.119921975307, + 15427.252342716049, + 15478.250639999998, + 15535.114813827162, + 15597.844864197528, + 15666.440791111108, + 15740.902594567897, + 15821.2302745679, + 15907.423831111108, + 15999.483264197532, + 16097.40857382716, + 16201.199760000001, + 16310.856822716047, + 16426.37976197531, + 16547.768577777777, + 16675.023270123456, + 16808.143839012344, + 16947.13028444444, + 17091.982606419755, + 17242.700804938275, + 17399.284879999996, + 17561.734831604936, + 17730.050659753084, + 17904.23236444444, + 18084.279945679016, + 18270.193403456793, + 18461.972737777778, + 18659.61794864197, + 18863.129036049384, + 19072.505999999994, + 16007.812887999997, + 16018.97332493827, + 16035.99963841975, + 16058.89182844444, + 16087.649895012344, + 16122.273838123456, + 16162.763657777778, + 16209.119353975308, + 16261.340926716048, + 16319.428376000002, + 16383.381701827162, + 16453.200904197525, + 16528.885983111108, + 16610.4369385679, + 16697.8537705679, + 16791.13647911111, + 16890.28506419753, + 16995.29952582716, + 17106.179863999998, + 17222.92607871605, + 17345.538169975305, + 17474.016137777773, + 17608.359982123457, + 17748.569703012345, + 17894.645300444445, + 18046.58677441975, + 18204.39412493827, + 18368.067352, + 18537.60645560494, + 18713.01143575308, + 18894.28229244444, + 19081.41902567901, + 19274.421635456787, + 19473.290121777783, + 19678.024484641974, + 19888.624724049383, + 20105.090840000004, + 15250.875799999996, + 15254.878604938269, + 15264.74728641975, + 15280.481844444443, + 15302.082279012342, + 15329.548590123453, + 15362.880777777775, + 15402.078841975306, + 15447.142782716046, + 15498.072599999998, + 15554.868293827163, + 15617.52986419753, + 15686.057311111106, + 15760.450634567898, + 15840.709834567899, + 15926.834911111107, + 16018.825864197532, + 16116.682693827162, + 16220.405399999998, + 16329.993982716047, + 16445.44844197531, + 16566.768777777776, + 16693.954990123457, + 16827.007079012346, + 16965.92504444444, + 17110.708886419754, + 17261.35860493827, + 17417.8742, + 17580.255671604933, + 17748.503019753083, + 17922.61624444444, + 18102.595345679012, + 18288.44032345679, + 18480.151177777778, + 18677.727908641973, + 18881.170516049384, + 19090.478999999996, + 16031.659719999996, + 16042.857404938268, + 16059.920966419753, + 16082.85040444444, + 16111.645719012344, + 16146.306910123456, + 16186.83397777778, + 16233.226921975309, + 16285.485742716048, + 16343.610439999999, + 16407.60101382716, + 16477.45746419753, + 16553.179791111106, + 16634.767994567897, + 16722.2220745679, + 16815.54203111111, + 16914.72786419753, + 17019.77957382716, + 17130.697159999996, + 17247.480622716048, + 17370.129961975304, + 17498.645177777773, + 17633.026270123457, + 17773.273239012346, + 17919.386084444446, + 18071.364806419755, + 18229.20940493827, + 18392.919879999994, + 18562.496231604935, + 18737.93845975308, + 18919.24656444444, + 19106.420545679015, + 19299.460403456786, + 19498.366137777783, + 19703.137748641973, + 19913.77523604938, + 20130.278599999994, + 15271.13588, + 15275.07020493827, + 15284.870406419752, + 15300.536484444445, + 15322.068439012344, + 15349.466270123457, + 15382.729977777779, + 15421.859561975309, + 15466.85502271605, + 15517.716360000002, + 15574.443573827164, + 15637.03666419753, + 15705.495631111107, + 15779.8204745679, + 15860.011194567902, + 15946.067791111114, + 16037.990264197531, + 16135.77861382716, + 16239.43284, + 16348.95294271605, + 16464.33892197531, + 16585.59077777778, + 16712.70851012346, + 16845.692119012343, + 16984.541604444443, + 17129.256966419754, + 17279.838204938267, + 17436.285319999995, + 17598.59831160494, + 17766.777179753084, + 17940.82192444444, + 18120.732545679013, + 18306.50904345679, + 18498.151417777775, + 18695.659668641976, + 18899.03379604938, + 19108.27379999999, + 16055.328352, + 16066.56328493827, + 16083.664094419753, + 16106.63078044444, + 16135.463343012343, + 16170.161782123458, + 16210.726097777777, + 16257.156289975306, + 16309.452358716047, + 16367.614304, + 16431.642125827162, + 16501.53582419753, + 16577.295399111106, + 16658.920850567898, + 16746.4121785679, + 16839.76938311111, + 16938.992464197534, + 17044.08142182716, + 17155.036256, + 17271.856966716052, + 17394.543553975305, + 17523.096017777774, + 17657.51435812346, + 17797.798575012344, + 17943.948668444442, + 18095.96463841975, + 18253.84648493827, + 18417.594208, + 18587.20780760494, + 18762.687283753086, + 18944.03263644444, + 19131.24386567902, + 19324.320971456786, + 19523.263953777787, + 19728.072812641967, + 19938.74754804938, + 20155.288159999996, + 15273.376001791214, + 15277.30271783451, + 15287.095310421017, + 15302.75377955073, + 15324.278125223655, + 15351.668347439789, + 15384.924446199137, + 15424.04642150169, + 15469.034273347457, + 15519.888001736432, + 15576.607606668615, + 15639.193088144008, + 15707.64444616261, + 15781.961680724426, + 15862.144791829453, + 15948.193779477688, + 16040.108643669133, + 16137.889384403785, + 16241.536001681645, + 16351.048495502717, + 16466.426865867004, + 16587.671112774493, + 16714.7812362252, + 16847.757236219113, + 16986.59911275623, + 17131.306865836566, + 17281.88049546011, + 17438.32000162686, + 17600.62538433682, + 17768.796643589994, + 17942.833779386372, + 18122.73679172597, + 18308.505680608774, + 18500.140446034784, + 18697.641088004006, + 18901.007606516436, + 19110.240001572074, + 16057.947202094194, + 16069.186273702442, + 16086.291221853906, + 16109.262046548572, + 16138.098747786447, + 16172.801325567545, + 16213.369779891842, + 16259.804110759347, + 16312.104318170068, + 16370.270402123992, + 16434.302362621132, + 16504.20019966148, + 16579.96391324504, + 16661.5935033718, + 16749.088970041787, + 16842.450313254973, + 16941.677533011367, + 17046.770629310973, + 17157.729602153795, + 17274.55445153982, + 17397.245177469056, + 17525.8017799415, + 17660.224258957158, + 17800.51261451603, + 17946.666846618104, + 18098.68695526339, + 18256.572940451886, + 18420.32480218359, + 18589.942540458513, + 18765.426155276633, + 18946.775646637965, + 19133.991014542516, + 19327.07225899027, + 19526.019379981244, + 19730.832377515413, + 19941.511251592794, + 20158.05600221339, + 16135.246399999996, + 16127.60760493827, + 16125.834686419754, + 16129.927644444442, + 16139.886479012343, + 16155.711190123455, + 16177.401777777774, + 16204.958241975308, + 16238.380582716047, + 16277.668800000001, + 16322.822893827162, + 16373.842864197528, + 16430.728711111107, + 16493.480434567897, + 16562.098034567898, + 16636.58151111111, + 16716.93086419753, + 16803.14609382716, + 16895.227199999994, + 16993.174182716048, + 17096.987041975306, + 17206.665777777776, + 17322.210390123455, + 17443.620879012342, + 17570.89724444444, + 17704.03948641975, + 17843.04760493827, + 17987.921599999994, + 18138.661471604937, + 18295.26721975308, + 18457.738844444444, + 18626.076345679012, + 18800.279723456788, + 18980.34897777778, + 19166.284108641976, + 19358.08511604938, + 19555.751999999997, + 17495.484159999996, + 17513.01400493827, + 17536.409726419755, + 17565.67132444444, + 17600.79879901234, + 17641.792150123456, + 17688.651377777776, + 17741.376481975305, + 17799.967462716046, + 17864.42432, + 17934.74705382716, + 18010.935664197532, + 18092.990151111106, + 18180.9105145679, + 18274.6967545679, + 18374.34887111111, + 18479.866864197527, + 18591.25073382716, + 18708.50048, + 18831.61610271605, + 18960.597601975303, + 19095.444977777774, + 19236.15823012346, + 19382.737359012342, + 19535.182364444438, + 19693.49324641975, + 19857.67000493826, + 20027.712639999994, + 20203.621151604933, + 20385.39553975308, + 20573.03580444444, + 20766.541945679008, + 20965.913963456784, + 21171.15185777778, + 21382.25562864198, + 21599.22527604938, + 21822.060799999996 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/TamScalable_SP_2X.json b/examples/TamScalable_SP_2X.json new file mode 100644 index 0000000..256c382 --- /dev/null +++ b/examples/TamScalable_SP_2X.json @@ -0,0 +1,4241 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9583333333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.75, + 0.8333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 60000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 60000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 57228.60613612482, + 57254.65913292828, + 57279.25939357996, + 57302.328635345846, + 57323.73108955416, + 57343.27350159545, + 57360.70513092246, + 57375.71775105033, + 57387.9456495563, + 57396.965628080026, + 57402.29700232333, + 57403.40160205031, + 57399.68377108746, + 57390.490367323386, + 57375.110762709046, + 57352.77684325768, + 57322.66300904466, + 57283.88617420785, + 57235.50576694721, + 57176.52372952503, + 57105.884518265884, + 57022.475103556564, + 56925.12496984616, + 56812.60611564606, + 56683.6330535299, + 56536.862810133534, + 56370.894926155146, + 56184.2714563552, + 55975.47696955641, + 55742.938548643666, + 55485.025790564316, + 55200.050806327825, + 54886.26822100595, + 54541.87517373279, + 54165.01131770464, + 53753.7588201801, + 53306.14236248002, + 56870.446927802754, + 56952.63327932617, + 57031.10283415316, + 57105.797000242696, + 57176.599699616105, + 57243.33736835699, + 57305.77895661112, + 57363.63592858665, + 57416.56226255392, + 57464.15445084557, + 57505.95149985656, + 57541.43493004397, + 57570.02877592733, + 57591.0995860883, + 57603.956423170916, + 57607.850863881446, + 57601.97699898833, + 57585.47143332243, + 57557.41328577676, + 57516.824189306724, + 57462.66829092987, + 57393.85225172604, + 57309.225246837406, + 57207.57896546837, + 57087.647610885666, + 56948.10790041813, + 56787.57906545704, + 56604.62285145588, + 56397.74351793039, + 56165.387838458584, + 55905.94510068077, + 55617.74710629947, + 55299.06817107958, + 54948.12512484813, + 54563.07731149451, + 54142.02658897039, + 53683.0173292896, + 57302.74937158344, + 57328.41529408414, + 57352.648846014294, + 57375.371327419925, + 57396.44655240928, + 57415.68084915294, + 57432.82305988368, + 57447.56454089661, + 57459.53916254907, + 57468.32330926067, + 57473.43587951329, + 57474.338285851074, + 57470.43445488049, + 57461.070827270225, + 57445.53635775121, + 57423.06251511672, + 57392.8232822222, + 57353.935155985455, + 57305.45714738656, + 57246.390781467744, + 57175.68009733364, + 57092.21164815109, + 56994.81450114919, + 56882.26023761933, + 56753.26295291518, + 56606.47925645264, + 56440.508271709936, + 56253.89163622748, + 56045.11350160805, + 55812.600533516605, + 55554.72191168046, + 55269.78932988909, + 54956.05699599437, + 54611.72163191029, + 54234.92247361327, + 53823.74127114192, + 53376.20228859707, + 56940.81357084455, + 57022.608799574395, + 57100.70368626061, + 57175.0391024105, + 57245.498433593704, + 57311.907579442064, + 57374.03495364971, + 57431.59148397306, + 57484.2306122308, + 57531.54829430385, + 57573.08300013545, + 57608.315713731026, + 57636.66993315837, + 57657.51167054751, + 57670.14945209069, + 57673.83431804255, + 57667.75982271982, + 57651.06203450164, + 57622.819535829396, + 57582.05342320666, + 57527.72730719938, + 57458.747312435735, + 57373.962077606135, + 57272.1627554633, + 57152.08301282224, + 57012.39903056013, + 56851.72950361656, + 56668.63564099327, + 56461.621165754375, + 56229.13231502609, + 55969.55783999709, + 55681.229005918256, + 55362.41959210268, + 55011.34589192572, + 54626.16671282511, + 54204.983376300785, + 53745.83971791493, + 57972.00201429751, + 57994.17557509404, + 58015.100772107675, + 58034.69515040465, + 58052.81876911349, + 58069.27420142487, + 58083.80653459189, + 58096.10336992982, + 58105.79482281623, + 58112.453522690994, + 58115.59461305614, + 58114.67575147606, + 58109.09710957743, + 58098.201373049174, + 58081.27374164241, + 58057.54192917066, + 58026.17616350956, + 57986.28918659716, + 57936.93625443371, + 57877.11513708171, + 57805.76611866595, + 57721.771997373544, + 57623.95808545374, + 57511.092209218215, + 57381.884709040816, + 57234.9884393577, + 57068.99876866725, + 56882.45357953014, + 56673.83326856932, + 56441.56074647004, + 56184.00143797976, + 55899.4632819082, + 55586.196731127435, + 55242.394752571716, + 54866.19282723765, + 54455.668950184045, + 54008.843630532, + 57576.17080403934, + 57654.43994339766, + 57729.157491919555, + 57800.25949304707, + 57867.624504284526, + 57931.07359719853, + 57990.37035741794, + 58045.220884633876, + 58095.27379259972, + 58140.120209131164, + 58179.29377610616, + 58212.270649464874, + 58238.469499209765, + 58257.25150940562, + 58267.92037817944, + 58269.72231772055, + 58261.846054280395, + 58243.422828172865, + 58213.52639377403, + 58171.173019522284, + 58115.32148791818, + 58044.87309552467, + 57958.67165296689, + 57855.50348493228, + 57734.09743017058, + 57593.12484149372, + 57431.19958577592, + 57246.87804395374, + 57038.65911102595, + 56804.984196053556, + 56544.23722215992, + 56254.744626530606, + 55934.775360413485, + 55582.540889118645, + 55196.195192018524, + 54773.83476254776, + 54313.49860820328, + 58644.782411489796, + 58663.44802762103, + 58681.0505765586, + 58697.50384838895, + 58712.66414726079, + 58726.330291385064, + 58738.243613035054, + 58748.08795854625, + 58755.48968831648, + 58760.01767680575, + 58761.1833125364, + 58758.440498092976, + 58751.18565012239, + 58738.75769933377, + 58720.438090498494, + 58695.450782450236, + 58662.96224808491, + 58622.08147436074, + 58571.85996229819, + 58511.29172698003, + 58439.313297551234, + 58354.8037172191, + 58256.584543253164, + 58143.41984698526, + 58014.01621380951, + 57867.02274318218, + 57701.03104862197, + 57514.575257709745, + 57306.13201208868, + 57074.120467464214, + 56816.90229360403, + 56532.78167433812, + 56220.00530755869, + 55876.76240522025, + 55501.18469333964, + 55091.346411995844, + 54645.26431533021, + 58215.22767930882, + 58289.960069529676, + 58361.29080691879, + 58429.15110685286, + 58493.41469877097, + 58553.89782617442, + 58610.35924662679, + 58662.50023175398, + 58709.96456724406, + 58752.33855284741, + 58789.15100237673, + 58819.873243706956, + 58843.9191187752, + 58860.64498358101, + 58869.34970818611, + 58869.27467671454, + 58859.60378735247, + 58839.46345234852, + 58807.922598013494, + 58763.992664720434, + 58706.62760690476, + 58634.723893064016, + 58547.12050575813, + 58442.598941609256, + 58319.88321130186, + 58177.63983958255, + 58014.47786526032, + 57828.948841206446, + 57619.54683435439, + 57384.708425699966, + 57122.81271030115, + 56832.181297278294, + 56511.07830981395, + 56157.71038515301, + 55770.226674602585, + 55346.718843532, + 54885.22107137295, + 59321.08106873396, + 59336.22324875671, + 59350.48894797658, + 59363.78820150021, + 59375.97355849654, + 59386.84008219678, + 59396.12534989436, + 59403.509452945036, + 59408.61499676678, + 59411.00710083991, + 59410.19339870693, + 59405.62403797261, + 59396.69168030408, + 59382.73150143068, + 59363.02119114399, + 59336.780953297945, + 59303.173505808634, + 59261.30408065455, + 59210.22042387634, + 59148.91279557692, + 59076.31396992161, + 58991.29923513786, + 58892.68639351542, + 58779.23576140635, + 58649.65016922497, + 58502.574961447826, + 58336.59799661375, + 58150.24964732391, + 57942.0028002416, + 57710.27285609253, + 57453.41772966463, + 57169.73784980803, + 56857.47615943527, + 56514.81811552097, + 56139.89168910219, + 55730.767365278225, + 55285.458143210526, + 58857.9787203644, + 58929.163860622386, + 58997.09847285066, + 59061.70894436072, + 59122.86417652628, + 59180.37558478346, + 59233.99709863048, + 59283.425161628016, + 59328.298731398856, + 59368.19927962808, + 59402.65079206312, + 59431.1197685136, + 59453.0152228515, + 59467.68868301095, + 59474.43419098841, + 59472.488302842656, + 59461.030088694635, + 59439.18113272766, + 59406.005533187235, + 59360.50990238113, + 59301.643366679484, + 59228.297566514644, + 59139.306656381166, + 59033.447304835965, + 58909.43869449818, + 58765.94252204924, + 58601.56299823283, + 58414.84684785491, + 58204.283309783685, + 57968.304136949664, + 57705.283596345624, + 57413.53846902658, + 57091.32805010985, + 56736.85414877498, + 56348.26108826383, + 55923.63570588056, + 55461.00735299144, + 60000.88832116485, + 60012.49166515383, + 60023.40640453227, + 60033.53881942705, + 60042.737704027306, + 60050.79436658446, + 60057.44262941218, + 60062.35882888643, + 60065.161815445375, + 60065.41295358959, + 60062.616121881765, + 60056.21771294689, + 60045.60663347235, + 60030.11430420765, + 60009.01465996463, + 59981.52414961741, + 59946.80173610231, + 59903.948896418035, + 59852.009621625446, + 59789.97041684769, + 59716.760301270275, + 59631.250808140925, + 59532.255984769574, + 59418.532392528454, + 59288.77910685216, + 59141.63771723743, + 58975.692327243334, + 58789.469554491225, + 58581.438530664636, + 58350.01090150953, + 58093.54082683397, + 57810.32498050836, + 57498.60255046542, + 57156.555238700035, + 56782.30726126948, + 56373.92534829319, + 55929.41874395294, + 59504.41828047873, + 59572.04582888881, + 59636.57516086869, + 59697.92783566453, + 59755.96792658486, + 59810.50202100044, + 59861.27922034424, + 59907.99114011163, + 59950.27190986019, + 59987.69817320973, + 60019.78908784233, + 60046.006325502385, + 60065.75407199653, + 60078.37902719374, + 60083.170405025136, + 60079.359933484186, + 60066.12185462659, + 60042.57292457037, + 60007.77241349582, + 59960.72210564538, + 59900.36629932387, + 59825.591806898425, + 59735.227954798334, + 59628.04658351516, + 59502.76204760285, + 59358.031215677496, + 59192.45347041755, + 59004.57070856369, + 58792.867340918805, + 58555.77029234816, + 58291.649001779275, + 57998.81542220185, + 57675.52402066794, + 57319.97177829181, + 56930.29819025006, + 56504.585265781534, + 56040.857528187305, + 60684.19433347803, + 60692.24353302587, + 60699.793293957104, + 60706.746141418786, + 60712.94711462032, + 60718.183766833296, + 60722.186165391606, + 60724.62689169144, + 60725.12104119121, + 60723.22622341166, + 60718.442561935706, + 60710.21269440859, + 60697.92177253786, + 60680.89746209329, + 60658.4099429069, + 60629.67190887306, + 60593.83856794828, + 60550.00764215147, + 60497.21936756373, + 60434.45649432846, + 60360.64428665133, + 60274.65052280026, + 60175.285495105454, + 60061.30200995937, + 59931.39538781677, + 59784.20346319464, + 59618.30658467228, + 59432.22761489119, + 59224.43193055526, + 58993.32742243048, + 58737.264495345284, + 58454.536068190246, + 58143.37757391826, + 57801.96695954451, + 57428.4246861464, + 57020.81372886368, + 56577.13957689822, + 60154.540542485156, + 60218.60031610281, + 60279.71537168714, + 60337.80244041907, + 60392.72076754183, + 60444.27211236095, + 60492.20074824416, + 60536.19346262144, + 60575.879556985135, + 60610.830846889774, + 60640.56166195222, + 60664.52884585158, + 60682.131756329145, + 60692.71226518863, + 60695.554758295904, + 60689.88613557921, + 60674.87581102889, + 60649.63571269772, + 60613.22028270067, + 60564.626477215046, + 60502.79376648026, + 60426.60413479817, + 60334.88208053281, + 60226.39461611053, + 60099.85126801997, + 59953.9040768119, + 59787.1475970995, + 59598.11889755821, + 59385.29756092569, + 59147.105684001806, + 58881.90787764888, + 58588.01126679131, + 58263.66549041591, + 57907.06270157164, + 57516.337567369796, + 57089.56726898396, + 56624.77150165, + 60989.11314720909, + 60995.577282028054, + 61001.62649563112, + 61007.161643701445, + 61012.02609598435, + 61016.00573628746, + 61018.82896248062, + 61020.16668649603, + 61019.632334328075, + 61016.7818460335, + 61011.113675731205, + 61002.06879160243, + 60989.03067589068, + 60971.32532490178, + 60948.22124900366, + 60918.92947262672, + 60882.60353426346, + 60838.33948646878, + 60785.175895859764, + 60722.09384311578, + 60648.01692297851, + 60561.811244251854, + 60462.285429802025, + 60348.19061655744, + 60218.22045550887, + 60071.01111170928, + 59905.14126427393, + 59719.13210638037, + 59511.4473452684, + 59280.4932022401, + 59024.6184126598, + 58742.114225954116, + 58431.21440561193, + 58090.09522918436, + 57716.875488284844, + 57309.616488589105, + 56866.322049835035, + 60444.76598244372, + 60507.236294884846, + 60566.83051580161, + 60623.46322981711, + 60676.9915356168, + 60727.21504594833, + 60773.87588762157, + 60816.65870150877, + 60855.190642544454, + 60889.04137972526, + 60917.72309611025, + 60940.69048882067, + 60957.34076904011, + 60967.013662014404, + 60968.99140705157, + 60962.498757522, + 60946.7029808583, + 60920.713858555384, + 60883.58368617045, + 60834.307273322825, + 60771.82194369428, + 60695.007535028766, + 60602.686399132515, + 60493.62340187406, + 60366.525923184156, + 60220.04385705584, + 60052.76961154445, + 59863.238108767604, + 59649.926784905016, + 59411.255590198925, + 59145.58698895372, + 58851.22595953602, + 58526.419994374744, + 58169.35909996113, + 57778.17579684859, + 57350.94511965296, + 56885.68461705214, + 61370.98909993023, + 61375.46893814752, + 61379.63979354365, + 61383.40043628595, + 61386.59215060399, + 61388.99873478961, + 61390.346501196895, + 61390.30427624227, + 61388.48340040436, + 61384.437728224126, + 61377.6636283047, + 61367.59998331154, + 61353.628189972405, + 61335.07215907729, + 61311.19831547845, + 61281.21559809041, + 61244.27545988998, + 61199.47186791625, + 61145.84130327052, + 61082.36276111643, + 61007.95775067983, + 60921.490295248936, + 60821.766932174076, + 60707.536712868015, + 60577.49120280564, + 60430.26448152422, + 60264.43314262325, + 60078.51629376445, + 59870.9755566719, + 59640.21506713187, + 59384.58147499296, + 59102.36394416595, + 58791.79415262401, + 58451.04629240247, + 58078.23706959901, + 57671.42570437355, + 57228.61393094821, + 60808.33951877825, + 60868.82149359934, + 60926.51343558142, + 60981.32724784018, + 61033.117347553554, + 61081.68066596182, + 61126.75664836737, + 61168.02725413499, + 61205.11695669169, + 61237.59274352678, + 61264.96411619178, + 61286.68309030053, + 61302.14419552912, + 61310.68447561589, + 61311.5834883615, + 61304.063305628886, + 61287.28851334312, + 61260.366211491724, + 61222.34601412434, + 61172.220049353, + 61108.92295935194, + 61031.33190035767, + 60938.266542668935, + 60828.48907064681, + 60700.704182714675, + 60553.559091358016, + 60385.64352312475, + 60195.489718625024, + 59981.57243253118, + 59742.30893357795, + 59476.059004562245, + 59181.12494234323, + 58855.7515578424, + 58498.12617604353, + 58106.37863599259, + 57678.58129079791, + 57212.749007629965, + 62061.26244433901, + 62062.15779585421, + 62062.93591014531, + 62063.49180239985, + 62063.66300186754, + 62063.229551860546, + 62061.91400975313, + 62059.381446981926, + 62055.239449045795, + 62049.03811550585, + 62040.2700599855, + 62028.370410170406, + 62012.71680780856, + 61992.62940871016, + 61967.37088274768, + 61936.14641385586, + 61898.103700031716, + 61852.33295333455, + 61797.86689988592, + 61733.680779869646, + 61658.69234753183, + 61571.76187118084, + 61471.69213318729, + 61357.22842998411, + 61227.05857206647, + 61079.81288399176, + 60914.06420437977, + 60728.327885912426, + 60521.061795333975, + 60290.66631345096, + 60035.484335132154, + 59753.801269308606, + 59443.84503897367, + 59103.7860811829, + 58731.73734705417, + 58325.754301767636, + 57883.83492456568, + 61465.80905131337, + 61522.703362274166, + 61576.96351238776, + 61628.49657670452, + 61677.152144337124, + 61722.72231846055, + 61764.941716311914, + 61803.48746919076, + 61837.97922245881, + 61867.97913554007, + 61892.991881920796, + 61912.46464914954, + 61925.78713883713, + 61932.29156665669, + 61931.25266234349, + 61921.887669695236, + 61903.35634657177, + 61874.7609648953, + 61835.146310650205, + 61783.499683883194, + 61718.750898703256, + 61639.77228328166, + 61545.37867985184, + 61434.32744470958, + 61305.31844821299, + 61156.99407478229, + 60987.93922290021, + 60796.681305111466, + 60581.69024802321, + 60341.37849230485, + 60074.10099268807, + 59778.155217966734, + 59451.7811509971, + 59093.16128869761, + 58700.42064204896, + 58271.62673609426, + 57804.78960993873, + 62755.004020083, + 62752.299851042524, + 62749.671480176556, + 62747.01016769283, + 62744.14968786137, + 62740.866329014396, + 62736.87889354648, + 62731.84869791447, + 62725.37957263746, + 62717.01786229676, + 62706.252425535975, + 62692.514635061, + 62675.17837764005, + 62653.56005410356, + 62626.918579344165, + 62594.45538231685, + 62555.31440603886, + 62508.582107589726, + 62453.28745811119, + 62388.401942807264, + 62312.83956094434, + 62225.456825850975, + 62125.052764917986, + 62010.368919598506, + 61880.08934540793, + 61732.840611923915, + 61567.191802786416, + 61381.65451569758, + 61174.68286242188, + 60944.673468786095, + 60689.965474679186, + 60408.84053405243, + 60099.522814919386, + 59760.17899935581, + 59388.91828349986, + 58983.79237755189, + 58542.795505774404, + 62126.942811606896, + 62180.23975258423, + 62231.05959150354, + 62279.304575349925, + 62324.81946517078, + 62367.391536075826, + 62406.75057723697, + 62442.568891888346, + 62474.46129732648, + 62501.98512491007, + 62524.640220060115, + 62541.86894225994, + 62553.05616505502, + 62557.529276053196, + 62554.55817692455, + 62543.35528340145, + 62523.07552527843, + 62492.81634641244, + 62451.61770472266, + 62398.46207219043, + 62332.27443485954, + 62251.922292835865, + 62156.215660287686, + 62043.90706544549, + 61913.69155060209, + 61764.2066721124, + 61594.03250039384, + 61401.69161992599, + 61185.6491292506, + 60944.31264097188, + 60676.03228175619, + 60379.100692332104, + 60051.753027490646, + 59692.166956084984, + 59298.46266103055, + 58868.702839305064, + 58400.89270194856, + 63452.2033101017, + 63445.88467816992, + 63439.83616961275, + 63433.94528965824, + 63428.04205759658, + 63421.899006780244, + 63415.231184624005, + 63407.69615260491, + 63398.89398626227, + 63388.36727519761, + 63375.60112307484, + 63360.02314761998, + 63341.003480621446, + 63317.854767929945, + 63289.83216945828, + 63256.13335918175, + 63215.89852513768, + 63168.21036942592, + 63112.09410820838, + 63046.517471709354, + 62970.390704215344, + 62882.5665640752, + 62781.84032369994, + 62666.949769562896, + 62536.575202199725, + 62389.33943620826, + 62223.80780024867, + 62038.48813704331, + 61831.83080337697, + 61602.2286700965, + 61348.017122111174, + 61067.474058392465, + 60758.81989197412, + 60420.21754995217, + 60049.77247348493, + 59645.53261779297, + 59205.48845215909, + 62791.7343007362, + 62841.42432454725, + 62888.795491886885, + 62933.74522167495, + 62976.11344689359, + 63015.68261458721, + 63052.17768586241, + 63085.26613588811, + 63114.557953895535, + 63139.60564317809, + 63159.90422109155, + 63174.89121905392, + 63183.94668254537, + 63186.39317110853, + 63181.49575834817, + 63168.46203193137, + 63146.44209358745, + 63114.52855910804, + 63071.75655834699, + 63017.10373522047, + 62949.49024770694, + 62867.778767847, + 62770.77448174363, + 62657.22508956208, + 62525.82080552987, + 62375.19435793666, + 62203.92098913456, + 62010.51845553788, + 61793.44702762314, + 61551.10948992919, + 61281.85114105716, + 60983.959793670416, + 60655.665774494584, + 60295.141924317584, + 59900.50359798962, + 59469.808664423166, + 59001.05750659288, + 64152.84962689568, + 64142.90168125479, + 64133.419473990296, + 64124.28675535036, + 64115.32978964544, + 64106.317355248226, + 64096.96074459373, + 64086.91376417921, + 64075.772734564125, + 64063.07649037034, + 64048.30638028185, + 64030.88626704496, + 64010.18252746833, + 63985.50405242281, + 63956.1022468415, + 63921.17102971983, + 63879.846834115444, + 63831.208607148335, + 63774.27781000064, + 63708.01841791687, + 63631.33692020379, + 63543.082320230365, + 63442.04613542794, + 63326.96239728999, + 63196.50765137244, + 63049.300957293315, + 62883.90388873301, + 62698.8205334341, + 62492.49749320151, + 62263.32388390246, + 62009.63133546631, + 61729.69399188481, + 61421.72851121192, + 61083.89406556391, + 60714.29234111923, + 60310.9675381187, + 59871.906370865436, + 63460.17684933959, + 63506.25056774199, + 63550.16486205705, + 63591.81232313933, + 63631.028055905685, + 63667.58967933524, + 63701.21732646927, + 63731.573644411525, + 63758.26379432791, + 63780.83545144653, + 63798.77880505788, + 63811.52655851465, + 63818.45392923187, + 63818.878648686834, + 63812.06096241895, + 63797.203630030104, + 63773.45192518431, + 63739.89363560799, + 63695.559063089655, + 63639.421023480136, + 63570.394846692696, + 63487.33837670271, + 63389.05197154781, + 63274.27850332795, + 63141.703358205385, + 62989.95443640455, + 62817.6021522123, + 62623.15943397753, + 62405.08172411158, + 62161.766979088025, + 61891.555669442765, + 61592.73077977378, + 61263.51780874149, + 60902.0847690685, + 60506.54218753972, + 60074.94310500246, + 59605.28307636602, + 64856.9321125264, + 64843.340093876584, + 64830.41071840645, + 64818.0239813844, + 64806.0023921411, + 64794.11097406947, + 64782.05726462468, + 64769.49131532427, + 64756.00569174788, + 64741.135473537615, + 64724.35825439766, + 64705.09414209459, + 64682.705758457225, + 64656.49823937664, + 64625.71923480618, + 64589.55890876147, + 64547.149939320356, + 64497.56751862309, + 64439.82935287201, + 64372.89566233182, + 64295.669181329526, + 64206.99515825433, + 64105.66135555771, + 63990.39804975349, + 63859.87803141769, + 63712.716605188645, + 63547.47158976682, + 63362.64331791519, + 63156.674636458825, + 62927.950906285114, + 62674.8000023437, + 62395.492313646486, + 62088.2407432677, + 61751.200708343815, + 61382.470140073514, + 60980.08948371781, + 60542.04169860003, + 64132.26361761633, + 64174.71180130819, + 64215.16118009421, + 64253.499516763666, + 64289.5570881681, + 64323.106685221384, + 64353.863612899535, + 64381.485690240974, + 64405.57325034637, + 64425.66914037859, + 64441.25872156277, + 64451.76986918636, + 64456.57297259915, + 64454.98093521308, + 64446.24917450235, + 64429.57562200356, + 64404.10072331542, + 64368.90743809907, + 64323.02124007778, + 64265.410117037136, + 64194.984570824985, + 64110.597617351596, + 64011.044786589206, + 63895.064122572534, + 63761.33618339857, + 63608.48404122645, + 63435.07328227777, + 63239.61200683617, + 63020.550829247666, + 62776.28287792062, + 62505.14379532554, + 62205.41173799519, + 61875.30737652481, + 61512.9938955716, + 61116.57699385527, + 60684.104884157794, + 60213.56829332322, + 65564.43973861629, + 65547.18897917565, + 65530.799057519536, + 65515.14621393659, + 65500.04920277771, + 65485.26929245596, + 65470.51026544682, + 65455.418418287976, + 65439.58256157936, + 65422.534019983206, + 65403.74663222398, + 65382.636751088416, + 65358.56324342561, + 65330.82749014685, + 65298.67338622565, + 65261.287340697905, + 65217.798276661655, + 65167.277631277335, + 65108.73935576754, + 65041.13991541718, + 64963.3782895735, + 64874.29597164586, + 64772.67696910607, + 64657.24780348802, + 64526.67751038806, + 64379.57763946466, + 64214.502254438594, + 64029.94793309299, + 63824.353767273125, + 63596.10136288665, + 63343.51483990343, + 63064.86083235553, + 62758.34848833744, + 62422.129470005835, + 62054.297953579575, + 61652.89062934003, + 61215.88670163051, + 64807.98759532666, + 64846.80117394658, + 64883.777753639515, + 64918.800269129526, + 64951.694169202856, + 64982.22741670811, + 65010.1104885561, + 65034.99637571985, + 65056.48058323479, + 65074.101130198505, + 65087.338549770924, + 65095.6158891742, + 65098.29870969278, + 65094.69508667335, + 65084.055609524876, + 65065.57338171866, + 65038.38402078812, + 65001.56565832913, + 64954.13893999969, + 64895.0670255201, + 64823.25558867299, + 64737.55281730321, + 64636.74941331786, + 64519.578592686325, + 64384.716085440356, + 64230.7801356738, + 64056.33150154287, + 63859.87345526607, + 63639.85178312408, + 63394.654785460014, + 63122.61327667907, + 62822.00058524879, + 62491.03255369902, + 62127.86753862183, + 61730.60641067161, + 61297.29255456493, + 60825.91186908074, + 66275.36130634879, + 66254.43722985333, + 66234.57347554881, + 66215.64252874412, + 66197.45938881031, + 66179.78156918076, + 66162.3090973511, + 66144.68451487923, + 66126.49287738532, + 66107.26175455182, + 66086.46123012339, + 66063.50390190704, + 66037.74488177199, + 66008.48179564983, + 65974.95478353424, + 65936.34649948134, + 65891.78211160941, + 65840.32930209908, + 65780.99826719316, + 65712.74171719684, + 65634.45487647747, + 65544.97548346473, + 65443.08379065056, + 65327.502564589144, + 65196.89708589699, + 65049.87514925281, + 64884.987063397624, + 64700.72565113473, + 64495.526249329625, + 64267.76670891022, + 64015.76739486652, + 63737.79118625089, + 63432.043476178, + 63096.67217182469, + 62729.76769443019, + 62329.36297929588, + 61893.43347578549, + 65487.341601791806, + 65522.511663918725, + 65556.007719895, + 65587.70787637941, + 65617.43275409294, + 65644.9454878189, + 65669.95172640277, + 65692.09963275239, + 65710.97988383789, + 65726.12567069156, + 65737.01269840804, + 65743.05918614422, + 65743.62586711926, + 65738.01598861463, + 65725.47531197396, + 65705.19211260327, + 65676.29717997074, + 65637.86381760695, + 65588.90784310461, + 65528.38758811876, + 65455.20389836674, + 65368.20013362816, + 65266.16216774482, + 65147.818388620806, + 65011.83969822258, + 64856.83951257877, + 64681.37376178035, + 64483.94088998046, + 64262.9818553945, + 64016.880130300335, + 63743.961701037944, + 63442.4950680095, + 63110.69124567962, + 62746.70376257509, + 62348.628661284994, + 61914.50449846072, + 61442.312344815844, + 66989.68544646828, + 66965.07356817192, + 66941.7227862745, + 66919.50183110511, + 66898.22194705506, + 66877.63689257788, + 66857.44294018944, + 66837.27887646786, + 66816.72600205353, + 66795.30813164913, + 66772.49159401954, + 66747.68523199193, + 66720.24040245583, + 66689.45097636293, + 66654.55333872722, + 66614.72638862503, + 66569.09153919481, + 66516.71271763743, + 66456.59636521597, + 66387.69143725571, + 66308.88940314432, + 66219.02424633168, + 66116.87246432995, + 66001.15306871347, + 65870.52758511905, + 65723.60005324557, + 65558.9170268543, + 65374.96757376869, + 65170.18327587456, + 64942.93822911987, + 64691.54904351505, + 64414.27484313256, + 64109.31726610727, + 63774.82046463631, + 63408.87110497903, + 63009.498367457156, + 62574.6739464545, + 66170.31828589394, + 66201.83607904734, + 66231.84404562383, + 66260.21546421693, + 66286.76612748235, + 66311.25434213813, + 66333.38092896449, + 66352.78922280399, + 66369.06507256144, + 66381.73684120392, + 66390.27540576072, + 66394.09415732355, + 66392.54900104622, + 66384.93835614492, + 66370.50315589798, + 66348.42684764626, + 66317.8353927926, + 66277.79726680223, + 66227.3234592027, + 66165.36747358371, + 66090.82532759737, + 66002.53555295792, + 65899.27919544198, + 65779.77981488834, + 65642.7034851982, + 65486.65879433484, + 65310.19684432399, + 65111.81125125351, + 64889.93814527356, + 64642.956170596735, + 64369.18648549764, + 64066.8927623133, + 63734.281187443, + 63369.500461348216, + 62970.6417985528, + 62535.73892764287, + 62062.7680912667, + 67707.40061928004, + 67679.08654595466, + 67652.23563303778, + 67626.7128558787, + 67602.32570388888, + 67578.82418054223, + 67555.90080337466, + 67533.19060398465, + 67510.2711280327, + 67486.66243524177, + 67461.82709939692, + 67435.17020834557, + 67406.03936399745, + 67373.72468232448, + 67337.45879336084, + 67296.41684120308, + 67249.7164840099, + 67196.41789400237, + 67135.52375746376, + 67065.97927473963, + 66986.6721602378, + 66896.43264242836, + 66794.03346384378, + 66678.18988107855, + 66547.55966478967, + 66400.74309969631, + 66236.28298457986, + 66052.66463228408, + 65848.31586971495, + 65621.60703784076, + 65370.85099169197, + 65094.30310036136, + 64790.16124700405, + 64456.56582883731, + 64091.59975714077, + 63693.288457256305, + 63259.59986858806, + 66856.91012607623, + 66884.76705671592, + 66911.27952714996, + 66936.31598790649, + 66959.68740357598, + 66981.14725281118, + 67000.39152832702, + 67017.05873690083, + 67030.72989937218, + 67040.92855064271, + 67047.1207396766, + 67048.71502950016, + 67045.06249720203, + 67035.45673393307, + 67019.13384490639, + 66995.27244939744, + 66962.9936807439, + 66921.36118634573, + 66869.38112766515, + 66806.00218022663, + 66730.11553361689, + 66640.55489148505, + 66536.09647154235, + 66415.45900556236, + 66277.30373938095, + 66120.23443289615, + 65942.79736006842, + 65743.48130892041, + 65520.71758153689, + 65272.87999406517, + 64998.28487671473, + 64695.19107375715, + 64361.799943526545, + 63996.25535841907, + 63596.643704893315, + 63160.99388347011, + 62687.27730873247, + 68428.4951146505, + 68396.46454458588, + 68366.10048874085, + 68337.26416748496, + 68309.7593152499, + 68283.33218052973, + 68257.67152588071, + 68232.40862792138, + 68207.11727733255, + 68181.31377885735, + 68154.45695130114, + 68125.94812753148, + 68095.13115447831, + 68061.29239313379, + 68023.66071855233, + 67981.40751985072, + 67933.64670020778, + 67879.43467686491, + 67817.77038112552, + 67747.59525835542, + 67667.79326798268, + 67577.19088349755, + 67474.55709245267, + 67358.60339646287, + 67227.98381120534, + 67081.29486641938, + 66917.07560590665, + 66733.80758753113, + 66529.91488321905, + 66303.76407895888, + 66053.66427480125, + 65777.86708485924, + 65474.56663730814, + 65141.899574385505, + 64777.94505239109, + 64380.724741687016, + 63948.20282669761, + 67547.1094303428, + 67571.29706386916, + 67594.30679035843, + 67616.00223227357, + 67636.18952613976, + 67654.6173225444, + 67670.97678613724, + 67684.90159563023, + 67695.96794379769, + 67703.69453747605, + 67707.54259756423, + 67706.91585902314, + 67701.1605708762, + 67689.56549620906, + 67671.36191216948, + 67645.72360996765, + 67611.76689487595, + 67568.55058622913, + 67515.07601742406, + 67450.28703591996, + 67373.07000323833, + 67282.25379496296, + 67176.60980073981, + 67054.85192427716, + 66915.63658334564, + 66757.562709778, + 66579.17174946943, + 66378.94766237725, + 66155.31692252103, + 65906.64851798274, + 65631.2539509066, + 65327.38723749896, + 64993.24490802858, + 64626.96600682646, + 64226.63209228576, + 63790.267236862106, + 63315.83802707328, + 69152.95705200687, + 69117.19577501067, + 69083.3056558468, + 69051.14415990488, + 69020.511266637, + 68991.1494695573, + 68962.74377624226, + 68934.92170833073, + 68907.25330152368, + 68879.25110558444, + 68850.37018433862, + 68820.00811567396, + 68787.50499154064, + 68752.14341795107, + 68713.14851497982, + 68669.68791676391, + 68620.87177150244, + 68565.75274145692, + 68503.32600295106, + 68432.52924637083, + 68352.24267616456, + 68261.28901084271, + 68158.43348297811, + 68042.38383920584, + 67911.79034022329, + 67765.24576078997, + 67601.28538972781, + 67418.38702992095, + 67214.97099831581, + 66989.4001259211, + 66739.97975780777, + 66464.95775310899, + 66162.5244850203, + 65830.81284079947, + 65467.898221766474, + 65071.7985433037, + 64640.47423485565, + 68240.90833625865, + 68261.41839701249, + 68280.9182906952, + 68299.2668117046, + 68316.26526850046, + 68331.65748360504, + 68345.12979360273, + 68356.31104914026, + 68364.77261492662, + 68370.02836973302, + 68371.534706393, + 68368.69053180238, + 68360.83726691912, + 68347.25884676362, + 68327.18172041845, + 68299.7748510285, + 68264.14971580089, + 68219.36030600495, + 68164.40312697244, + 68098.21719809723, + 68019.6840528356, + 67927.62773870598, + 67820.8148172891, + 67697.95436422796, + 67557.69796922796, + 67398.6397360565, + 67219.31628254348, + 67018.20674058102, + 66793.7327561234, + 66544.2584891873, + 66268.09061385161, + 65963.47831825748, + 65628.61330460836, + 65261.62978916996, + 64860.60450227024, + 64423.55668829944, + 63948.448105710086, + 69880.77438033743, + 69841.26827773529, + 69803.83926637971, + 69768.3410566806, + 69734.56987311014, + 69702.26445420277, + 69671.10605255523, + 69640.71843482647, + 69610.66788173775, + 69580.46318807262, + 69549.55566267684, + 69517.3391284585, + 69483.14992238785, + 69446.2668954976, + 69405.91141288253, + 69361.24735369986, + 69311.3811111689, + 69255.3615925714, + 69192.18021925126, + 69120.7709266147, + 69040.01016413022, + 68948.71689532854, + 68845.65259780275, + 68729.52126320802, + 68598.96939726204, + 68452.58601974453, + 68288.90266449765, + 68106.39337942572, + 67903.47472649539, + 67678.50578173561, + 67429.78813523748, + 67155.56589115447, + 66854.02566770231, + 66523.29659715894, + 66161.45032586466, + 65766.50101422191, + 65336.40533669558, + 68938.29881094994, + 68955.12318221238, + 68971.10631316724, + 68986.1021701469, + 68999.907233546, + 69012.26049782145, + 69022.84347149234, + 69031.28017714017, + 69037.13715140866, + 69039.92344500372, + 69039.0906226936, + 69034.03276330885, + 69024.08645974218, + 69008.53081894876, + 68986.58746194575, + 68957.42052381285, + 68920.13665369186, + 68873.78501478695, + 68817.35728436448, + 68749.78765375308, + 68669.95282834372, + 68576.67202758965, + 68468.70698500623, + 68344.76194817125, + 68203.48367872476, + 68043.46145236894, + 67863.22705886843, + 67661.25480204998, + 67435.96149980268, + 67185.70648407793, + 66908.79160088934, + 66603.46121031273, + 66267.90218648632, + 65900.24391761054, + 65498.55830594803, + 65060.85976782387, + 64585.1052336252, + 70611.93487819128, + 70568.66992282678, + 70527.68928192461, + 70488.84291091497, + 70451.92327929019, + 70416.66537060497, + 70382.7466824762, + 70349.78722658318, + 70317.3495286673, + 70284.93862853231, + 70252.00208004426, + 70217.92995113131, + 70182.05482378414, + 70143.6517940555, + 70101.93847206052, + 70056.07498197649, + 70005.16396204305, + 69948.25056456211, + 69884.32245589785, + 69812.30981647664, + 69731.08534078723, + 69639.46423738058, + 69536.2042288699, + 69420.0055519307, + 69289.5109573008, + 69143.30570978018, + 68979.91758823121, + 68797.8168855784, + 68595.41640880868, + 68371.07147897115, + 68123.07993117716, + 67849.68211460038, + 67549.06089247677, + 67219.3416421045, + 66858.59225484403, + 66464.82313611814, + 66035.98720541171, + 69639.27265110357, + 69652.40337509633, + 69664.86297234238, + 69676.50058110886, + 69687.10785372507, + 69696.41895658274, + 69704.11057013569, + 69709.80188890002, + 69713.05462145427, + 69713.37299043905, + 69710.20373255735, + 69702.93609857443, + 69690.90185331773, + 69673.37527567707, + 69649.57315860447, + 69618.65480911432, + 69579.72204828305, + 69531.81921124957, + 69473.93314721507, + 69404.9932194428, + 69323.87130525855, + 69229.38179605015, + 69120.28159726784, + 68995.27012842403, + 68852.98932309356, + 68692.0236289133, + 68510.90000758259, + 68308.08793486297, + 68081.99940057816, + 67830.9889086144, + 67553.35347691989, + 67247.3326375053, + 66911.10843644351, + 66542.80543386967, + 66140.4907039812, + 65702.17383503777, + 65225.806929361395, + 71346.42615367877, + 71299.3884099133, + 71254.84349362757, + 71212.63760527196, + 71172.559459359, + 71134.34028446366, + 71097.65382322304, + 71062.11633233655, + 71027.2865825659, + 70992.66585873504, + 70957.6979597302, + 70921.76919849984, + 70884.20840205476, + 70844.286911468, + 70801.21858187484, + 70754.15978247285, + 70702.20939652187, + 70644.40882134401, + 70579.74196832367, + 70507.13526290742, + 70425.45764460428, + 70333.52056698536, + 70230.07799768413, + 70113.8264183963, + 69983.40482487994, + 69837.39472695524, + 69674.32014850473, + 69492.6476274732, + 69290.78621586775, + 69067.08747975773, + 68819.84549927467, + 68547.29686861254, + 68247.62069602743, + 67918.93860383774, + 67559.31472842419, + 67166.75572022972, + 66739.21074375953, + 70343.82148296761, + 70353.25076085272, + 70362.18021234949, + 70370.45414765977, + 70377.85939104758, + 70384.12528083926, + 70388.92366942344, + 70391.86892325096, + 70392.51792283509, + 70390.37006275113, + 70384.8672516368, + 70375.393912192, + 70361.27698117908, + 70341.7859094225, + 70316.13266180895, + 70283.47171728751, + 70242.90006886947, + 70193.45722362847, + 70134.12520270025, + 70063.82854128297, + 69981.43428863696, + 69885.75200808496, + 69775.53377701183, + 69649.47418686473, + 69506.21034315316, + 69344.32186544876, + 69162.33088738572, + 68958.70205666008, + 68731.84253503046, + 68480.10199831764, + 68201.77263640481, + 67895.0891532371, + 67558.22876682227, + 67189.31120923016, + 66786.39872659284, + 66347.4960791049, + 65870.55054102287, + 72084.23564447094, + 72033.41126818392, + 71985.28952219557, + 71939.71285197648, + 71896.46621705945, + 71855.27709103959, + 71815.81546157427, + 71777.69383038311, + 71740.46721324803, + 71703.63314001322, + 71666.63165458509, + 71628.8453149323, + 71589.59919308592, + 71548.16087513918, + 71503.74046124757, + 71455.49056562889, + 71402.50631656319, + 71343.82535639283, + 71278.42784152234, + 71205.23644241862, + 71123.11634361082, + 71030.87524369032, + 70927.26335531079, + 70810.97340518818, + 70680.64063410067, + 70534.84279688876, + 70372.1001624552, + 70190.87551376502, + 69989.57414784543, + 69766.5438757861, + 69520.07502273879, + 69248.40042791756, + 68949.69544459884, + 68622.07794012118, + 68263.60829588551, + 67872.28940735509, + 67446.06668405519, + 71051.93676235093, + 71057.656954231, + 71063.04980687851, + 71067.95480242991, + 71072.15393708406, + 71075.37172110204, + 71077.27517880718, + 71077.47384858502, + 71075.51978288352, + 71070.90754821274, + 71063.07422514516, + 71051.39940831545, + 71035.20520642049, + 71013.7562422196, + 70986.25965253421, + 70951.8650882481, + 70909.66471430726, + 70858.69320972002, + 70797.92776755692, + 70726.2880949508, + 70642.6364130968, + 70545.77745725223, + 70434.45847673678, + 70307.36923493231, + 70163.14200928308, + 70000.35159129542, + 69817.51528653811, + 69613.09291464214, + 69385.48680930075, + 69133.04181826953, + 68854.04530336618, + 68546.72714047079, + 68209.25971952568, + 67839.75794453548, + 67436.27923356705, + 66996.82351874954, + 66519.33324627434, + 72825.35061779997, + 72770.7258563887, + 72719.0148178966, + 72670.05619281446, + 72623.63118569537, + 72579.46351515457, + 72537.21941386968, + 72496.50762858054, + 72456.87942008927, + 72417.82856326028, + 72378.79134702022, + 72339.14657435799, + 72298.21556232478, + 72255.26214203415, + 72209.49265866174, + 72160.05597144559, + 72106.04345368592, + 72046.48899274536, + 71980.36899004866, + 71906.60236108293, + 71824.05053539752, + 71731.51745660401, + 71627.74958237632, + 71511.43588445056, + 71381.20784862526, + 71235.63947476102, + 71073.24727678082, + 70892.49028266991, + 70691.77003447582, + 70469.43058830823, + 70223.7585143393, + 69952.98289680321, + 69655.27533399664, + 69328.74993827837, + 68971.46333606957, + 68581.41466785359, + 68156.5455881761, + 71763.6097746235, + 71765.61339954151, + 71767.46335918011, + 71768.99430761054, + 71769.98341296636, + 71770.15035744336, + 71769.1573372995, + 71766.6090628552, + 71762.0527584931, + 71754.97816265798, + 71744.81752785697, + 71730.9456206595, + 71712.67972169726, + 71689.27962566422, + 71659.9476413165, + 71623.82859147266, + 71580.00981301341, + 71527.5211568818, + 71465.3349880831, + 71392.36618568486, + 71307.47214281686, + 71209.45276667133, + 71097.05047850253, + 70968.95021362706, + 70823.77942142391, + 70660.10806533418, + 70476.44862286141, + 70271.25608557125, + 70042.92795909163, + 69789.80426311282, + 69510.16753138741, + 69202.24281173012, + 68864.19766601798, + 68494.1421701904, + 68090.12891424882, + 67650.15300225734, + 67172.15205234193, + 72907.90027528472, + 72852.8524035704, + 72800.7417891471, + 72751.40670528528, + 72704.62793931765, + 72660.12879263924, + 72617.57508070732, + 72576.57513304144, + 72536.67979322343, + 72497.38241889732, + 72458.11888176946, + 72418.26756760849, + 72377.14937624532, + 72334.02772157309, + 72288.1085315472, + 72238.5402481854, + 72184.41382756755, + 72124.76273983598, + 72058.56296919516, + 71984.73301391181, + 71902.1338863151, + 71809.56911279619, + 71705.78473380879, + 71589.46930386864, + 71459.25389155388, + 71313.71207950493, + 71151.35996442445, + 70970.65615707729, + 70770.00178229071, + 70547.74047895418, + 70302.15840001937, + 70031.4842125003, + 69733.88909747331, + 69407.48675007682, + 69050.33337951166, + 68660.427709041, + 68235.71097599009, + 71842.90384605007, + 71844.49406386934, + 71845.94998678971, + 71847.10573243027, + 71847.73793247242, + 71847.56573265993, + 71846.25079279864, + 71843.39728675675, + 71838.55190246477, + 71831.20384191538, + 71820.78482116366, + 71806.6690703269, + 71788.17333358453, + 71764.55686917846, + 71735.02144941279, + 71698.71136065383, + 71654.71340333018, + 71602.05689193278, + 71539.7136550148, + 71466.5980351916, + 71381.56688914096, + 71283.4195876028, + 71170.89801537937, + 71042.68657133519, + 70897.41216839706, + 70733.6442335539, + 70549.89470785715, + 70344.61804642036, + 70116.21121841937, + 69863.01370709231, + 69583.30750973956, + 69275.3171377238, + 68937.20961646992, + 68567.09448546516, + 68163.02379825895, + 67722.99212246304, + 67244.93653975146, + 229130.46142653713, + 228310.9507729385, + 227548.55649459283, + 226842.48269040784, + 226191.87597335305, + 225595.82547046067, + 225053.36282282477, + 224563.46218560176, + 224125.04022801065, + 223736.9561333323, + 223398.01159891012, + 223106.95083614948, + 222862.46057051863, + 222663.1700415473, + 222507.65100282824, + 222394.41772201593, + 222321.92698082706, + 222288.5780750412, + 222292.71281449957, + 222332.61552310613, + 222406.51303882658, + 222512.57471368954, + 222648.91241378526, + 222813.58051926675, + 223004.57592434905, + 223219.83803730927, + 223457.24878048745, + 223714.632590285, + 223989.7564171666, + 224280.3297256581, + 224584.00449434886, + 224898.3752158891, + 225220.97889699266, + 225549.2950584348, + 225880.7457350532, + 226212.6954757481, + 226542.45134348163, + 230006.67679725072, + 229403.2578889746, + 228846.084558546, + 228334.17551700454, + 227866.49198945228, + 227441.93771505333, + 227059.35894703396, + 226717.54445268257, + 226415.2255133506, + 226151.07592445074, + 225923.71199545884, + 225731.6925499123, + 225573.51892541136, + 225447.6349736182, + 225352.42706025738, + 225286.22406511568, + 225247.29738204196, + 225233.860918948, + 225244.071097807, + 225276.02685465512, + 225327.76963959017, + 225397.28341677302, + 225482.4946644261, + 225581.2723748343, + 225691.42805434501, + 225810.71572336752, + 225936.8319163738, + 226067.41568189778, + 226200.04858253576, + 226332.25469494628, + 226461.50060985034, + 226585.19543203068, + 226700.69078033319, + 226805.28078766528, + 226896.20210099654, + 226970.63388135962, + 227025.69780384866 + ], + "input_power": [ + 29563.144000000004, + 29574.04098765432, + 29596.669728395063, + 29631.030222222227, + 29677.122469135804, + 29734.946469135804, + 29804.50222222222, + 29885.789728395062, + 29978.808987654324, + 30083.56000000001, + 30200.04276543211, + 30328.257283950617, + 30468.203555555556, + 30619.88158024691, + 30783.291358024693, + 30958.432888888892, + 31145.30617283951, + 31343.911209876544, + 31554.247999999996, + 31776.31654320988, + 32010.116839506176, + 32255.648888888893, + 32512.912691358026, + 32781.90824691358, + 33062.63555555555, + 33355.09461728396, + 33659.28543209876, + 33975.20799999999, + 34302.86232098767, + 34642.248395061724, + 34993.36622222222, + 35356.215802469145, + 35730.797135802466, + 36117.11022222223, + 36515.1550617284, + 36924.93165432099, + 37346.439999999995, + 30980.795199999997, + 31001.617876543205, + 31034.172306172837, + 31078.458488888886, + 31134.47642469135, + 31202.226113580247, + 31281.707555555553, + 31372.92075061728, + 31475.865698765432, + 31590.5424, + 31716.950854320992, + 31855.091061728395, + 32004.963022222222, + 32166.566735802462, + 32339.902202469133, + 32524.96942222222, + 32721.76839506173, + 32930.299120987656, + 33150.56159999999, + 33382.55583209877, + 33626.281817283954, + 33881.739555555556, + 34148.92904691358, + 34427.85029135802, + 34718.50328888889, + 35020.88803950618, + 35335.00454320987, + 35660.8528, + 35998.43280987655, + 36347.7445728395, + 36708.78808888889, + 37081.563358024694, + 37466.070380246914, + 37862.30915555557, + 38270.27968395062, + 38689.98196543211, + 39121.416, + 29568.499839999997, + 29579.381609876542, + 29601.995132839504, + 29636.340408888893, + 29682.41743802469, + 29740.226220246914, + 29809.766755555556, + 29891.03904395062, + 29984.043085432106, + 30088.77888, + 30205.246427654325, + 30333.445728395058, + 30473.37678222222, + 30625.0395891358, + 30788.434149135803, + 30963.560462222224, + 31150.418528395065, + 31349.00834765432, + 31559.32992, + 31781.3832454321, + 32015.16832395062, + 32260.685155555555, + 32517.933740246917, + 32786.914078024696, + 33067.626168888884, + 33360.07001283951, + 33664.24560987655, + 33980.15296, + 34307.792063209876, + 34647.16291950617, + 34998.265528888885, + 35361.09989135803, + 35735.66600691358, + 36121.96387555556, + 36519.99349728395, + 36929.75487209877, + 37351.248, + 30986.908495999993, + 31007.73944987654, + 31040.302156839505, + 31084.596616888884, + 31140.622830024688, + 31208.38079624691, + 31287.87051555555, + 31379.09198795061, + 31482.0452134321, + 31596.730191999995, + 31723.146923654316, + 31861.295408395057, + 32011.175646222215, + 32172.787637135792, + 32346.13138113579, + 32531.206878222216, + 32728.01412839506, + 32936.55313165432, + 33156.823888, + 33388.82639743209, + 33632.560659950606, + 33888.02667555555, + 34155.22444424691, + 34434.153966024685, + 34724.81524088888, + 35027.2082688395, + 35341.33304987654, + 35667.189583999985, + 36004.77787120988, + 36354.09791150616, + 36715.14970488887, + 37087.93325135802, + 37472.44855091358, + 37868.69560355555, + 38276.67440928394, + 38696.38496809876, + 39127.82727999999, + 29616.504399999998, + 29627.249209876543, + 29649.725772839505, + 29683.93408888889, + 29729.874158024697, + 29787.545980246916, + 29856.949555555555, + 29938.084883950618, + 30030.9519654321, + 30135.550800000008, + 30251.88138765433, + 30379.94372839506, + 30519.737822222218, + 30671.263669135802, + 30834.521269135807, + 31009.510622222228, + 31196.23172839506, + 31394.684587654323, + 31604.8692, + 31826.785565432103, + 32060.43368395062, + 32305.81355555556, + 32562.925180246908, + 32831.76855802469, + 33112.343688888875, + 33404.65057283951, + 33708.689209876546, + 34024.4596, + 34351.961743209875, + 34691.19563950617, + 35042.16128888889, + 35404.85869135803, + 35779.28784691358, + 36165.44875555556, + 36563.34141728395, + 36972.965832098766, + 37394.32199999999, + 31041.730159999992, + 31062.635609876535, + 31095.2728128395, + 31139.641768888887, + 31195.742478024687, + 31263.574940246912, + 31343.139155555556, + 31434.435123950614, + 31537.462845432095, + 31652.222319999997, + 31778.71354765432, + 31916.93652839506, + 32066.891262222212, + 32228.577749135788, + 32401.995989135798, + 32587.145982222217, + 32784.027728395056, + 32992.64122765431, + 33212.98647999999, + 33445.0634854321, + 33688.87224395062, + 33944.412755555546, + 34211.685020246914, + 34490.689038024684, + 34781.42480888888, + 35083.89233283951, + 35398.09160987654, + 35724.02263999999, + 36061.68542320988, + 36411.07995950617, + 36772.20624888888, + 37145.06429135803, + 37529.65408691357, + 37925.97563555556, + 38334.02893728394, + 38753.81399209876, + 39185.33079999999, + 29664.15256, + 29674.76040987654, + 29697.100012839506, + 29731.171368888892, + 29776.974478024695, + 29834.509340246914, + 29903.775955555557, + 29984.77432395062, + 30077.5044454321, + 30181.96632, + 30298.15994765433, + 30426.08532839506, + 30565.74246222222, + 30717.131349135798, + 30880.251989135802, + 31055.104382222227, + 31241.688528395065, + 31440.00442765432, + 31650.05207999999, + 31871.8314854321, + 32105.342643950622, + 32350.585555555554, + 32607.56022024691, + 32876.26663802469, + 33156.704808888884, + 33448.87473283951, + 33752.77640987654, + 34068.40983999999, + 34395.77502320988, + 34734.87195950617, + 35085.70064888889, + 35448.261091358036, + 35822.55328691358, + 36208.57723555556, + 36606.33293728395, + 37015.820392098765, + 37437.03959999999, + 31096.195423999998, + 31117.17536987654, + 31149.8870688395, + 31194.33052088888, + 31250.505726024687, + 31318.412684246905, + 31398.05139555555, + 31489.42185995061, + 31592.5240774321, + 31707.358047999995, + 31833.92377165432, + 31972.221248395064, + 32122.250478222213, + 32284.01146113579, + 32457.504197135797, + 32642.72868622222, + 32839.68492839506, + 33048.37292365432, + 33268.792671999996, + 33500.94417343209, + 33744.827427950615, + 34000.442435555546, + 34267.78919624691, + 34546.867710024686, + 34837.67797688888, + 35140.219996839514, + 35454.493769876535, + 35780.49929599999, + 36118.23657520988, + 36467.70560750617, + 36828.90639288888, + 37201.838931358034, + 37586.50322291357, + 37982.89926755556, + 38391.02706528395, + 38810.88661609876, + 39242.47791999999, + 29711.444319999995, + 29721.915209876537, + 29744.117852839507, + 29778.052248888886, + 29823.718398024685, + 29881.11630024691, + 29950.24595555555, + 30031.107363950618, + 30123.700525432097, + 30228.02544, + 30344.082107654325, + 30471.87052839506, + 30611.39070222222, + 30762.642629135797, + 30925.6263091358, + 31100.341742222223, + 31286.78892839506, + 31484.967867654323, + 31694.878560000005, + 31916.5210054321, + 32149.895203950622, + 32395.001155555554, + 32651.838860246913, + 32920.408318024696, + 33200.70952888889, + 33492.74249283951, + 33796.507209876545, + 34112.00368, + 34439.231903209875, + 34778.191879506165, + 35128.883608888886, + 35491.30709135802, + 35865.462326913585, + 36251.349315555555, + 36648.96805728394, + 37058.31855209877, + 37479.400799999996, + 31150.304287999992, + 31171.358729876534, + 31204.144924839504, + 31248.662872888883, + 31304.912574024682, + 31372.894028246912, + 31452.60723555555, + 31544.05219595061, + 31647.228909432102, + 31762.137376, + 31888.777595654323, + 32027.14956839506, + 32177.253294222217, + 32339.088773135798, + 32512.656005135796, + 32697.95499022222, + 32894.98572839506, + 33103.74821965432, + 33324.242464, + 33556.468461432094, + 33800.42621195061, + 34056.11571555555, + 34323.53697224691, + 34602.68998202469, + 34893.57474488888, + 35196.19126083951, + 35510.539529876536, + 35836.619552, + 36174.43132720988, + 36523.97485550616, + 36885.25013688887, + 37258.257171358026, + 37642.995958913576, + 38039.46649955556, + 38447.66879328394, + 38867.60284009876, + 39299.268639999995, + 29758.379680000002, + 29768.713609876548, + 29790.77929283951, + 29824.576728888893, + 29870.105918024696, + 29927.366860246915, + 29996.35955555556, + 30077.084003950622, + 30169.540205432102, + 30273.728160000006, + 30389.647867654334, + 30517.29932839506, + 30656.68254222222, + 30807.797509135795, + 30970.644229135803, + 31145.222702222225, + 31331.532928395063, + 31529.574907654325, + 31739.348640000004, + 31960.854125432103, + 32194.09136395061, + 32439.060355555554, + 32695.76110024692, + 32964.19359802469, + 33244.35784888889, + 33536.25385283951, + 33839.881609876546, + 34155.24112, + 34482.332383209876, + 34821.15539950618, + 35171.71016888889, + 35533.99669135803, + 35908.014966913586, + 36293.76499555556, + 36691.24677728396, + 37100.46031209877, + 37521.40559999999, + 31204.056752, + 31225.18568987654, + 31258.046380839507, + 31302.638824888887, + 31358.96302202469, + 31427.018972246915, + 31506.806675555552, + 31598.32613195061, + 31701.577341432097, + 31816.560304, + 31943.27501965432, + 32081.721488395062, + 32231.899710222217, + 32393.80968513579, + 32567.4514131358, + 32752.824894222224, + 32949.93012839506, + 33158.76711565432, + 33379.335856, + 33611.6363494321, + 33855.668595950614, + 34111.43259555555, + 34378.92834824692, + 34658.155854024684, + 34949.11511288888, + 35251.8061248395, + 35566.22888987653, + 35892.38340799999, + 36230.26967920987, + 36579.88770350617, + 36941.23748088888, + 37314.31901135802, + 37699.13229491357, + 38095.677331555555, + 38503.95412128395, + 38923.962664098755, + 39355.70295999999, + 29804.958639999997, + 29815.155609876543, + 29837.084332839506, + 29870.744808888892, + 29916.137038024695, + 29973.261020246915, + 30042.11675555556, + 30122.70424395062, + 30215.023485432102, + 30319.074480000003, + 30434.85722765433, + 30562.37172839506, + 30701.617982222222, + 30852.5959891358, + 31015.305749135805, + 31189.747262222227, + 31375.92052839507, + 31573.825547654324, + 31783.462320000002, + 32004.8308454321, + 32237.931123950624, + 32482.76315555556, + 32739.326940246912, + 33007.6224780247, + 33287.649768888885, + 33579.408812839516, + 33882.89960987655, + 34198.12216, + 34525.076463209894, + 34863.76251950618, + 35214.180328888884, + 35576.32989135804, + 35950.211206913584, + 36335.82427555557, + 36733.16909728396, + 37142.245672098776, + 37563.054000000004, + 31257.452815999994, + 31278.656249876538, + 31311.591436839502, + 31356.258376888884, + 31412.65707002469, + 31480.78751624691, + 31560.649715555555, + 31652.243667950614, + 31755.5693734321, + 31870.626831999998, + 31997.416043654317, + 32135.937008395067, + 32286.18972622222, + 32448.1741971358, + 32621.890421135802, + 32807.33839822222, + 33004.518128395066, + 33213.42961165432, + 33434.072847999996, + 33666.447837432104, + 33910.55457995062, + 34166.393075555556, + 34433.96332424691, + 34713.26532602469, + 35004.299080888886, + 35307.064588839516, + 35621.56184987653, + 35947.790863999995, + 36285.75163120988, + 36635.44415150617, + 36996.86842488889, + 37370.02445135803, + 37754.912230913586, + 38151.53176355557, + 38559.883049283955, + 38979.966088098765, + 39411.78088, + 29825.55319325169, + 29835.68927071224, + 29857.557101259194, + 29891.15668489258, + 29936.488021612382, + 29993.551111418605, + 30062.345954311244, + 30142.87255029031, + 30235.130899355787, + 30339.121001507694, + 30454.842856746014, + 30582.29646507075, + 30721.481826481904, + 30872.39894097949, + 31035.047808563493, + 31209.428429233918, + 31395.540802990756, + 31593.384929834014, + 31802.960809763692, + 32024.268442779794, + 32257.307828882313, + 32502.078968071244, + 32758.58186034661, + 33026.81650570838, + 33306.78290415658, + 33598.481055691205, + 33901.910960312234, + 34217.07261801969, + 34543.96602881357, + 34882.59119269386, + 35232.94810966057, + 35595.03677971372, + 35968.85720285328, + 36354.409379079254, + 36751.69330839164, + 37160.70899079046, + 37581.45642627568, + 31281.078253690084, + 31302.314808488227, + 31335.283116372793, + 31379.983177343776, + 31436.41499140118, + 31504.57855854501, + 31584.473878775247, + 31676.100952091903, + 31779.45977849499, + 31894.550357984495, + 32021.372690560413, + 32159.926776222754, + 32310.21261497151, + 32472.230206806686, + 32645.979551728287, + 32831.460649736306, + 33028.67350083075, + 33237.61810501161, + 33458.294462278885, + 33690.70257263259, + 33934.84243607271, + 34190.71405259924, + 34458.3174222122, + 34737.65254491157, + 35028.71942069737, + 35331.5180495696, + 35646.04843152823, + 35972.310566573295, + 36310.30445470476, + 36660.03009592266, + 37021.48749022698, + 37394.67663761772, + 37779.597538094866, + 38176.25019165845, + 38584.63459830843, + 39004.75075804486, + 39436.59867086768, + 29851.181199999995, + 29861.241209876538, + 29883.0329728395, + 29916.556488888888, + 29961.811758024687, + 30018.79878024691, + 30087.51755555555, + 30167.968083950615, + 30260.150365432095, + 30364.064399999996, + 30479.710187654324, + 30607.087728395058, + 30746.197022222215, + 30897.038069135793, + 31059.6108691358, + 31233.91542222222, + 31419.95172839506, + 31617.719787654318, + 31827.219599999997, + 32048.4511654321, + 32281.41448395061, + 32526.10955555555, + 32782.53638024691, + 33050.694958024695, + 33330.58528888888, + 33622.207372839504, + 33925.56120987654, + 34240.64679999999, + 34567.46414320987, + 34906.01323950617, + 35256.294088888884, + 35618.30669135802, + 35992.05104691358, + 36377.52715555555, + 36774.73501728395, + 37183.674632098766, + 37604.34599999998, + 31310.492479999994, + 31331.770409876535, + 31364.780092839505, + 31409.52152888888, + 31465.99471802468, + 31534.199660246915, + 31614.13635555555, + 31705.804803950614, + 31809.205005432093, + 31924.336959999997, + 32051.20066765432, + 32189.79612839506, + 32340.12334222222, + 32502.18230913579, + 32675.973029135796, + 32861.49550222222, + 33058.74972839506, + 33267.73570765432, + 33488.45343999999, + 33720.90292543209, + 33965.08416395061, + 34220.99715555555, + 34488.64190024691, + 34768.01839802469, + 35059.12664888888, + 35361.9666528395, + 35676.538409876535, + 36002.84191999999, + 36340.87718320987, + 36690.64419950616, + 37052.14296888889, + 37425.373491358034, + 37810.33576691357, + 38207.029795555565, + 38615.45557728394, + 39035.61311209876, + 39467.50239999998, + 29897.047359999993, + 29906.97040987654, + 29928.625212839503, + 29962.01176888889, + 30007.130078024686, + 30063.98014024691, + 30132.561955555553, + 30212.875523950614, + 30304.920845432105, + 30408.697920000002, + 30524.206747654323, + 30651.447328395057, + 30790.419662222215, + 30941.123749135797, + 31103.559589135803, + 31277.72718222222, + 31463.62652839506, + 31661.25762765432, + 31870.620479999994, + 32091.715085432093, + 32324.541443950617, + 32569.099555555546, + 32825.38942024691, + 33093.41103802469, + 33373.164408888886, + 33664.6495328395, + 33967.866409876544, + 34282.815039999994, + 34609.495423209875, + 34947.907559506166, + 35298.05144888887, + 35659.92709135802, + 36033.53448691358, + 36418.87363555556, + 36815.94453728395, + 37224.74719209876, + 37645.28159999999, + 31363.175743999993, + 31384.528169876536, + 31417.61234883951, + 31462.42828088889, + 31518.97596602468, + 31587.25540424691, + 31667.26659555555, + 31759.009539950617, + 31862.484237432094, + 31977.690687999995, + 32104.628891654324, + 32243.298848395065, + 32393.700558222215, + 32555.834021135794, + 32729.699237135792, + 32915.296206222214, + 33112.62492839506, + 33321.685403654315, + 33542.477631999995, + 33775.0016134321, + 34019.25734795062, + 34275.244835555546, + 34542.96407624691, + 34822.41507002468, + 35113.59781688888, + 35416.5123168395, + 35731.158569876534, + 36057.53657599999, + 36395.64633520987, + 36745.48784750617, + 37107.06111288887, + 37480.366131358016, + 37865.40290291357, + 38262.17142755556, + 38670.67170528394, + 39090.90373609875, + 39522.86752, + 29942.557119999998, + 29952.34320987654, + 29973.861052839504, + 30007.110648888887, + 30052.09199802469, + 30108.80510024691, + 30177.24995555555, + 30257.426563950616, + 30349.334925432096, + 30452.975040000005, + 30568.346907654322, + 30695.450528395057, + 30834.285902222215, + 30984.8530291358, + 31147.151909135802, + 31321.182542222225, + 31506.944928395063, + 31704.43906765432, + 31913.664959999995, + 32134.62260543209, + 32367.31200395061, + 32611.733155555547, + 32867.88606024691, + 33135.770718024694, + 33415.387128888884, + 33706.735292839505, + 34009.81520987654, + 34324.626879999996, + 34651.17030320987, + 34989.44547950617, + 35339.45240888888, + 35701.19109135803, + 36074.66152691358, + 36459.863715555555, + 36856.79765728395, + 37265.46335209876, + 37685.86079999999, + 31415.502607999995, + 31436.929529876536, + 31470.088204839507, + 31514.978632888888, + 31571.600814024685, + 31639.95474824691, + 31720.040435555555, + 31811.857875950616, + 31915.407069432098, + 32030.688016, + 32157.700715654322, + 32296.44516839506, + 32446.92137422222, + 32609.129333135792, + 32783.0690451358, + 32968.740510222226, + 33166.14372839506, + 33375.278699654315, + 33596.145424, + 33828.7439014321, + 34073.07413195061, + 34329.13611555555, + 34596.92985224691, + 34876.45534202469, + 35167.71258488889, + 35470.7015808395, + 35785.422329876536, + 36111.874831999994, + 36450.05908720988, + 36799.97509550617, + 37161.62285688889, + 37535.00237135802, + 37920.11363891358, + 38316.95665955557, + 38725.531433283955, + 39145.83796009877, + 39577.87623999999, + 29987.710479999994, + 29997.35960987654, + 30018.740492839497, + 30051.853128888888, + 30096.697518024692, + 30153.27366024691, + 30221.581555555556, + 30301.621203950614, + 30393.3926054321, + 30496.895759999992, + 30612.130667654324, + 30739.09732839506, + 30877.795742222213, + 31028.225909135803, + 31190.3878291358, + 31364.281502222228, + 31549.90692839506, + 31747.264107654322, + 31956.35304, + 32177.173725432105, + 32409.726163950614, + 32654.010355555554, + 32910.026300246915, + 33177.7739980247, + 33457.253448888885, + 33748.46465283951, + 34051.40760987655, + 34366.08231999999, + 34692.48878320988, + 35030.626999506174, + 35380.49696888888, + 35742.09869135803, + 36115.43216691358, + 36500.49739555556, + 36897.29437728396, + 37305.82311209876, + 37726.0836, + 31467.473071999997, + 31488.97448987654, + 31522.207660839507, + 31567.172584888885, + 31623.869262024687, + 31692.297692246917, + 31772.457875555552, + 31864.349811950615, + 31967.973501432098, + 32083.328944, + 32210.41613965432, + 32349.235088395068, + 32499.78579022222, + 32662.0682451358, + 32836.0824531358, + 33021.82841422222, + 33219.30612839506, + 33428.51559565432, + 33649.456816, + 33882.129789432096, + 34126.53451595062, + 34382.67099555555, + 34650.53922824691, + 34930.13921402469, + 35221.470952888885, + 35524.53444483951, + 35839.32968987653, + 36165.856688, + 36504.11543920988, + 36854.10594350617, + 37215.82820088888, + 37589.28221135803, + 37974.46797491358, + 38371.385491555564, + 38780.03476128394, + 39200.41578409877, + 39632.52855999999, + 30032.507439999994, + 30042.019609876537, + 30063.263532839504, + 30096.23920888889, + 30140.94663802469, + 30197.38582024691, + 30265.55675555555, + 30345.45944395062, + 30437.0938854321, + 30540.46008, + 30655.558027654326, + 30782.387728395057, + 30920.94918222222, + 31071.242389135798, + 31233.2673491358, + 31407.02406222222, + 31592.51252839506, + 31789.73274765432, + 31998.68472, + 32219.368445432105, + 32451.78392395062, + 32695.93115555555, + 32951.81014024691, + 33219.42087802469, + 33498.76336888888, + 33789.8376128395, + 34092.64360987655, + 34407.18135999999, + 34733.45086320988, + 35071.452119506175, + 35421.18512888889, + 35782.64989135803, + 36155.84640691358, + 36540.77467555557, + 36937.434697283956, + 37345.826472098764, + 37765.950000000004, + 31519.08713599999, + 31540.663049876533, + 31573.970716839503, + 31619.010136888886, + 31675.781310024682, + 31744.284236246913, + 31824.51891555555, + 31916.485347950613, + 32020.183533432104, + 32135.613472000005, + 32262.775163654325, + 32401.668608395063, + 32552.293806222224, + 32714.6507571358, + 32888.739461135796, + 33074.55991822222, + 33272.11212839506, + 33481.39609165432, + 33702.411808000004, + 33935.15927743209, + 34179.63849995061, + 34435.84947555555, + 34703.792204246914, + 34983.466686024694, + 35274.87292088888, + 35578.01090883951, + 35892.88064987655, + 36219.482143999994, + 36557.81539120987, + 36907.880391506165, + 37269.67714488889, + 37643.20565135803, + 38028.46591091358, + 38425.45792355556, + 38834.181689283934, + 39254.63720809876, + 39686.82447999999, + 30076.947999999993, + 30086.32320987654, + 30107.430172839504, + 30140.268888888888, + 30184.83935802469, + 30241.141580246913, + 30309.175555555554, + 30388.94128395062, + 30480.438765432096, + 30583.668, + 30698.628987654327, + 30825.32172839506, + 30963.746222222217, + 31113.9024691358, + 31275.790469135798, + 31449.41022222222, + 31634.76172839506, + 31831.844987654316, + 32040.659999999996, + 32261.2067654321, + 32493.48528395062, + 32737.495555555553, + 32993.2375802469, + 33260.71135802469, + 33539.91688888888, + 33830.854172839514, + 34133.523209876534, + 34447.92399999999, + 34774.056543209874, + 35111.92083950617, + 35461.51688888889, + 35822.84469135803, + 36195.904246913575, + 36580.69555555556, + 36977.21861728395, + 37385.47343209876, + 37805.46, + 31570.344799999995, + 31591.99520987654, + 31625.377372839506, + 31670.49128888889, + 31727.336958024687, + 31795.91438024692, + 31876.223555555556, + 31968.264483950614, + 32072.0371654321, + 32187.541600000004, + 32314.77778765433, + 32453.745728395057, + 32604.44542222222, + 32766.8768691358, + 32941.04006913579, + 33126.93502222222, + 33324.56172839506, + 33533.920187654316, + 33755.0104, + 33987.83236543211, + 34232.38608395061, + 34488.67155555556, + 34756.68878024692, + 35036.43775802469, + 35327.918488888885, + 35631.1309728395, + 35946.07520987654, + 36272.75119999999, + 36611.15894320988, + 36961.29843950618, + 37323.169688888884, + 37696.77269135802, + 38082.107446913586, + 38479.17395555556, + 38887.97221728395, + 39308.50223209877, + 39740.76399999999, + 30121.032159999995, + 30130.270409876546, + 30151.240412839506, + 30183.942168888883, + 30228.375678024688, + 30284.54094024691, + 30352.43795555555, + 30432.066723950615, + 30523.4272454321, + 30626.51952, + 30741.343547654324, + 30867.899328395055, + 31006.186862222217, + 31156.206149135793, + 31317.9571891358, + 31491.439982222222, + 31676.654528395065, + 31873.60082765432, + 32082.278879999998, + 32302.688685432102, + 32534.830243950622, + 32778.70355555555, + 33034.30862024692, + 33301.645438024694, + 33580.71400888889, + 33871.51433283952, + 34174.04640987654, + 34488.31024, + 34814.30582320988, + 35152.03315950617, + 35501.492248888884, + 35862.68309135802, + 36235.60568691358, + 36620.26003555557, + 37016.64613728395, + 37424.76399209877, + 37844.61359999999, + 31621.246064, + 31642.970969876544, + 31676.4276288395, + 31721.616040888886, + 31778.536206024684, + 31847.18812424692, + 31927.57179555556, + 32019.687219950618, + 32123.534397432104, + 32239.113328000003, + 32366.424011654322, + 32505.466448395062, + 32656.24063822222, + 32818.7465811358, + 32992.984277135794, + 33178.953726222215, + 33376.65492839506, + 33586.08788365432, + 33807.252592, + 34040.1490534321, + 34284.777267950616, + 34541.13723555555, + 34809.228956246916, + 35089.05243002468, + 35380.60765688888, + 35683.89463683951, + 35998.91336987654, + 36325.66385599999, + 36664.14609520988, + 37014.36008750617, + 37376.30583288889, + 37749.98333135803, + 38135.392582913584, + 38532.53358755556, + 38941.40634528395, + 39362.01085609876, + 39794.34711999999, + 30164.759919999997, + 30173.861209876544, + 30194.69425283951, + 30227.259048888893, + 30271.55559802469, + 30327.583900246915, + 30395.343955555552, + 30474.835763950618, + 30566.0593254321, + 30669.014640000005, + 30783.701707654327, + 30910.120528395062, + 31048.271102222217, + 31198.1534291358, + 31359.767509135803, + 31533.113342222226, + 31718.190928395063, + 31915.000267654326, + 32123.541359999996, + 32343.814205432103, + 32575.818803950617, + 32819.55515555556, + 33075.02326024692, + 33342.22311802469, + 33621.15472888889, + 33911.8180928395, + 34214.21320987654, + 34528.34008, + 34854.19870320988, + 35191.789079506176, + 35541.111208888884, + 35902.16509135803, + 36274.95072691358, + 36659.46811555556, + 37055.717257283955, + 37463.69815209876, + 37883.41079999999, + 31671.79092799999, + 31693.59032987654, + 31727.1214848395, + 31772.384392888885, + 31829.379054024685, + 31898.105468246915, + 31978.56363555555, + 32070.753555950618, + 32174.675229432098, + 32290.328656, + 32417.71383565432, + 32556.83076839506, + 32707.679454222216, + 32870.25989313579, + 33044.5720851358, + 33230.61603022222, + 33428.391728395065, + 33637.89917965432, + 33859.138384, + 34092.1093414321, + 34336.81205195061, + 34593.24651555555, + 34861.41273224692, + 35141.31070202469, + 35432.94042488888, + 35736.3019008395, + 36051.39512987654, + 36378.220112, + 36716.77684720987, + 37067.06533550617, + 37429.08557688888, + 37802.837571358024, + 38188.32131891358, + 38585.53681955556, + 38994.48407328395, + 39415.163080098755, + 39847.57383999999, + 30208.13128, + 30217.095609876545, + 30237.79169283951, + 30270.21952888889, + 30314.37911802469, + 30370.270460246917, + 30437.893555555558, + 30517.24840395062, + 30608.335005432098, + 30711.153360000004, + 30825.70346765433, + 30951.98532839506, + 31089.998942222224, + 31239.7443091358, + 31401.221429135803, + 31574.430302222227, + 31759.370928395063, + 31956.043307654323, + 32164.447440000004, + 32384.583325432097, + 32616.450963950618, + 32860.050355555555, + 33115.38150024692, + 33382.44439802469, + 33661.239048888885, + 33951.76545283951, + 34254.023609876545, + 34568.01351999999, + 34893.73518320989, + 35231.18859950617, + 35580.37376888888, + 35941.29069135804, + 36313.93936691359, + 36698.319795555566, + 37094.43197728395, + 37502.27591209877, + 37921.851599999995, + 31721.979391999997, + 31743.85328987654, + 31777.458940839504, + 31822.796344888884, + 31879.865502024688, + 31948.666412246916, + 32029.199075555545, + 32121.463491950606, + 32225.459661432098, + 32341.187584000003, + 32468.647259654317, + 32607.838688395055, + 32758.761870222217, + 32921.4168051358, + 33095.80349313579, + 33281.92193422221, + 33479.77212839506, + 33689.354075654315, + 33910.667775999995, + 34143.71322943209, + 34388.49043595061, + 34644.99939555555, + 34913.24010824691, + 35193.212574024685, + 35484.91679288888, + 35788.3527648395, + 36103.52048987654, + 36430.419967999995, + 36769.05119920987, + 37119.41418350616, + 37481.508920888875, + 37855.33541135803, + 38240.893654913576, + 38638.18365155555, + 39047.20540128392, + 39467.958904098756, + 39900.44415999999, + 30251.146239999995, + 30259.973609876546, + 30280.53273283951, + 30312.82360888889, + 30356.846238024693, + 30412.600620246918, + 30480.08675555556, + 30559.30464395062, + 30650.2542854321, + 30752.935680000006, + 30867.34882765433, + 30993.493728395064, + 31131.370382222227, + 31280.978789135803, + 31442.318949135806, + 31615.390862222226, + 31800.194528395063, + 31996.729947654323, + 32204.99712, + 32424.996045432108, + 32656.726723950618, + 32900.18915555555, + 33155.38334024692, + 33422.309278024695, + 33700.96696888889, + 33991.356412839516, + 34293.47760987654, + 34607.330559999995, + 34932.91526320988, + 35270.23171950618, + 35619.27992888889, + 35980.05989135803, + 36352.57160691359, + 36736.81507555556, + 37132.79029728395, + 37540.49727209877, + 37959.936, + 31771.811455999996, + 31793.759849876536, + 31827.439996839505, + 31872.851896888886, + 31929.995550024687, + 31998.870956246916, + 32079.478115555554, + 32171.817027950616, + 32275.887693432105, + 32391.690112, + 32519.224283654323, + 32658.490208395066, + 32809.487886222225, + 32972.21731713579, + 33146.67850113579, + 33332.87143822222, + 33530.79612839506, + 33740.452571654314, + 33961.840768, + 34194.960717432106, + 34439.81241995061, + 34696.39587555555, + 34964.71108424691, + 35244.75804602469, + 35536.53676088889, + 35840.04722883951, + 36155.28944987654, + 36482.263424000004, + 36820.96915120988, + 37171.40663150617, + 37533.57586488889, + 37907.47685135803, + 38293.109590913584, + 38690.47408355556, + 39099.570329283946, + 39520.39832809877, + 39952.95808, + 30293.804799999998, + 30302.495209876543, + 30322.917372839507, + 30355.07128888889, + 30398.95695802469, + 30454.574380246915, + 30521.923555555557, + 30601.00448395062, + 30691.817165432098, + 30794.3616, + 30908.637787654327, + 31034.64572839506, + 31172.38542222222, + 31321.8568691358, + 31483.0600691358, + 31655.995022222225, + 31840.661728395058, + 32037.060187654326, + 32245.1904, + 32465.0523654321, + 32696.646083950625, + 32939.97155555556, + 33195.028780246925, + 33461.81775802469, + 33740.3384888889, + 34030.59097283952, + 34332.575209876544, + 34646.2912, + 34971.73894320988, + 35308.918439506175, + 35657.82968888889, + 36018.47269135803, + 36390.84744691358, + 36774.95395555557, + 37170.79221728395, + 37578.36223209876, + 37997.66399999999, + 31821.28711999999, + 31843.310009876535, + 31877.0646528395, + 31922.551048888883, + 31979.769198024685, + 32048.71910024691, + 32129.400755555558, + 32221.814163950618, + 32325.959325432093, + 32441.836239999993, + 32569.444907654328, + 32708.78532839506, + 32859.85750222222, + 33022.6614291358, + 33197.1971091358, + 33383.464542222224, + 33581.46372839506, + 33791.194667654316, + 34012.65736, + 34245.851805432096, + 34490.77800395061, + 34747.43595555555, + 35015.82566024692, + 35295.947118024684, + 35587.80032888889, + 35891.3852928395, + 36206.702009876535, + 36533.750479999995, + 36872.53070320988, + 37223.04267950617, + 37585.286408888875, + 37959.26189135802, + 38344.96912691357, + 38742.40811555557, + 39151.57885728395, + 39572.48135209875, + 40005.1156, + 30336.106959999994, + 30344.660409876542, + 30364.94561283951, + 30396.962568888892, + 30440.711278024693, + 30496.19174024692, + 30563.403955555554, + 30642.347923950623, + 30733.023645432102, + 30835.43112, + 30949.570347654335, + 31075.44132839507, + 31213.04406222222, + 31362.378549135803, + 31523.444789135803, + 31696.24278222222, + 31880.772528395064, + 32077.03402765432, + 32285.027279999995, + 32504.752285432096, + 32736.209043950625, + 32979.39755555556, + 33234.31782024691, + 33500.969838024685, + 33779.35360888889, + 34069.46913283951, + 34371.31640987654, + 34684.89544, + 35010.206223209876, + 35347.248759506176, + 35696.02304888889, + 36056.52909135803, + 36428.76688691358, + 36812.73643555556, + 37208.43773728395, + 37615.870792098765, + 38035.0356, + 31870.406383999994, + 31892.503769876545, + 31926.332908839504, + 31971.893800888887, + 32029.186446024687, + 32098.210844246914, + 32178.966995555547, + 32271.45489995062, + 32375.6745574321, + 32491.625968, + 32619.309131654325, + 32758.724048395066, + 32909.87071822221, + 33072.74914113579, + 33247.35931713579, + 33433.70124622221, + 33631.77492839506, + 33841.58036365431, + 34063.117551999996, + 34296.386493432095, + 34541.38718795061, + 34798.11963555555, + 35066.583836246915, + 35346.77979002468, + 35638.707496888885, + 35942.366956839505, + 36257.75816987653, + 36584.881135999996, + 36923.735855209874, + 37274.32232750616, + 37636.64055288888, + 38010.69053135803, + 38396.47226291357, + 38793.98574755556, + 39203.230985283946, + 39624.20797609876, + 40056.91671999999, + 30378.05272, + 30386.46920987654, + 30406.617452839513, + 30438.49744888889, + 30482.109198024697, + 30537.452700246915, + 30604.527955555557, + 30683.33496395062, + 30773.873725432102, + 30876.144240000005, + 30990.146507654328, + 31115.880528395064, + 31253.346302222224, + 31402.5438291358, + 31563.4731091358, + 31736.134142222225, + 31920.526928395066, + 32116.651467654323, + 32324.507759999997, + 32544.0958054321, + 32775.41560395062, + 33018.467155555554, + 33273.25046024692, + 33539.765518024695, + 33818.01232888889, + 34107.99089283951, + 34409.70120987655, + 34723.14328, + 35048.317103209876, + 35385.22267950617, + 35733.860008888885, + 36094.22909135802, + 36466.32992691358, + 36850.16251555556, + 37245.72685728395, + 37653.022952098756, + 38072.05079999999, + 31919.169247999995, + 31941.34112987654, + 31975.244764839506, + 32020.880152888887, + 32078.247294024684, + 32147.34618824692, + 32228.17683555555, + 32320.73923595062, + 32425.0333894321, + 32541.059296, + 32668.81695565432, + 32808.30636839507, + 32959.527534222216, + 33122.480453135795, + 33297.1651251358, + 33483.58155022222, + 33681.72972839506, + 33891.609659654314, + 34113.221344000005, + 34346.5647814321, + 34591.639971950615, + 34848.44691555555, + 35116.985612246914, + 35397.256062024695, + 35689.25826488889, + 35992.992220839515, + 36308.45792987654, + 36635.65539199999, + 36974.58460720988, + 37325.245575506175, + 37687.63829688889, + 38061.76277135804, + 38447.61899891358, + 38845.206979555565, + 39254.52671328395, + 39675.57820009877, + 40108.36144, + 30419.642079999998, + 30427.921609876543, + 30447.932892839515, + 30479.675928888897, + 30523.150718024695, + 30578.35726024692, + 30645.295555555556, + 30723.965603950626, + 30814.3674054321, + 30916.50096000001, + 31030.36626765433, + 31155.963328395068, + 31293.292142222224, + 31442.3527091358, + 31603.145029135812, + 31775.66910222223, + 31959.924928395067, + 32155.91250765432, + 32363.631840000002, + 32583.082925432103, + 32814.26576395062, + 33057.18035555556, + 33311.826700246915, + 33578.20479802469, + 33856.31464888889, + 34146.156252839515, + 34447.72960987655, + 34761.034719999996, + 35086.07158320989, + 35422.84019950618, + 35771.34056888889, + 36131.57269135803, + 36503.536566913586, + 36887.23219555557, + 37282.65957728396, + 37689.81871209877, + 38108.709599999995, + 31967.575711999998, + 31989.822089876543, + 32023.800220839512, + 32069.51010488889, + 32126.95174202469, + 32196.125132246918, + 32277.030275555553, + 32369.66717195061, + 32474.035821432102, + 32590.136223999998, + 32717.968379654318, + 32857.532288395065, + 33008.82795022222, + 33171.855365135794, + 33346.6145331358, + 33533.10545422223, + 33731.328128395064, + 33941.28255565432, + 34162.968736, + 34396.3866694321, + 34641.536355950615, + 34898.41779555555, + 35167.030988246916, + 35447.37593402468, + 35739.45263288888, + 36043.261084839505, + 36358.801289876545, + 36686.073248, + 37025.076959209866, + 37375.81242350617, + 37738.27964088888, + 38112.47861135803, + 38498.40933491358, + 38896.071811555565, + 39305.46604128395, + 39726.59202409876, + 40159.449759999996, + 30460.875039999995, + 30469.017609876537, + 30488.891932839502, + 30520.498008888888, + 30563.835838024686, + 30618.905420246912, + 30685.706755555555, + 30764.239843950614, + 30854.504685432097, + 30956.501279999997, + 31070.229627654324, + 31195.689728395057, + 31332.881582222217, + 31481.805189135794, + 31642.4605491358, + 31814.847662222215, + 31998.966528395064, + 32194.81714765432, + 32402.399520000003, + 32621.713645432093, + 32852.75952395062, + 33095.537155555554, + 33350.04654024691, + 33616.28767802469, + 33894.26056888888, + 34183.96521283951, + 34485.40160987655, + 34798.56975999999, + 35123.46966320987, + 35460.10131950617, + 35808.46472888888, + 36168.55989135803, + 36540.386806913586, + 36923.945475555556, + 37319.23589728394, + 37726.25807209877, + 38145.01199999999, + 32015.625775999993, + 32037.94664987654, + 32071.9992768395, + 32117.78365688888, + 32175.29979002469, + 32244.54767624691, + 32325.527315555555, + 32418.238707950615, + 32522.681853432096, + 32638.856752000003, + 32766.763403654324, + 32906.40180839505, + 33057.771966222215, + 33220.8738771358, + 33395.7075411358, + 33582.27295822222, + 33780.57012839506, + 33990.59905165432, + 34212.359727999996, + 34445.8521574321, + 34691.07633995061, + 34948.032275555546, + 35216.71996424691, + 35497.13940602469, + 35789.29060088889, + 36093.1735488395, + 36408.78824987654, + 36736.134704, + 37075.21291120988, + 37426.02287150616, + 37788.56458488888, + 38162.83805135802, + 38548.843270913574, + 38946.58024355557, + 39356.04896928395, + 39777.249448098766, + 40210.18168000001, + 30501.751599999992, + 30509.757209876538, + 30529.4945728395, + 30560.963688888885, + 30604.164558024684, + 30659.097180246907, + 30725.76155555555, + 30804.157683950612, + 30894.285565432092, + 30996.145199999995, + 31109.736587654326, + 31235.05972839506, + 31372.114622222212, + 31520.901269135797, + 31681.419669135797, + 31853.669822222215, + 32037.651728395063, + 32233.365387654325, + 32440.810799999996, + 32659.987965432094, + 32890.89688395062, + 33133.53755555555, + 33387.90998024691, + 33654.01415802469, + 33931.85008888888, + 34221.41777283951, + 34522.71720987654, + 34835.7484, + 35160.511343209866, + 35497.00603950617, + 35845.23248888888, + 36205.190691358024, + 36576.88064691358, + 36960.302355555556, + 37355.455817283946, + 37762.34103209877, + 38180.95799999999, + 32063.319439999992, + 32085.714809876536, + 32119.841932839507, + 32165.70080888888, + 32223.291438024688, + 32292.613820246912, + 32373.66795555556, + 32466.453843950618, + 32570.971485432096, + 32687.220879999997, + 32815.20202765432, + 32954.91492839506, + 33106.35958222221, + 33269.535989135795, + 33444.4441491358, + 33631.08406222222, + 33829.45572839506, + 34039.55914765432, + 34261.39431999999, + 34494.961245432096, + 34740.25992395061, + 34997.290355555546, + 35266.052540246914, + 35546.54647802469, + 35838.77216888889, + 36142.72961283951, + 36458.41880987654, + 36785.83975999999, + 37124.99246320987, + 37475.87691950616, + 37838.49312888888, + 38212.84109135803, + 38598.92080691357, + 38996.732275555565, + 39406.27549728395, + 39827.55047209876, + 40260.55719999999, + 30542.27176, + 30550.14040987654, + 30569.740812839504, + 30601.07296888889, + 30644.13687802469, + 30698.932540246915, + 30765.459955555558, + 30843.719123950617, + 30933.7100454321, + 31035.432720000004, + 31148.887147654328, + 31274.07332839506, + 31410.991262222215, + 31559.6409491358, + 31720.022389135804, + 31892.13558222223, + 32075.980528395063, + 32271.55722765432, + 32478.86568, + 32697.9058854321, + 32928.67784395062, + 33171.18155555556, + 33425.41702024692, + 33691.384238024686, + 33969.083208888886, + 34258.51393283951, + 34559.676409876534, + 34872.57063999999, + 35197.19662320988, + 35533.55435950617, + 35881.64384888888, + 36241.465091358026, + 36613.01808691358, + 36996.30283555555, + 37391.31933728395, + 37798.06759209876, + 38216.54759999998, + 32110.656704, + 32133.12656987654, + 32167.328188839507, + 32213.26156088888, + 32270.926686024686, + 32340.323564246915, + 32421.452195555554, + 32514.312579950612, + 32618.904717432095, + 32735.228608, + 32863.284251654324, + 33003.07164839506, + 33154.59079822221, + 33317.841701135796, + 33492.8243571358, + 33679.53876622222, + 33877.98492839507, + 34088.16284365432, + 34310.072512, + 34543.713933432104, + 34789.08710795061, + 35046.19203555555, + 35315.02871624692, + 35595.59715002469, + 35887.897336888884, + 36191.9292768395, + 36507.69296987654, + 36835.188416, + 37174.41561520988, + 37525.37456750617, + 37888.06527288888, + 38262.48773135804, + 38648.64194291357, + 39046.52790755557, + 39456.145625283934, + 39877.49509609876, + 40310.57631999999, + 30546.752003582427, + 30554.60543566902, + 30574.190620842033, + 30605.50755910146, + 30648.55625044731, + 30703.336694879577, + 30769.848892398273, + 30848.09284300338, + 30938.068546694914, + 31039.776003472864, + 31153.21521333723, + 31278.386176288015, + 31415.28889232522, + 31563.92336144885, + 31724.289583658905, + 31896.387558955375, + 32080.217287338266, + 32275.77876880757, + 32483.07200336329, + 32702.096991005434, + 32932.85373173401, + 33175.342225548986, + 33429.5624724504, + 33695.514472438226, + 33973.19822551246, + 34262.61373167313, + 34563.76099092022, + 34876.64000325372, + 35201.25076867364, + 35537.59328717999, + 35885.667558772744, + 36245.47358345194, + 36617.01136121755, + 37000.28089206957, + 37395.28217600801, + 37802.01521303287, + 38220.48000314415, + 32115.894404188388, + 32138.372547404884, + 32172.58244370781, + 32218.524093097145, + 32276.197495572895, + 32345.60265113509, + 32426.739559783684, + 32519.608221518694, + 32624.208636340136, + 32740.540804247983, + 32868.604725242265, + 33008.40039932296, + 33159.92782649008, + 33323.1870067436, + 33498.17794008357, + 33684.900626509945, + 33883.355066022734, + 34093.541258621946, + 34315.45920430759, + 34549.10890307964, + 34794.49035493811, + 35051.603559883, + 35320.448517914316, + 35601.02522903206, + 35893.33369323621, + 36197.37391052678, + 36513.14588090377, + 36840.64960436718, + 37179.885080917025, + 37530.852310553266, + 37893.55129327593, + 38267.98202908503, + 38654.14451798054, + 39052.03875996249, + 39461.664755030826, + 39883.02250318559, + 40316.11200442678, + 32270.492799999993, + 32255.21520987654, + 32251.669372839508, + 32259.855288888884, + 32279.772958024685, + 32311.42238024691, + 32354.803555555547, + 32409.916483950616, + 32476.761165432094, + 32555.337600000003, + 32645.645787654325, + 32747.685728395056, + 32861.457422222215, + 32986.96086913579, + 33124.196069135796, + 33273.16302222222, + 33433.86172839506, + 33606.29218765432, + 33790.45439999999, + 33986.348365432095, + 34193.97408395061, + 34413.33155555555, + 34644.42078024691, + 34887.241758024684, + 35141.79448888888, + 35408.0789728395, + 35686.09520987654, + 35975.84319999999, + 36277.322943209874, + 36590.53443950616, + 36915.47768888889, + 37252.152691358024, + 37600.559446913576, + 37960.69795555556, + 38332.56821728395, + 38716.17023209876, + 39111.50399999999, + 34990.96831999999, + 35026.02800987654, + 35072.81945283951, + 35131.34264888888, + 35201.59759802468, + 35283.58430024691, + 35377.30275555555, + 35482.75296395061, + 35599.93492543209, + 35728.84864, + 35869.49410765432, + 36021.871328395064, + 36185.98030222221, + 36361.8210291358, + 36549.3935091358, + 36748.69774222222, + 36959.733728395055, + 37182.50146765432, + 37417.00096, + 37663.2322054321, + 37921.19520395061, + 38190.88995555555, + 38472.31646024692, + 38765.474718024685, + 39070.364728888875, + 39386.9864928395, + 39715.34000987652, + 40055.42527999999, + 40407.24230320987, + 40770.79107950616, + 41146.07160888888, + 41533.083891358016, + 41931.82792691357, + 42342.30371555556, + 42764.51125728396, + 43198.45055209876, + 43644.12159999999 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/TamScalable_SP_Half.json b/examples/TamScalable_SP_Half.json new file mode 100644 index 0000000..27a4cb8 --- /dev/null +++ b/examples/TamScalable_SP_Half.json @@ -0,0 +1,4241 @@ +{ + "central_system": { + "control_type": "FIXED_OUTLET_TEMPERATURE", + "external_inlet_height": 0.9583333333333334, + "external_outlet_height": 0.0, + "heat_source_configurations": [ + { + "companion_heat_source_id": "compressor", + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.75, + 0.8333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 15000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 15000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom" + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSAIRTOWATERHEATPUMP" + }, + "performance": { + "compressor_lockout_temperature_hysteresis": 0.0, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 277.59444444444443, + 277.65, + 278.15, + 278.65, + 279.15, + 279.65, + 280.15, + 280.3723, + 280.65, + 281.15, + 281.65, + 282.15, + 282.65, + 283.15, + 283.65, + 284.15, + 284.65, + 285.15, + 285.65, + 286.15, + 286.65, + 287.15, + 287.65, + 288.15, + 288.65, + 288.70555559999997, + 373.15 + ], + "heat_source_temperature": [ + 273.15, + 275.12530864197527, + 277.1006172839506, + 279.0759259259259, + 281.0512345679012, + 283.02654320987654, + 285.0018518518518, + 286.9771604938271, + 288.95246913580246, + 290.92777777777775, + 292.9030864197531, + 294.8783950617284, + 296.8537037037037, + 298.82901234567896, + 300.8043209876543, + 302.7796296296296, + 304.75493827160494, + 306.73024691358023, + 308.7055555555555, + 310.68086419753087, + 312.65617283950616, + 314.63148148148144, + 316.6067901234568, + 318.5820987654321, + 320.55740740740737, + 322.5327160493827, + 324.508024691358, + 326.4833333333333, + 328.45864197530864, + 330.4339506172839, + 332.4092592592592, + 334.38456790123456, + 336.35987654320985, + 338.3351851851852, + 340.3104938271605, + 342.2858024691358, + 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222, + 338.15 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 14307.151534031205, + 14313.66478323207, + 14319.81484839499, + 14325.582158836462, + 14330.93277238854, + 14335.818375398863, + 14340.176282730616, + 14343.929437762583, + 14346.986412389075, + 14349.241407020007, + 14350.574250580832, + 14350.850400512578, + 14349.920942771865, + 14347.622591830846, + 14343.777690677261, + 14338.19421081442, + 14330.665752261166, + 14320.971543551963, + 14308.876441736802, + 14294.130932381258, + 14276.471129566471, + 14255.618775889141, + 14231.28124246154, + 14203.151528911514, + 14170.908263382475, + 14134.215702533384, + 14092.723731538787, + 14046.0678640888, + 13993.869242389103, + 13935.734637160916, + 13871.256447641079, + 13800.012701581956, + 13721.567055251488, + 13635.468793433198, + 13541.25282942616, + 13438.439705045024, + 13326.535590620006, + 14217.611731950688, + 14238.158319831542, + 14257.77570853829, + 14276.449250060674, + 14294.149924904026, + 14310.834342089247, + 14326.44473915278, + 14340.908982146662, + 14354.14056563848, + 14366.038612711392, + 14376.48787496414, + 14385.358732510993, + 14392.507193981832, + 14397.774896522074, + 14400.989105792729, + 14401.962715970361, + 14400.494249747082, + 14396.367858330608, + 14389.35332144419, + 14379.206047326681, + 14365.667072732467, + 14348.46306293151, + 14327.306311709352, + 14301.894741367092, + 14271.911902721416, + 14237.026975104533, + 14196.89476636426, + 14151.15571286397, + 14099.435879482597, + 14041.346959614646, + 13976.486275170193, + 13904.436776574867, + 13824.767042769896, + 13737.031281212032, + 13640.769327873628, + 13535.506647242597, + 13420.7543323224, + 14325.68734289586, + 14332.103823521034, + 14338.162211503573, + 14343.842831854981, + 14349.11163810232, + 14353.920212288234, + 14358.20576497092, + 14361.891135224152, + 14364.884790637267, + 14367.080827315167, + 14368.358969878322, + 14368.584571462769, + 14367.608613720122, + 14365.267706817556, + 14361.384089437803, + 14355.76562877918, + 14348.20582055555, + 14338.483788996364, + 14326.36428684664, + 14311.597695366936, + 14293.92002433341, + 14273.052912037772, + 14248.703625287297, + 14220.565059404833, + 14188.315738228795, + 14151.61981411316, + 14110.127067927484, + 14063.47290905687, + 14011.278375402013, + 13953.150133379151, + 13888.680477920116, + 13817.447332472273, + 13739.014248998592, + 13652.930407977572, + 13558.730618403317, + 13455.93531778548, + 13344.050572149268, + 14235.203392711137, + 14255.652199893599, + 14275.175921565153, + 14293.759775602624, + 14311.374608398426, + 14327.976894860516, + 14343.508738412427, + 14357.897870993265, + 14371.0576530577, + 14382.887073575963, + 14393.270750033862, + 14402.078928432757, + 14409.167483289593, + 14414.377917636877, + 14417.537363022673, + 14418.458579510638, + 14416.939955679954, + 14412.76550862541, + 14405.704883957349, + 14395.513355801664, + 14381.931826799844, + 14364.686828108934, + 14343.490519401534, + 14318.040688865825, + 14288.02075320556, + 14253.099757640033, + 14212.93237590414, + 14167.158910248318, + 14115.405291438594, + 14057.283078756522, + 13992.389459999273, + 13920.307251479564, + 13840.60489802567, + 13752.83647298143, + 13656.541678206277, + 13551.245844075196, + 13436.459929478733, + 14493.000503574378, + 14498.54389377351, + 14503.775193026919, + 14508.673787601163, + 14513.204692278372, + 14517.318550356218, + 14520.951633647972, + 14524.025842482455, + 14526.448705704057, + 14528.113380672748, + 14528.898653264036, + 14528.668937869015, + 14527.274277394357, + 14524.550343262294, + 14520.318435410603, + 14514.385482292664, + 14506.54404087739, + 14496.57229664929, + 14484.234063608428, + 14469.278784270427, + 14451.441529666488, + 14430.442999343386, + 14405.989521363435, + 14377.773052304554, + 14345.471177260204, + 14308.747109839425, + 14267.249692166812, + 14220.613394882535, + 14168.45831714233, + 14110.39018661751, + 14046.00035949494, + 13974.86582047705, + 13896.549182781859, + 13810.598688142929, + 13716.548206809413, + 13613.917237546011, + 13502.210907633, + 14394.042701009836, + 14413.609985849414, + 14432.289372979889, + 14450.064873261768, + 14466.906126071131, + 14482.768399299632, + 14497.592589354485, + 14511.305221158469, + 14523.81844814993, + 14535.030052282791, + 14544.82344402654, + 14553.067662366218, + 14559.617374802441, + 14564.312877351405, + 14566.98009454486, + 14567.430579430138, + 14565.461513570099, + 14560.855707043216, + 14553.381598443508, + 14542.793254880571, + 14528.830371979546, + 14511.218273881168, + 14489.667913241723, + 14463.87587123307, + 14433.524357542645, + 14398.28121037343, + 14357.79989644398, + 14311.719510988434, + 14259.664777756487, + 14201.246049013389, + 14136.05930553998, + 14063.686156632652, + 13983.693840103371, + 13895.635222279661, + 13799.048798004631, + 13693.45869063694, + 13578.37465205082, + 14661.195602872449, + 14665.862006905258, + 14670.26264413965, + 14674.375962097238, + 14678.166036815197, + 14681.582572846266, + 14684.560903258764, + 14687.021989636563, + 14688.87242207912, + 14690.004419201437, + 14690.2958281341, + 14689.610124523244, + 14687.796412530597, + 14684.689424833443, + 14680.109522624623, + 14673.862695612559, + 14665.740562021227, + 14655.520368590185, + 14642.964990574548, + 14627.822931745008, + 14609.828324387809, + 14588.700929304776, + 14564.146135813291, + 14535.854961746316, + 14503.504053452378, + 14466.755685795544, + 14425.257762155492, + 14378.643814427436, + 14326.53300302217, + 14268.530116866054, + 14204.225573401007, + 14133.19541858453, + 14055.001326889673, + 13969.190601305063, + 13875.29617333491, + 13772.836602998961, + 13661.316078832553, + 14553.806919827204, + 14572.490017382419, + 14590.322701729698, + 14607.287776713216, + 14623.353674692742, + 14638.474456543605, + 14652.589811656697, + 14665.625057938494, + 14677.491141811015, + 14688.084638211853, + 14697.287750594183, + 14704.968310926739, + 14710.9797796938, + 14715.161245895253, + 14717.337427046528, + 14717.318669178636, + 14714.900946838117, + 14709.86586308713, + 14701.980649503374, + 14690.998166180108, + 14676.65690172619, + 14658.680973266004, + 14636.780126439533, + 14610.649735402314, + 14579.970802825464, + 14544.409959895638, + 14503.61946631508, + 14457.237210301611, + 14404.886708588598, + 14346.177106424992, + 14280.703177575288, + 14208.045324319573, + 14127.769577453488, + 14039.427596288253, + 13942.556668650646, + 13836.679710883, + 13721.305267843238, + 14830.27026718349, + 14834.055812189177, + 14837.622236994144, + 14840.947050375053, + 14843.993389624135, + 14846.710020549195, + 14849.03133747359, + 14850.877363236259, + 14852.153749191695, + 14852.751775209977, + 14852.548349676732, + 14851.406009493152, + 14849.17292007602, + 14845.68287535767, + 14840.755297785998, + 14834.195238324486, + 14825.793376452159, + 14815.326020163637, + 14802.555105969084, + 14787.22819889423, + 14769.078492480403, + 14747.824808784466, + 14723.171598378854, + 14694.808940351588, + 14662.412542306243, + 14625.643740361957, + 14584.149499153438, + 14537.562411830977, + 14485.5007000604, + 14427.568214023133, + 14363.354432416158, + 14292.434462452007, + 14214.369039858817, + 14128.704528880242, + 14034.972922275547, + 13932.691841319556, + 13821.364535802632, + 14714.4946800911, + 14732.290965155596, + 14749.274618212665, + 14765.42723609018, + 14780.71604413157, + 14795.093896195865, + 14808.49927465762, + 14820.856290407004, + 14832.074682849714, + 14842.04981990702, + 14850.66269801578, + 14857.7799421284, + 14863.253805712875, + 14866.922170752738, + 14868.608547747102, + 14868.122075710664, + 14865.257522173659, + 14859.795283181915, + 14851.501383296809, + 14840.127475595282, + 14825.410841669871, + 14807.074391628661, + 14784.826664095292, + 14758.361826208991, + 14727.359673624545, + 14691.48563051231, + 14650.390749558208, + 14603.711711963728, + 14551.070827445921, + 14492.076034237416, + 14426.320899086406, + 14353.384617256645, + 14272.832012527462, + 14184.213537193746, + 14087.065272065958, + 13980.90892647014, + 13865.25183824786, + 15000.222080291212, + 15003.122916288457, + 15005.851601133067, + 15008.384704856762, + 15010.684426006826, + 15012.698591646114, + 15014.360657353045, + 15015.589707221607, + 15016.290453861344, + 15016.353238397398, + 15015.654030470441, + 15014.054428236723, + 15011.401658368088, + 15007.528576051913, + 15002.253664991158, + 14995.381037404353, + 14986.700434025577, + 14975.987224104509, + 14963.002405406362, + 14947.492604211922, + 14929.190075317569, + 14907.812702035231, + 14883.063996192393, + 14854.633098132113, + 14822.19477671304, + 14785.409429309357, + 14743.923081810834, + 14697.367388622806, + 14645.359632666159, + 14587.502725377382, + 14523.385206708492, + 14452.58124512709, + 14374.650637616354, + 14289.138809675009, + 14195.57681531737, + 14093.481337073297, + 13982.354685988235, + 14876.104570119682, + 14893.011457222203, + 14909.143790217173, + 14924.481958916132, + 14938.991981646215, + 14952.62550525011, + 14965.31980508606, + 14976.997785027908, + 14987.567977465047, + 14996.924543302432, + 15004.947271960582, + 15011.501581375596, + 15016.438517999133, + 15019.594756798435, + 15020.792601256284, + 15019.839983371046, + 15016.530463656647, + 15010.643231142592, + 15001.943103373955, + 14990.180526411345, + 14975.091574830967, + 14956.397951724606, + 14933.806988699584, + 14907.01164587879, + 14875.690511900713, + 14839.507803919374, + 14798.113367604388, + 14751.142677140922, + 14698.216835229701, + 14638.94257308704, + 14572.912250444819, + 14499.703855550462, + 14418.881005166984, + 14329.992944572952, + 14232.574547562515, + 14126.146316445383, + 14010.214382046826, + 15171.048583369507, + 15173.060883256467, + 15174.948323489276, + 15176.686535354696, + 15178.23677865508, + 15179.545941708324, + 15180.546541347901, + 15181.15672292286, + 15181.280260297803, + 15180.806555852914, + 15179.610640483927, + 15177.553173602148, + 15174.480443134466, + 15170.224365523323, + 15164.602485726726, + 15157.417977218265, + 15148.45964198707, + 15137.501910537867, + 15124.304841890933, + 15108.614123582114, + 15090.161071662833, + 15068.662630700064, + 15043.821373776364, + 15015.325502489843, + 14982.848846954192, + 14946.05086579866, + 14904.57664616807, + 14858.056903722798, + 14806.107982638816, + 14748.33185560762, + 14684.316123836321, + 14613.634017047561, + 14535.844393479565, + 14450.491739886127, + 14357.1061715366, + 14255.20343221592, + 14144.284894224555, + 15038.635135621289, + 15054.650079025703, + 15069.928842921785, + 15084.450610104768, + 15098.180191885458, + 15111.068028090238, + 15123.05018706104, + 15134.04836565536, + 15143.969889246284, + 15152.707711722443, + 15160.140415488055, + 15166.132211462895, + 15170.532939082286, + 15173.178066297158, + 15173.888689573976, + 15172.471533894803, + 15168.718952757223, + 15162.40892817443, + 15153.305070675167, + 15141.156619303762, + 15125.698441620065, + 15106.651033699543, + 15083.720520133202, + 15056.598654027632, + 15024.962817004993, + 14988.476019202975, + 14946.786899274875, + 14899.529724389553, + 14846.324390231423, + 14786.776421000452, + 14720.47696941222, + 14647.002816697828, + 14565.916372603977, + 14476.76567539291, + 14379.084391842449, + 14272.39181724599, + 14156.1928754125, + 15247.278286802273, + 15248.894320507014, + 15250.40662390778, + 15251.790410925361, + 15253.006523996088, + 15254.001434071864, + 15254.707240620155, + 15255.041671624007, + 15254.908083582019, + 15254.195461508374, + 15252.778418932801, + 15250.517197900608, + 15247.25766897267, + 15242.831331225445, + 15237.055312250915, + 15229.73236815668, + 15220.650883565864, + 15209.584871617195, + 15196.293973964941, + 15180.523460778944, + 15162.004230744627, + 15140.452811062964, + 15115.571357450506, + 15087.04765413936, + 15054.555113877217, + 15017.75277792732, + 14976.285316068483, + 14929.783026595092, + 14877.8618363171, + 14820.123300560024, + 14756.15460316495, + 14685.528556488529, + 14607.803601402982, + 14522.52380729609, + 14429.218872071211, + 14327.404122147276, + 14216.580512458759, + 15111.19149561093, + 15126.809073721211, + 15141.707628950402, + 15155.865807454278, + 15169.2478839042, + 15181.803761487083, + 15193.468971905393, + 15204.164675377193, + 15213.797660636114, + 15222.260344931316, + 15229.430774027562, + 15235.172622205167, + 15239.335192260027, + 15241.753415503601, + 15242.247851762893, + 15240.6246893805, + 15236.675745214576, + 15230.178464638846, + 15220.895921542613, + 15208.576818330706, + 15192.95548592357, + 15173.751883757192, + 15150.671599783129, + 15123.405850468514, + 15091.631480796039, + 15055.01096426396, + 15013.192402886112, + 14965.809527191901, + 14912.481696226254, + 14852.813897549731, + 14786.39674723843, + 14712.806489884006, + 14631.604998593686, + 14542.339774990283, + 14444.543949212148, + 14337.73627991324, + 14221.421154263035, + 15342.747274982557, + 15343.86723453688, + 15344.909948385912, + 15345.850109071487, + 15346.648037650997, + 15347.249683697402, + 15347.586625299224, + 15347.576069060568, + 15347.12085010109, + 15346.109432056031, + 15344.415907076174, + 15341.899995827886, + 15338.407047493101, + 15333.768039769322, + 15327.799578869612, + 15320.303899522603, + 15311.068864972494, + 15299.867966979062, + 15286.46032581763, + 15270.590690279107, + 15251.989437669958, + 15230.372573812234, + 15205.441733043519, + 15176.884178217004, + 15144.37280070141, + 15107.566120381054, + 15066.108285655813, + 15019.629073441112, + 14967.743889167976, + 14910.053766782967, + 14846.14536874824, + 14775.590986041487, + 14697.948538156003, + 14612.761573100617, + 14519.559267399753, + 14417.856426093387, + 14307.153482737052, + 15202.084879694563, + 15217.205373399835, + 15231.628358895356, + 15245.331811960044, + 15258.279336888389, + 15270.420166490456, + 15281.689162091843, + 15292.006813533748, + 15301.279239172922, + 15309.398185881695, + 15316.241029047946, + 15321.670772575133, + 15325.53604888228, + 15327.671118903972, + 15327.895872090376, + 15326.015826407222, + 15321.82212833578, + 15315.091552872931, + 15305.586503531085, + 15293.05501233825, + 15277.230739837985, + 15257.832975089417, + 15234.566635667234, + 15207.122267661702, + 15175.176045678669, + 15138.389772839504, + 15096.410880781188, + 15048.872429656256, + 14995.393108132796, + 14935.577233394488, + 14869.014751140561, + 14795.281235585808, + 14713.9378894606, + 14624.531544010882, + 14526.594658998147, + 14419.645322699478, + 14303.187251907491, + 15515.315611084752, + 15515.539448963553, + 15515.733977536327, + 15515.872950599962, + 15515.915750466886, + 15515.807387965137, + 15515.478502438282, + 15514.845361745482, + 15513.809862261449, + 15512.259528876462, + 15510.067514996375, + 15507.092602542602, + 15503.17920195214, + 15498.15735217754, + 15491.84272068692, + 15484.036603463965, + 15474.525925007929, + 15463.083238333638, + 15449.46672497148, + 15433.420194967412, + 15414.673086882958, + 15392.94046779521, + 15367.923033296822, + 15339.307107496028, + 15306.764643016617, + 15269.95322099794, + 15228.516051094943, + 15182.081971478106, + 15130.265448833494, + 15072.66657836274, + 15008.871083783039, + 14938.450317327151, + 14860.961259743417, + 14775.946520295725, + 14682.934336763543, + 14581.438575441909, + 14470.95873114142, + 15366.452262828343, + 15380.675840568541, + 15394.24087809694, + 15407.12414417613, + 15419.288036084281, + 15430.680579615137, + 15441.235429077979, + 15450.87186729769, + 15459.494805614702, + 15466.994783885017, + 15473.247970480199, + 15478.116162287384, + 15481.446784709282, + 15483.072891664173, + 15482.813165585872, + 15480.471917423809, + 15475.839086642942, + 15468.690241223825, + 15458.786577662551, + 15445.874920970798, + 15429.687724675814, + 15409.943070820415, + 15386.34466996296, + 15358.581861177396, + 15326.329612053247, + 15289.248518695573, + 15246.984805725053, + 15199.170326277866, + 15145.422562005802, + 15085.344623076213, + 15018.525248172018, + 14944.538804491684, + 14862.945287749275, + 14773.290322174402, + 14675.10516051224, + 14567.906684023565, + 14451.197402484682, + 15688.75100502075, + 15688.074962760631, + 15687.417870044139, + 15686.752541923208, + 15686.037421965342, + 15685.216582253599, + 15684.21972338662, + 15682.962174478618, + 15681.344893159365, + 15679.25446557419, + 15676.563106383994, + 15673.12865876525, + 15668.794594410012, + 15663.39001352589, + 15656.729644836041, + 15648.613845579213, + 15638.828601509715, + 15627.145526897431, + 15613.321864527798, + 15597.100485701816, + 15578.209890236085, + 15556.364206462744, + 15531.263191229496, + 15502.592229899627, + 15470.022336351982, + 15433.210152980979, + 15391.797950696604, + 15345.413628924394, + 15293.67071560547, + 15236.168367196524, + 15172.491368669796, + 15102.210133513108, + 15024.880703729847, + 14940.044749838953, + 14847.229570874964, + 14745.948094387972, + 14635.698876443601, + 15531.735702901724, + 15545.059938146058, + 15557.764897875884, + 15569.826143837481, + 15581.204866292695, + 15591.847884018956, + 15601.687644309242, + 15610.642222972087, + 15618.61532433162, + 15625.496281227517, + 15631.160055015029, + 15635.467235564985, + 15638.264041263756, + 15639.382319013299, + 15638.639544231137, + 15635.838820850362, + 15630.768881319607, + 15623.20408660311, + 15612.904426180665, + 15599.615518047607, + 15583.068608714884, + 15562.980573208966, + 15539.053915071921, + 15510.976766361373, + 15478.422887650522, + 15441.0516680281, + 15398.50812509846, + 15350.422904981497, + 15296.41228231265, + 15236.07816024297, + 15169.008070439048, + 15094.775173083026, + 15012.938256872661, + 14923.041739021246, + 14824.615665257637, + 14717.175709826266, + 14600.22317548714, + 15863.050827525425, + 15861.47116954248, + 15859.959042403187, + 15858.48632241456, + 15857.010514399146, + 15855.474751695061, + 15853.807796156001, + 15851.924038151228, + 15849.723496565568, + 15847.091818799403, + 15843.90028076871, + 15840.005786904994, + 15835.250870155362, + 15829.463691982486, + 15822.45804236457, + 15814.033339795438, + 15803.97463128442, + 15792.05259235648, + 15778.023527052095, + 15761.629367927339, + 15742.597676053836, + 15720.6416410188, + 15695.460080924984, + 15666.737442390724, + 15634.143800549931, + 15597.334859052065, + 15555.951950062168, + 15509.622034260827, + 15457.957700844243, + 15400.557167524124, + 15337.004280527794, + 15266.868514598116, + 15189.70497299353, + 15105.054387488042, + 15012.443118371233, + 14911.383154448242, + 14801.372113039772, + 15697.93357518405, + 15710.356081136813, + 15722.198872971721, + 15733.436305418738, + 15744.028361723398, + 15753.920653646803, + 15763.044421465602, + 15771.316533972027, + 15778.639488473884, + 15784.901410794522, + 15789.976055272888, + 15793.72280476348, + 15795.986670636343, + 15796.598292777133, + 15795.373939587042, + 15792.115507982842, + 15786.610523396863, + 15778.63213977701, + 15767.939139586748, + 15754.275933805118, + 15737.372561926735, + 15716.94469196175, + 15692.693620435908, + 15664.30627239052, + 15631.455201382467, + 15593.798589484166, + 15550.98024728364, + 15502.62961388447, + 15448.361756905784, + 15387.777372482298, + 15320.46278526429, + 15245.989948417604, + 15163.916443623646, + 15073.785481079396, + 14975.125899497405, + 14867.452166105792, + 14750.26437664822, + 16038.21240672392, + 16035.725420313698, + 16033.354868497574, + 16031.07168883759, + 16028.83244741136, + 16026.579338812056, + 16024.240186148432, + 16021.728441044803, + 16018.943183641031, + 16015.769122592585, + 16012.076595070463, + 16007.72156676124, + 16002.545631867082, + 15996.376013105702, + 15989.025561710376, + 15980.292757429957, + 15969.961708528861, + 15957.802151787084, + 15943.56945250016, + 15927.004604479218, + 15907.834230050947, + 15885.770580057591, + 15860.511533856985, + 15831.740599322498, + 15799.12691284311, + 15762.325239323329, + 15720.975972183252, + 15674.705133358524, + 15623.124373300378, + 15565.830970975616, + 15502.407833866577, + 15432.423497971202, + 15355.43212780298, + 15270.973516390977, + 15178.573085279808, + 15077.741884529674, + 14967.976592716359, + 15865.044212334897, + 15876.562641935498, + 15887.541215514262, + 15897.953080784833, + 15907.757013976421, + 15916.89741983381, + 15925.304331617317, + 15932.893411102881, + 15939.565948581978, + 15945.208862861633, + 15949.69470126447, + 15952.881639628662, + 15954.613482307968, + 15954.719662171708, + 15953.015240604738, + 15949.300907507526, + 15943.362981296077, + 15934.973408901997, + 15923.889765772414, + 15909.855255870034, + 15892.598711673174, + 15871.834594175678, + 15847.262992886952, + 15818.569625831988, + 15785.425839551346, + 15747.488609101138, + 15704.400538053074, + 15655.789858494383, + 15601.270431027895, + 15540.441744772006, + 15472.888917360691, + 15398.182694943445, + 15315.879452185372, + 15225.521192267124, + 15126.63554688493, + 15018.735776250614, + 14901.320769091504, + 16214.2330281316, + 16210.835023469146, + 16207.602679601612, + 16204.5059953461, + 16201.500598035274, + 16198.527743517367, + 16195.51431615617, + 16192.372828831067, + 16189.00142293697, + 16185.283868384404, + 16181.089563599415, + 16176.273535523647, + 16170.676439614306, + 16164.12455984416, + 16156.429808701545, + 16147.389727190368, + 16136.787484830089, + 16124.391879655772, + 16109.957338218002, + 16093.223915582956, + 16073.917295332381, + 16051.748789563582, + 16026.415338889428, + 15997.599512438372, + 15964.969507854423, + 15928.179151297161, + 15886.867897441705, + 15840.660829478798, + 15789.168659114706, + 15731.987726571278, + 15668.700000585924, + 15598.873078411621, + 15522.060185816925, + 15437.800177085954, + 15345.617535018378, + 15245.022370929453, + 15135.510424650007, + 16033.065904404082, + 16043.677950327048, + 16053.790295023553, + 16063.374879190917, + 16072.389272042024, + 16080.776671305346, + 16088.465903224884, + 16095.371422560243, + 16101.393312586593, + 16106.417285094647, + 16110.314680390693, + 16112.94246729659, + 16114.143243149787, + 16113.74523380327, + 16111.562293625588, + 16107.39390550089, + 16101.025180828856, + 16092.226859524768, + 16080.755310019445, + 16066.352529259284, + 16048.746142706246, + 16027.649404337899, + 16002.761196647301, + 15973.766030643133, + 15940.334045849642, + 15902.121010306613, + 15858.768320569443, + 15809.903001709043, + 15755.137707311917, + 15694.070719480154, + 15626.285948831384, + 15551.352934498798, + 15468.826844131203, + 15378.2484738929, + 15279.144248463817, + 15171.026221039449, + 15053.392073330804, + 16391.109934654072, + 16386.797244793914, + 16382.699764379884, + 16378.786553484148, + 16375.012300694427, + 16371.31732311399, + 16367.627566361705, + 16363.854604571994, + 16359.89564039484, + 16355.633504995802, + 16350.936658055994, + 16345.659187772104, + 16339.640810856403, + 16332.706872536712, + 16324.668346556413, + 16315.321835174476, + 16304.449569165414, + 16291.819407819334, + 16277.184838941885, + 16260.284978854295, + 16240.844572393375, + 16218.573992911464, + 16193.169242276517, + 16164.311950872005, + 16131.669377597014, + 16094.894409866165, + 16053.625563609648, + 16007.486983273247, + 15956.088441818281, + 15899.025340721662, + 15835.878709975857, + 15766.215208088883, + 15689.58712208436, + 15605.532367501459, + 15513.574488394894, + 15413.222657335007, + 15303.971675407627, + 16201.996898831665, + 16211.700293486645, + 16220.944438409879, + 16229.700067282381, + 16237.923542300714, + 16245.556854177028, + 16252.527622139025, + 16258.749093929962, + 16264.120145808698, + 16268.525282549626, + 16271.834637442731, + 16273.90397229355, + 16274.574677423196, + 16273.673771668338, + 16271.013902381219, + 16266.393345429666, + 16259.59600519703, + 16250.391414582282, + 16238.534734999923, + 16223.766756380024, + 16205.813897168247, + 16184.388204325802, + 16159.187353329466, + 16129.894648171581, + 16096.179021360089, + 16057.69503391845, + 16014.082875385717, + 15964.968363816517, + 15909.96294578102, + 15848.663696365003, + 15780.653319169767, + 15705.500146312197, + 15622.758138424755, + 15531.966884655458, + 15432.651602667902, + 15324.323138641232, + 15206.477967270184, + 16568.840326587197, + 16563.60930746333, + 16558.643368887202, + 16553.91063218603, + 16549.364847202578, + 16544.94539229519, + 16540.577274337775, + 16536.17112871981, + 16531.62321934633, + 16526.815438637954, + 16521.615307530847, + 16515.87597547676, + 16509.436220442996, + 16502.120448912458, + 16493.73869588356, + 16484.086624870335, + 16472.945527902353, + 16460.08232552477, + 16445.24956679829, + 16428.18542929921, + 16408.613719119367, + 16386.243870866183, + 16360.77094766264, + 16331.875641147286, + 16299.224271474248, + 16262.468787313202, + 16221.246765849406, + 16175.181412783682, + 16123.881562332406, + 16066.941677227554, + 16003.94184871663, + 15934.447796562723, + 15858.0108690445, + 15774.168042956173, + 15682.441923607548, + 15582.34074482397, + 15473.358368946372, + 16371.835400447952, + 16380.627915979681, + 16389.00192997375, + 16396.926969094853, + 16404.358188523234, + 16411.236371954725, + 16417.48793160069, + 16423.024908188097, + 16427.744970959473, + 16431.53141767289, + 16434.25317460201, + 16435.764796536056, + 16435.906466779816, + 16434.503997153657, + 16431.36882799349, + 16426.298028150817, + 16419.074294992686, + 16409.465954401738, + 16397.226960776152, + 16382.09689702969, + 16363.800974591684, + 16342.05003340704, + 16316.540541936205, + 16286.954597155202, + 16252.959924555646, + 16214.209878144693, + 16170.343440445087, + 16120.985222495116, + 16065.745463848625, + 16004.220032575084, + 15935.990425259486, + 15860.623767002375, + 15777.672811419905, + 15686.675940643772, + 15587.157165321249, + 15478.62612461518, + 15360.578086203961, + 16747.42136161707, + 16741.26839204298, + 16735.430696568626, + 16729.875457776277, + 16724.555486763766, + 16719.40922314447, + 16714.36073504736, + 16709.319719116964, + 16704.181500513383, + 16698.827032912282, + 16693.122898504884, + 16686.92130799798, + 16680.06010061396, + 16672.362744090733, + 16663.638334681804, + 16653.681597156257, + 16642.272884798702, + 16629.17817940936, + 16614.149091303992, + 16596.922859313927, + 16577.22235078608, + 16554.75606158292, + 16529.218116082488, + 16500.288267178366, + 16467.631896279763, + 16430.90001331139, + 16389.729256713574, + 16343.741893442173, + 16292.54581896864, + 16235.734557279968, + 16172.887260878762, + 16103.56871078314, + 16027.329316526817, + 15943.705116159077, + 15852.217776244757, + 15752.374591864289, + 15643.668486613626, + 16542.579571473485, + 16550.459019761834, + 16557.961011405958, + 16565.053866054233, + 16571.691531870587, + 16577.81358553453, + 16583.34523224112, + 16588.197305700996, + 16592.26626814036, + 16595.43421030098, + 16597.56885144018, + 16598.523539330887, + 16598.137250261556, + 16596.23458903623, + 16592.625788974496, + 16587.106711911565, + 16579.45884819815, + 16569.449316700557, + 16556.830864800675, + 16541.341868395928, + 16522.706331899342, + 16500.63388823948, + 16474.819798860495, + 16444.944953722086, + 16410.67587129955, + 16371.66469858371, + 16327.549211080997, + 16277.952812813377, + 16222.48453631839, + 16160.739042649184, + 16092.29662137441, + 16016.723190578325, + 15933.57029686075, + 15842.375115337054, + 15742.6604496382, + 15633.934731910718, + 15515.692022816675, + 16926.85015482001, + 16919.771636488666, + 16913.058908259445, + 16906.678213969673, + 16900.58142597222, + 16894.706045135557, + 16888.975200843666, + 16883.297650996163, + 16877.567782008176, + 16871.665608810443, + 16865.45677484923, + 16858.792552086394, + 16851.509840999362, + 16843.43117058112, + 16834.36469834021, + 16824.10421030077, + 16812.429121002475, + 16799.104473500593, + 16783.88093936594, + 16766.494818684907, + 16746.66804005945, + 16724.10816060709, + 16698.508365960945, + 16669.547470269637, + 16636.88991619742, + 16600.185774924077, + 16559.070746144964, + 16513.16615807102, + 16462.078967428737, + 16405.40175946019, + 16342.712747922993, + 16273.57577509034, + 16197.540311751012, + 16114.141457209327, + 16022.899939285193, + 15923.322114314076, + 15814.899967147016, + 16714.227531519056, + 16721.19176417898, + 16727.81988178749, + 16734.078996976623, + 16739.921850893996, + 16745.286813202794, + 16750.097882081755, + 16754.264684225207, + 16757.682474843044, + 16760.232137660678, + 16761.78018491915, + 16762.17875737504, + 16761.265624300508, + 16758.864183483267, + 16754.783461226598, + 16748.81811234936, + 16740.748420185973, + 16730.340296586433, + 16717.34528191629, + 16701.500545056657, + 16682.528883404222, + 16660.138722871263, + 16634.024117885587, + 16603.86475139059, + 16569.325934845237, + 16530.058608224037, + 16485.699340017105, + 16435.870327230103, + 16380.179395384223, + 16318.219998516293, + 16249.571219178682, + 16173.797768439288, + 16090.449985881636, + 15999.063839604767, + 15899.160926223329, + 15790.248470867527, + 15671.819327183117, + 17107.123778662626, + 17099.11613614647, + 17091.525122185212, + 17084.31604187124, + 17077.439828812476, + 17070.833045132433, + 17064.417881470177, + 17058.102156980345, + 17051.779319333138, + 17045.328444714338, + 17038.614237825284, + 17031.48703188287, + 17023.782788619577, + 17015.323098283447, + 17005.915179638083, + 16995.35187996268, + 16983.411675051946, + 16969.858669216228, + 16954.44259528138, + 16936.898814588854, + 16916.94831699567, + 16894.297720874387, + 16868.639273113167, + 16839.65084911572, + 16806.995952801335, + 16770.323716604846, + 16729.268901476662, + 16683.451896882783, + 16632.478720804764, + 16575.94101973972, + 16513.416068700313, + 16444.46677121481, + 16368.641659327035, + 16285.474893596376, + 16194.486263097773, + 16095.181185421754, + 15987.050706674403, + 16886.7773575857, + 16892.82426596729, + 16898.576697589608, + 16904.000558068394, + 16909.04738153494, + 16913.6543306361, + 16917.74419653431, + 16921.225398907558, + 16923.991985949422, + 16925.923634369014, + 16926.885649391057, + 16926.728964755785, + 16925.29014271905, + 16922.391374052266, + 16917.84047804237, + 16911.430902491913, + 16902.94172371899, + 16892.137646557283, + 16878.769004356014, + 16862.57175897999, + 16843.267500809583, + 16820.56344874074, + 16794.152450184953, + 16763.71298106929, + 16728.90914583641, + 16689.3906774445, + 16644.792937367358, + 16594.736915594312, + 16538.829230630257, + 16476.662129495686, + 16407.81348772665, + 16331.84680937474, + 16248.311227007145, + 16156.741501706614, + 16056.65802307144, + 15947.566809215527, + 15828.95950676832, + 17288.239263001717, + 17279.298943752667, + 17270.8264139617, + 17262.78603997622, + 17255.12781665925, + 17247.787367389326, + 17240.685944060566, + 17233.730427082683, + 17226.81332538092, + 17219.81277639611, + 17212.592546084656, + 17205.00202891849, + 17196.87624788516, + 17188.035854487767, + 17178.287128744956, + 17167.421979190978, + 17155.21794287561, + 17141.43818536423, + 17125.831500737764, + 17108.132311592708, + 17088.06066904114, + 17065.322252710677, + 17039.60837074453, + 17010.59595980146, + 16977.947585055823, + 16941.311440197493, + 16900.321347431953, + 16854.596757480238, + 16803.742749578952, + 16747.350031480277, + 16684.994939451943, + 16616.239438277247, + 16540.631121255075, + 16457.703210199867, + 16366.974555441619, + 16267.949635825926, + 16160.118558713912, + 17060.227084064663, + 17065.35459925312, + 17070.2295726738, + 17074.81670292615, + 17079.066317125114, + 17082.91437090126, + 17086.28244840068, + 17089.077762285066, + 17091.193153731656, + 17092.507092433254, + 17092.88367659825, + 17092.172632950595, + 17090.20931672978, + 17086.814711690906, + 17081.795430104612, + 17074.943712757125, + 17066.03742895022, + 17054.840076501237, + 17041.10078174311, + 17024.55429952431, + 17004.9210132089, + 16981.906934676495, + 16955.203704322274, + 16924.48859105699, + 16889.42449230699, + 16849.659934014126, + 16804.82907063587, + 16754.551685145256, + 16698.43318903085, + 16636.064622296824, + 16567.022653462904, + 16490.86957956437, + 16407.15332615209, + 16315.40744729249, + 16215.15112556756, + 16105.88917207486, + 15987.112026427521, + 17470.193595084358, + 17460.317069433822, + 17450.95981659493, + 17442.08526417015, + 17433.642468277536, + 17425.566113550693, + 17417.776513138808, + 17410.179608706618, + 17402.66697043444, + 17395.115797018156, + 17387.38891566921, + 17379.334782114624, + 17370.787480596962, + 17361.5667238744, + 17351.477853220633, + 17340.311838424965, + 17327.845277792225, + 17313.84039814285, + 17298.045054812814, + 17280.192731653675, + 17260.002541032554, + 17237.179223832136, + 17211.413149450687, + 17182.380315802005, + 17149.74234931551, + 17113.146504936132, + 17072.225666124414, + 17026.59834485643, + 16975.868681623848, + 16919.626445433903, + 16857.44703380937, + 16788.89147278862, + 16713.50641692558, + 16630.824149289736, + 16540.362581466165, + 16441.625253555478, + 16334.101334173894, + 17234.574702737485, + 17238.780795553095, + 17242.77657829181, + 17246.525542536725, + 17249.9768083865, + 17253.065124455363, + 17255.710867873084, + 17257.820044285043, + 17259.284287852166, + 17259.98086125093, + 17259.7726556734, + 17258.50819082721, + 17256.021614935544, + 17252.13270473719, + 17246.646865486437, + 17239.355130953212, + 17230.034163422966, + 17218.446253696737, + 17204.33932109112, + 17187.44691343827, + 17167.48820708593, + 17144.168006897413, + 17117.176746251556, + 17086.19048704281, + 17050.87091968119, + 17010.865363092234, + 16965.80676471711, + 16915.313700512495, + 16858.99037495067, + 16796.426621019484, + 16727.197900222334, + 16650.865302578182, + 16566.97554662158, + 16475.060979402635, + 16374.639576487007, + 16265.214941955968, + 16146.2763084063, + 17652.98371954782, + 17642.167480706696, + 17631.922320481153, + 17622.210727728743, + 17612.980819822547, + 17604.166342651242, + 17595.68667061905, + 17587.446806645796, + 17579.337382166825, + 17571.234657133078, + 17563.000520011065, + 17554.48248778283, + 17545.513705946036, + 17535.912948513876, + 17525.48461801513, + 17514.018745494122, + 17501.290990510763, + 17487.06264114053, + 17471.080613974464, + 17453.07745411916, + 17432.77133519681, + 17409.866059345146, + 17384.051057217475, + 17355.001387982677, + 17322.3777393252, + 17285.826427445045, + 17244.979397057803, + 17199.4542213946, + 17148.85410220217, + 17092.767869742787, + 17030.76998279429, + 16962.420528650095, + 16887.265223119193, + 16804.835410526124, + 16714.648063711007, + 16616.205784029535, + 16508.99680135293, + 17409.818162775893, + 17413.100843774082, + 17416.215743085595, + 17419.125145277216, + 17421.776963431268, + 17424.104739145685, + 17426.02764253392, + 17427.450472225006, + 17428.263655363568, + 17428.343247609762, + 17427.550933139337, + 17425.734024643607, + 17422.725463329432, + 17418.343818919268, + 17412.393289651118, + 17404.66370227858, + 17394.93051207076, + 17382.954802812394, + 17368.483286803767, + 17351.2483048607, + 17330.967826314638, + 17307.345449012537, + 17280.07039931696, + 17248.817532106008, + 17213.24733077339, + 17173.005907228326, + 17127.725001895647, + 17077.021983715742, + 17020.49985014454, + 16957.7472271536, + 16888.338369229972, + 16811.833159376325, + 16727.777109110877, + 16635.701358467417, + 16535.1226759953, + 16425.543458759443, + 16306.451732340349, + 17836.60653841969, + 17824.847102478325, + 17813.710873406893, + 17803.15940131799, + 17793.13986483975, + 17783.585071115915, + 17774.41345580576, + 17765.529083084137, + 17756.821645641474, + 17748.16646468376, + 17739.42448993255, + 17730.44229962496, + 17721.05210051369, + 17711.071727867, + 17700.30464546871, + 17688.539945618213, + 17675.552349130467, + 17661.102205336003, + 17644.935492080916, + 17626.783815726856, + 17606.36441115107, + 17583.38014174634, + 17557.519499421032, + 17528.456604599076, + 17495.851206219984, + 17459.34868173881, + 17418.580037126183, + 17373.1619068683, + 17322.696553966936, + 17266.77186993943, + 17204.961374818668, + 17136.824217153135, + 17061.905174006857, + 16979.734650959435, + 16889.828682106046, + 16791.68893005743, + 16684.80268593988, + 17585.955370741904, + 17588.31269021318, + 17590.54505308737, + 17592.61353691494, + 17594.464847761894, + 17596.031320209815, + 17597.23091735586, + 17597.96723081274, + 17598.129480708772, + 17597.592515687782, + 17596.2168129092, + 17593.848478048, + 17590.31924529477, + 17585.446477355625, + 17579.033165452238, + 17570.867929321877, + 17560.725017217366, + 17548.36430590712, + 17533.531300675062, + 17515.957135320743, + 17495.35857215924, + 17471.43800202124, + 17443.88344425296, + 17412.36854671618, + 17376.55258578829, + 17336.08046636219, + 17290.58272184643, + 17239.67551416502, + 17182.960633757615, + 17120.02549957941, + 17050.443159101203, + 16973.772288309276, + 16889.557191705568, + 16797.32780230754, + 16696.59968164821, + 16586.874019776224, + 16467.637635255716, + 18021.058911117736, + 18008.35281704598, + 17996.322380548892, + 17984.92821299412, + 17974.116554264863, + 17963.819272759898, + 17953.953865393567, + 17944.423457595778, + 17935.11680331201, + 17925.908285003305, + 17916.65791364627, + 17907.211328733076, + 17897.39979827148, + 17887.040218784794, + 17875.93511531189, + 17863.872641407223, + 17850.626579140797, + 17835.956339098208, + 17819.606960380584, + 17801.309110604656, + 17780.779085902705, + 17757.71881092258, + 17731.815838827697, + 17702.743351297046, + 17670.160158525166, + 17633.71069922219, + 17593.0250406138, + 17547.718878441254, + 17497.393536961357, + 17441.635968946524, + 17380.018755684698, + 17312.10010697939, + 17237.42386114971, + 17155.519485030294, + 17065.902073971378, + 16968.07235183877, + 16861.516671013796, + 17762.984190587733, + 17764.41423855775, + 17765.762451719627, + 17766.98870060748, + 17768.038484271015, + 17768.84293027551, + 17769.318794701794, + 17769.368462146256, + 17768.87994572088, + 17767.726887053184, + 17765.76855628629, + 17762.849852078863, + 17758.801301605123, + 17753.4390605549, + 17746.564913133552, + 17737.966272062025, + 17727.416178576816, + 17714.673302430005, + 17699.48194188923, + 17681.5720237377, + 17660.6591032742, + 17636.444364313058, + 17608.614619184194, + 17576.842308733078, + 17540.78550232077, + 17500.087897823854, + 17454.378821634527, + 17403.273228660535, + 17346.37170232519, + 17283.260454567382, + 17213.511325841544, + 17136.681785117697, + 17052.31492988142, + 16959.93948613387, + 16859.069808391763, + 16749.205879687386, + 16629.833311568585, + 18206.33765444999, + 18192.681464097175, + 18179.75370447415, + 18167.514048203615, + 18155.907796423842, + 18144.86587878864, + 18134.30485346742, + 18124.126907145135, + 18114.21985502232, + 18104.45714081507, + 18094.697836755055, + 18084.786643589498, + 18074.553890581195, + 18063.815535508536, + 18052.373164665434, + 18040.013992861397, + 18026.51086342148, + 18011.62224818634, + 17995.092247512166, + 17976.650590270732, + 17956.01263384938, + 17932.879364151002, + 17906.93739559408, + 17877.85897111264, + 17845.301962156314, + 17808.909868690254, + 17768.311819195205, + 17723.122570667478, + 17672.942508618955, + 17617.357647077057, + 17555.939628584823, + 17488.245724200802, + 17413.81883349916, + 17332.187484569593, + 17242.865834017393, + 17145.353666963398, + 17039.136397044025, + 17940.902443655876, + 17941.40334988538, + 17941.865839795028, + 17942.248576902635, + 17942.49585324159, + 17942.53758936084, + 17942.289334324876, + 17941.6522657138, + 17940.513189623274, + 17938.744540664495, + 17936.204381964242, + 17932.736405164876, + 17928.169930424316, + 17922.319906416054, + 17914.986910329124, + 17905.957147868165, + 17895.002453253353, + 17881.88028922045, + 17866.333747020773, + 17848.091546421216, + 17826.868035704214, + 17802.36319166783, + 17774.26261962563, + 17742.237553406765, + 17705.944855355978, + 17665.027016333544, + 17619.112155715353, + 17567.814021392813, + 17510.731989772907, + 17447.451065778205, + 17377.541882846854, + 17300.56070293253, + 17216.049416504495, + 17123.5355425476, + 17022.532228562206, + 16912.538250564336, + 16793.038013085483, + 18226.97506882118, + 18213.2131008926, + 18200.185447286774, + 18187.85167632132, + 18176.156984829413, + 18165.03219815981, + 18154.39377017683, + 18144.14378326036, + 18134.16994830586, + 18124.34560472433, + 18114.529720442366, + 18104.566891902123, + 18094.28734406133, + 18083.506930393272, + 18072.0271328868, + 18059.63506204635, + 18046.103456891888, + 18031.190684958994, + 18014.64074229879, + 17996.183253477953, + 17975.533471578776, + 17952.392278199048, + 17926.446183452197, + 17897.36732596716, + 17864.81347288847, + 17828.42801987623, + 17787.839991106113, + 17742.664039269323, + 17692.500445572678, + 17636.935119738544, + 17575.539600004842, + 17507.871053125076, + 17433.472274368327, + 17351.871687519204, + 17262.583344877916, + 17165.10692726025, + 17058.927743997523, + 17960.72596151252, + 17961.123515967334, + 17961.487496697428, + 17961.776433107567, + 17961.934483118104, + 17961.891433164983, + 17961.56269819966, + 17960.849321689187, + 17959.63797561619, + 17957.800960478846, + 17955.196205290915, + 17951.667267581724, + 17947.043333396134, + 17941.139217294614, + 17933.755362353197, + 17924.67784016346, + 17913.678350832546, + 17900.514222983194, + 17884.9284137537, + 17866.6495087979, + 17845.39172228524, + 17820.8548969007, + 17792.724503844842, + 17760.671642833797, + 17724.353042099265, + 17683.411058388476, + 17637.473676964288, + 17586.15451160509, + 17529.052804604842, + 17465.753426773077, + 17395.82687743489, + 17318.82928443095, + 17234.30240411748, + 17141.77362136629, + 17040.755949564737, + 16930.74803061576, + 16811.234134937866, + 57282.615356634284, + 57077.73769323462, + 56887.13912364821, + 56710.62067260196, + 56547.96899333826, + 56398.95636761517, + 56263.34070570619, + 56140.86554640044, + 56031.26005700266, + 55934.23903333308, + 55849.50289972753, + 55776.73770903737, + 55715.61514262966, + 55665.792510386826, + 55626.91275070706, + 55598.60443050398, + 55580.481745206765, + 55572.1445187603, + 55573.17820362489, + 55583.15388077653, + 55601.628259706646, + 55628.143678422384, + 55662.228103446316, + 55703.39512981669, + 55751.14398108726, + 55804.95950932732, + 55864.31219512186, + 55928.65814757125, + 55997.43910429165, + 56070.08243141453, + 56146.001123587215, + 56224.593803972275, + 56305.244724248165, + 56387.3237646087, + 56470.1864337633, + 56553.173868937025, + 56635.61283587041, + 57501.66919931268, + 57350.81447224365, + 57211.5211396365, + 57083.543879251134, + 56966.62299736307, + 56860.48442876333, + 56764.83973675849, + 56679.38611317064, + 56603.80637833765, + 56537.768981112684, + 56480.92799886471, + 56432.92313747807, + 56393.37973135284, + 56361.90874340455, + 56338.106765064345, + 56321.55601627892, + 56311.82434551049, + 56308.465229737, + 56311.01777445175, + 56319.00671366378, + 56331.94240989754, + 56349.320854193254, + 56370.62366610653, + 56395.31809370858, + 56422.857013586254, + 56452.67893084188, + 56484.20797909345, + 56516.853920474445, + 56550.01214563394, + 56583.06367373657, + 56615.375152462584, + 56646.29885800767, + 56675.172695083296, + 56701.32019691632, + 56724.050525249135, + 56742.658470339906, + 56756.424450962164 + ], + "input_power": [ + 7390.786000000001, + 7393.51024691358, + 7399.167432098766, + 7407.757555555557, + 7419.280617283951, + 7433.736617283951, + 7451.125555555555, + 7471.447432098766, + 7494.702246913581, + 7520.890000000002, + 7550.0106913580275, + 7582.064320987654, + 7617.050888888889, + 7654.970395061728, + 7695.822839506173, + 7739.608222222223, + 7786.326543209878, + 7835.977802469136, + 7888.561999999999, + 7944.07913580247, + 8002.529209876544, + 8063.912222222223, + 8128.228172839506, + 8195.477061728396, + 8265.658888888887, + 8338.77365432099, + 8414.82135802469, + 8493.801999999998, + 8575.715580246917, + 8660.562098765431, + 8748.341555555555, + 8839.053950617286, + 8932.699283950617, + 9029.277555555558, + 9128.7887654321, + 9231.232913580248, + 9336.609999999999, + 7745.198799999999, + 7750.404469135801, + 7758.543076543209, + 7769.614622222221, + 7783.619106172838, + 7800.556528395062, + 7820.426888888888, + 7843.23018765432, + 7868.966424691358, + 7897.6356, + 7929.237713580248, + 7963.772765432099, + 8001.240755555556, + 8041.6416839506155, + 8084.975550617283, + 8131.242355555555, + 8180.442098765432, + 8232.574780246914, + 8287.640399999998, + 8345.638958024692, + 8406.570454320989, + 8470.434888888889, + 8537.232261728395, + 8606.962572839506, + 8679.625822222222, + 8755.222009876545, + 8833.751135802468, + 8915.2132, + 8999.608202469137, + 9086.936143209876, + 9177.197022222223, + 9270.390839506174, + 9366.517595061729, + 9465.577288888893, + 9567.569920987655, + 9672.495491358028, + 9780.354, + 7392.124959999999, + 7394.8454024691355, + 7400.498783209876, + 7409.085102222223, + 7420.604359506173, + 7435.056555061728, + 7452.441688888889, + 7472.759760987655, + 7496.010771358026, + 7522.19472, + 7551.311606913581, + 7583.361432098764, + 7618.344195555555, + 7656.25989728395, + 7697.108537283951, + 7740.890115555556, + 7787.604632098766, + 7837.25208691358, + 7889.83248, + 7945.345811358025, + 8003.792080987655, + 8065.171288888889, + 8129.483435061729, + 8196.728519506174, + 8266.906542222221, + 8340.017503209878, + 8416.061402469137, + 8495.03824, + 8576.948015802469, + 8661.790729876542, + 8749.566382222221, + 8840.274972839508, + 8933.916501728396, + 9030.49096888889, + 9129.998374320987, + 9232.438718024692, + 9337.812, + 7746.727123999998, + 7751.934862469135, + 7760.075539209876, + 7771.149154222221, + 7785.155707506172, + 7802.095199061728, + 7821.967628888888, + 7844.772996987653, + 7870.511303358025, + 7899.182547999999, + 7930.786730913579, + 7965.323852098764, + 8002.793911555554, + 8043.196909283948, + 8086.532845283948, + 8132.801719555554, + 8182.003532098765, + 8234.13828291358, + 8289.205972, + 8347.206599358022, + 8408.140164987652, + 8472.006668888887, + 8538.806111061727, + 8608.538491506171, + 8681.20381022222, + 8756.802067209876, + 8835.333262469136, + 8916.797395999996, + 9001.19446780247, + 9088.52447787654, + 9178.787426222218, + 9271.983312839506, + 9368.112137728394, + 9467.173900888887, + 9569.168602320986, + 9674.09624202469, + 9781.956819999998, + 7404.1260999999995, + 7406.812302469136, + 7412.431443209876, + 7420.983522222223, + 7432.468539506174, + 7446.886495061729, + 7464.237388888889, + 7484.5212209876545, + 7507.737991358025, + 7533.887700000002, + 7562.970346913583, + 7594.985932098765, + 7629.934455555554, + 7667.8159172839505, + 7708.630317283952, + 7752.377655555557, + 7799.057932098765, + 7848.671146913581, + 7901.2173, + 7956.696391358026, + 8015.108420987655, + 8076.45338888889, + 8140.731295061727, + 8207.942139506173, + 8278.085922222219, + 8351.162643209878, + 8427.172302469136, + 8506.1149, + 8587.990435802469, + 8672.798909876543, + 8760.540322222223, + 8851.214672839507, + 8944.821961728396, + 9041.36218888889, + 9140.835354320987, + 9243.241458024691, + 9348.580499999998, + 7760.432539999998, + 7765.658902469134, + 7773.818203209875, + 7784.910442222222, + 7798.935619506172, + 7815.893735061728, + 7835.784788888889, + 7858.6087809876535, + 7884.365711358024, + 7913.055579999999, + 7944.67838691358, + 7979.234132098765, + 8016.722815555553, + 8057.144437283947, + 8100.498997283949, + 8146.786495555554, + 8196.006932098764, + 8248.160306913578, + 8303.246619999998, + 8361.265871358026, + 8422.218060987654, + 8486.103188888887, + 8552.921255061729, + 8622.672259506171, + 8695.35620222222, + 8770.973083209878, + 8849.522902469134, + 8931.005659999997, + 9015.42135580247, + 9102.769989876542, + 9193.05156222222, + 9286.266072839508, + 9382.413521728393, + 9481.49390888889, + 9583.507234320985, + 9688.45349802469, + 9796.332699999997, + 7416.03814, + 7418.690102469135, + 7424.275003209877, + 7432.792842222223, + 7444.243619506174, + 7458.627335061728, + 7475.943988888889, + 7496.193580987655, + 7519.376111358025, + 7545.49158, + 7574.539986913583, + 7606.521332098765, + 7641.435615555555, + 7679.282837283949, + 7720.062997283951, + 7763.776095555557, + 7810.422132098766, + 7860.00110691358, + 7912.513019999998, + 7967.957871358025, + 8026.3356609876555, + 8087.646388888888, + 8151.890055061727, + 8219.066659506172, + 8289.176202222221, + 8362.218683209878, + 8438.194102469135, + 8517.102459999998, + 8598.94375580247, + 8683.717989876543, + 8771.425162222222, + 8862.065272839509, + 8955.638321728395, + 9052.14430888889, + 9151.583234320988, + 9253.955098024691, + 9359.259899999997, + 7774.048855999999, + 7779.293842469135, + 7787.471767209875, + 7798.58263022222, + 7812.626431506172, + 7829.603171061726, + 7849.512848888888, + 7872.355464987652, + 7898.131019358025, + 7926.839511999999, + 7958.48094291358, + 7993.055312098766, + 8030.562619555553, + 8071.002865283947, + 8114.376049283949, + 8160.682171555555, + 8209.921232098764, + 8262.09323091358, + 8317.198167999999, + 8375.236043358023, + 8436.206856987654, + 8500.110608888886, + 8566.947299061727, + 8636.716927506171, + 8709.41949422222, + 8785.054999209879, + 8863.623442469134, + 8945.124823999997, + 9029.55914380247, + 9116.926401876543, + 9207.22659822222, + 9300.459732839508, + 9396.625805728392, + 9495.72481688889, + 9597.756766320988, + 9702.72165402469, + 9810.619479999998, + 7427.861079999999, + 7430.478802469134, + 7436.029463209877, + 7444.513062222221, + 7455.929599506171, + 7470.279075061728, + 7487.561488888888, + 7507.776840987654, + 7530.925131358024, + 7557.00636, + 7586.020526913581, + 7617.967632098765, + 7652.847675555555, + 7690.660657283949, + 7731.40657728395, + 7775.085435555556, + 7821.697232098765, + 7871.241966913581, + 7923.719640000001, + 7979.130251358025, + 8037.4738009876555, + 8098.7502888888885, + 8162.959715061728, + 8230.102079506174, + 8300.177382222222, + 8373.185623209878, + 8449.126802469136, + 8528.00092, + 8609.807975802469, + 8694.547969876541, + 8782.220902222221, + 8872.826772839506, + 8966.365581728396, + 9062.837328888889, + 9162.242014320986, + 9264.579638024692, + 9369.850199999999, + 7787.576071999998, + 7792.839682469134, + 7801.036231209876, + 7812.165718222221, + 7826.2281435061705, + 7843.223507061728, + 7863.151808888888, + 7886.013048987653, + 7911.807227358026, + 7940.534344, + 7972.194398913581, + 8006.787392098765, + 8044.313323555554, + 8084.7721932839495, + 8128.164001283949, + 8174.488747555555, + 8223.746432098766, + 8275.93705491358, + 8331.060616, + 8389.117115358024, + 8450.106552987652, + 8514.028928888887, + 8580.884243061728, + 8650.672495506173, + 8723.39368622222, + 8799.047815209877, + 8877.634882469134, + 8959.154888, + 9043.60783180247, + 9130.99371387654, + 9221.312534222217, + 9314.564292839506, + 9410.748989728394, + 9509.86662488889, + 9611.917198320985, + 9716.90071002469, + 9824.817159999999, + 7439.5949200000005, + 7442.178402469137, + 7447.6948232098775, + 7456.144182222223, + 7467.526479506174, + 7481.841715061729, + 7499.08988888889, + 7519.2710009876555, + 7542.3850513580255, + 7568.4320400000015, + 7597.4119669135835, + 7629.324832098765, + 7664.170635555555, + 7701.949377283949, + 7742.661057283951, + 7786.305675555556, + 7832.883232098766, + 7882.393726913581, + 7934.837160000001, + 7990.213531358026, + 8048.522840987653, + 8109.765088888888, + 8173.94027506173, + 8241.048399506173, + 8311.089462222222, + 8384.063463209877, + 8459.970402469136, + 8538.81028, + 8620.583095802469, + 8705.288849876544, + 8792.927542222222, + 8883.499172839507, + 8977.003741728397, + 9073.44124888889, + 9172.81169432099, + 9275.115078024692, + 9380.351399999998, + 7801.014188, + 7806.296422469135, + 7814.511595209877, + 7825.659706222222, + 7839.740755506173, + 7856.754743061729, + 7876.701668888888, + 7899.581532987652, + 7925.394335358024, + 7954.140076, + 7985.81875491358, + 8020.4303720987655, + 8057.974927555554, + 8098.452421283948, + 8141.86285328395, + 8188.206223555556, + 8237.482532098766, + 8289.69177891358, + 8344.833964, + 8402.909087358024, + 8463.917148987653, + 8527.858148888887, + 8594.73208706173, + 8664.538963506171, + 8737.27877822222, + 8812.951531209876, + 8891.557222469133, + 8973.095851999997, + 9057.567419802468, + 9144.971925876542, + 9235.30937022222, + 9328.579752839505, + 9424.783073728393, + 9523.919332888889, + 9625.988530320987, + 9730.990666024689, + 9838.925739999997, + 7451.239659999999, + 7453.788902469136, + 7459.271083209876, + 7467.686202222223, + 7479.034259506174, + 7493.315255061729, + 7510.52918888889, + 7530.676060987655, + 7553.755871358026, + 7579.768620000001, + 7608.714306913583, + 7640.592932098765, + 7675.4044955555555, + 7713.14899728395, + 7753.826437283951, + 7797.436815555557, + 7843.980132098767, + 7893.456386913581, + 7945.865580000001, + 8001.207711358025, + 8059.482780987656, + 8120.69078888889, + 8184.831735061728, + 8251.905619506175, + 8321.912442222221, + 8394.852203209879, + 8470.724902469137, + 8549.53054, + 8631.269115802474, + 8715.940629876544, + 8803.545082222221, + 8894.08247283951, + 8987.552801728396, + 9083.956068888892, + 9183.29227432099, + 9285.561418024694, + 9390.763500000001, + 7814.363203999998, + 7819.6640624691345, + 7827.897859209876, + 7839.064594222221, + 7853.164267506172, + 7870.1968790617275, + 7890.162428888889, + 7913.060916987653, + 7938.892343358025, + 7967.6567079999995, + 7999.354010913579, + 8033.984252098767, + 8071.547431555555, + 8112.04354928395, + 8155.4726052839505, + 8201.834599555556, + 8251.129532098767, + 8303.35740291358, + 8358.518211999999, + 8416.611959358026, + 8477.638644987655, + 8541.598268888889, + 8608.490831061728, + 8678.316331506172, + 8751.074770222222, + 8826.766147209879, + 8905.390462469133, + 8986.947715999999, + 9071.43790780247, + 9158.861037876542, + 9249.217106222222, + 9342.506112839508, + 9438.728057728396, + 9537.882940888892, + 9639.970762320989, + 9744.991522024691, + 9852.94522, + 7456.388298312922, + 7458.92231767806, + 7464.389275314798, + 7472.789171223145, + 7484.1220054030955, + 7498.387777854651, + 7515.586488577811, + 7535.718137572578, + 7558.782724838947, + 7584.7802503769235, + 7613.7107141865035, + 7645.574116267688, + 7680.370456620476, + 7718.099735244872, + 7758.761952140873, + 7802.3571073084795, + 7848.885200747689, + 7898.346232458503, + 7950.740202440923, + 8006.0671106949485, + 8064.326957220578, + 8125.519742017811, + 8189.645465086653, + 8256.704126427096, + 8326.695726039145, + 8399.620263922801, + 8475.477740078059, + 8554.268154504922, + 8635.991507203393, + 8720.647798173464, + 8808.237027415142, + 8898.75919492843, + 8992.21430071332, + 9088.602344769813, + 9187.92332709791, + 9290.177247697615, + 9395.36410656892, + 7820.269563422521, + 7825.578702122057, + 7833.820779093198, + 7844.995794335944, + 7859.103747850295, + 7876.144639636253, + 7896.118469693812, + 7919.025238022976, + 7944.864944623748, + 7973.637589496124, + 8005.343172640103, + 8039.981694055688, + 8077.553153742878, + 8118.057551701671, + 8161.494887932072, + 8207.865162434076, + 8257.168375207688, + 8309.404526252902, + 8364.573615569721, + 8422.675643158147, + 8483.710609018177, + 8547.67851314981, + 8614.57935555305, + 8684.413136227893, + 8757.179855174343, + 8832.8795123924, + 8911.512107882058, + 8993.077641643324, + 9077.57611367619, + 9165.007523980665, + 9255.371872556745, + 9348.66915940443, + 9444.899384523716, + 9544.062547914613, + 9646.158649577108, + 9751.187689511215, + 9859.14966771692, + 7462.795299999999, + 7465.3103024691345, + 7470.758243209875, + 7479.139122222222, + 7490.452939506172, + 7504.699695061728, + 7521.879388888888, + 7541.992020987654, + 7565.037591358024, + 7591.016099999999, + 7619.927546913581, + 7651.771932098764, + 7686.549255555554, + 7724.259517283948, + 7764.90271728395, + 7808.478855555555, + 7854.987932098765, + 7904.429946913579, + 7956.804899999999, + 8012.112791358025, + 8070.353620987653, + 8131.527388888888, + 8195.634095061727, + 8262.673739506174, + 8332.64632222222, + 8405.551843209876, + 8481.390302469135, + 8560.161699999997, + 8641.866035802468, + 8726.503309876542, + 8814.073522222221, + 8904.576672839505, + 8998.012761728394, + 9094.381788888888, + 9193.683754320988, + 9295.918658024691, + 9401.086499999996, + 7827.623119999998, + 7832.942602469134, + 7841.195023209876, + 7852.38038222222, + 7866.49867950617, + 7883.549915061729, + 7903.534088888888, + 7926.4512009876535, + 7952.301251358023, + 7981.084239999999, + 8012.80016691358, + 8047.449032098765, + 8085.030835555555, + 8125.545577283948, + 8168.993257283949, + 8215.373875555555, + 8264.687432098764, + 8316.93392691358, + 8372.113359999998, + 8430.225731358023, + 8491.271040987653, + 8555.249288888888, + 8622.160475061728, + 8692.004599506172, + 8764.78166222222, + 8840.491663209876, + 8919.134602469134, + 9000.710479999998, + 9085.219295802468, + 9172.66104987654, + 9263.035742222222, + 9356.343372839508, + 9452.583941728393, + 9551.757448888891, + 9653.863894320984, + 9758.90327802469, + 9866.875599999996, + 7474.261839999998, + 7476.742602469135, + 7482.156303209876, + 7490.502942222222, + 7501.782519506171, + 7515.995035061727, + 7533.140488888888, + 7553.218880987653, + 7576.230211358026, + 7602.174480000001, + 7631.051686913581, + 7662.861832098764, + 7697.604915555554, + 7735.280937283949, + 7775.889897283951, + 7819.431795555555, + 7865.906632098765, + 7915.31440691358, + 7967.6551199999985, + 8022.928771358023, + 8081.135360987654, + 8142.274888888886, + 8206.347355061727, + 8273.352759506173, + 8343.291102222222, + 8416.162383209876, + 8491.966602469136, + 8570.703759999999, + 8652.373855802469, + 8736.976889876541, + 8824.512862222218, + 8914.981772839505, + 9008.383621728395, + 9104.71840888889, + 9203.986134320987, + 9306.18679802469, + 9411.320399999997, + 7840.793935999998, + 7846.132042469134, + 7854.403087209877, + 7865.607070222222, + 7879.74399150617, + 7896.813851061727, + 7916.816648888887, + 7939.752384987654, + 7965.621059358024, + 7994.422671999999, + 8026.157222913581, + 8060.824712098766, + 8098.425139555554, + 8138.958505283948, + 8182.424809283948, + 8228.824051555554, + 8278.156232098765, + 8330.421350913579, + 8385.619407999999, + 8443.750403358024, + 8504.814336987654, + 8568.811208888887, + 8635.741019061728, + 8705.60376750617, + 8778.39945422222, + 8854.128079209875, + 8932.789642469133, + 9014.384143999998, + 9098.911583802468, + 9186.371961876543, + 9276.765278222218, + 9370.091532839504, + 9466.350725728393, + 9565.54285688889, + 9667.667926320984, + 9772.725934024687, + 9880.71688, + 7485.639279999999, + 7488.085802469135, + 7493.465263209876, + 7501.777662222222, + 7513.022999506173, + 7527.201275061728, + 7544.312488888888, + 7564.356640987654, + 7587.333731358024, + 7613.243760000001, + 7642.086726913581, + 7673.862632098764, + 7708.571475555554, + 7746.21325728395, + 7786.787977283951, + 7830.295635555556, + 7876.736232098766, + 7926.10976691358, + 7978.416239999999, + 8033.655651358023, + 8091.828000987653, + 8152.933288888887, + 8216.971515061727, + 8283.942679506174, + 8353.846782222221, + 8426.683823209876, + 8502.453802469136, + 8581.156719999999, + 8662.792575802467, + 8747.361369876542, + 8834.86310222222, + 8925.297772839507, + 9018.665381728395, + 9114.965928888889, + 9214.199414320987, + 9316.36583802469, + 9421.465199999997, + 7853.875651999999, + 7859.232382469134, + 7867.522051209877, + 7878.744658222222, + 7892.900203506171, + 7909.988687061727, + 7930.010108888889, + 7952.964468987654, + 7978.8517673580245, + 8007.672004, + 8039.425178913581, + 8074.111292098765, + 8111.730343555555, + 8152.282333283948, + 8195.76726128395, + 8242.185127555556, + 8291.535932098765, + 8343.819674913579, + 8399.036356, + 8457.185975358025, + 8518.268532987653, + 8582.284028888887, + 8649.232463061728, + 8719.113835506172, + 8791.928146222222, + 8867.675395209875, + 8946.355582469134, + 9027.968707999999, + 9112.51477180247, + 9199.993773876542, + 9290.405714222223, + 9383.750592839506, + 9480.028409728395, + 9579.239164888893, + 9681.382858320989, + 9786.459490024692, + 9894.469059999998, + 7496.927619999999, + 7499.339902469135, + 7504.685123209874, + 7512.963282222222, + 7524.174379506173, + 7538.318415061727, + 7555.395388888889, + 7575.405300987653, + 7598.348151358025, + 7624.223939999998, + 7653.032666913581, + 7684.774332098765, + 7719.448935555553, + 7757.056477283951, + 7797.59695728395, + 7841.070375555557, + 7887.476732098765, + 7936.816026913581, + 7989.08826, + 8044.293431358026, + 8102.4315409876535, + 8163.502588888889, + 8227.506575061729, + 8294.443499506175, + 8364.313362222221, + 8437.116163209877, + 8512.851902469138, + 8591.520579999997, + 8673.12219580247, + 8757.656749876543, + 8845.12424222222, + 8935.524672839507, + 9028.858041728396, + 9125.12434888889, + 9224.32359432099, + 9326.45577802469, + 9431.5209, + 7866.868267999999, + 7872.243622469135, + 7880.551915209877, + 7891.793146222221, + 7905.967315506172, + 7923.074423061729, + 7943.114468888888, + 7966.087452987654, + 7991.993375358024, + 8020.832236, + 8052.60403491358, + 8087.308772098767, + 8124.946447555555, + 8165.51706128395, + 8209.02061328395, + 8255.457103555555, + 8304.826532098765, + 8357.12889891358, + 8412.364204, + 8470.532447358024, + 8531.633628987654, + 8595.667748888887, + 8662.634807061728, + 8732.534803506172, + 8805.367738222221, + 8881.133611209878, + 8959.832422469133, + 9041.464172, + 9126.02885980247, + 9213.526485876542, + 9303.95705022222, + 9397.320552839508, + 9493.616993728396, + 9592.846372888891, + 9695.008690320985, + 9800.103946024692, + 9908.132139999998, + 7508.1268599999985, + 7510.504902469134, + 7515.815883209876, + 7524.059802222222, + 7535.236659506172, + 7549.346455061727, + 7566.3891888888875, + 7586.364860987655, + 7609.273471358025, + 7635.11502, + 7663.8895069135815, + 7695.596932098764, + 7730.237295555555, + 7767.810597283949, + 7808.31683728395, + 7851.756015555555, + 7898.128132098765, + 7947.43318691358, + 7999.67118, + 8054.842111358026, + 8112.945980987655, + 8173.982788888888, + 8237.952535061728, + 8304.855219506173, + 8374.69084222222, + 8447.459403209876, + 8523.160902469137, + 8601.795339999997, + 8683.36271580247, + 8767.863029876544, + 8855.296282222222, + 8945.662472839507, + 9038.961601728395, + 9135.193668888893, + 9234.358674320989, + 9336.456618024691, + 9441.487500000001, + 7879.771783999998, + 7885.165762469133, + 7893.492679209876, + 7904.752534222222, + 7918.9453275061705, + 7936.071059061728, + 7956.129728888887, + 7979.121336987653, + 8005.045883358026, + 8033.903368000001, + 8065.693790913581, + 8100.417152098766, + 8138.073451555556, + 8178.66268928395, + 8222.184865283949, + 8268.639979555555, + 8318.028032098766, + 8370.34902291358, + 8425.602952000001, + 8483.789819358022, + 8544.909624987653, + 8608.962368888888, + 8675.948051061729, + 8745.866671506174, + 8818.71823022222, + 8894.502727209878, + 8973.220162469137, + 9054.870535999999, + 9139.453847802468, + 9226.970097876541, + 9317.419286222223, + 9410.801412839508, + 9507.116477728396, + 9606.36448088889, + 9708.545422320984, + 9813.65930202469, + 9921.706119999997, + 7519.236999999998, + 7521.580802469135, + 7526.857543209876, + 7535.067222222222, + 7546.209839506172, + 7560.285395061728, + 7577.293888888888, + 7597.235320987655, + 7620.109691358024, + 7645.917, + 7674.657246913582, + 7706.330432098765, + 7740.936555555554, + 7778.47561728395, + 7818.9476172839495, + 7862.352555555555, + 7908.690432098765, + 7957.961246913579, + 8010.164999999999, + 8065.301691358025, + 8123.371320987655, + 8184.373888888888, + 8248.309395061726, + 8315.177839506172, + 8384.97922222222, + 8457.713543209878, + 8533.380802469133, + 8611.980999999998, + 8693.514135802468, + 8777.980209876543, + 8865.379222222222, + 8955.711172839507, + 9048.976061728394, + 9145.17388888889, + 9244.304654320988, + 9346.36835802469, + 9451.365, + 7892.586199999999, + 7897.998802469135, + 7906.344343209877, + 7917.622822222223, + 7931.834239506172, + 7948.97859506173, + 7969.055888888889, + 7992.066120987653, + 8018.009291358025, + 8046.885400000001, + 8078.694446913582, + 8113.436432098764, + 8151.111355555555, + 8191.71921728395, + 8235.260017283948, + 8281.733755555555, + 8331.140432098766, + 8383.480046913579, + 8438.7526, + 8496.958091358027, + 8558.096520987652, + 8622.16788888889, + 8689.17219506173, + 8759.109439506172, + 8831.979622222221, + 8907.782743209875, + 8986.518802469134, + 9068.187799999998, + 9152.78973580247, + 9240.324609876545, + 9330.792422222221, + 9424.193172839505, + 9520.526861728396, + 9619.79348888889, + 9721.993054320987, + 9827.125558024693, + 9935.190999999997, + 7530.258039999999, + 7532.5676024691365, + 7537.810103209877, + 7545.985542222221, + 7557.093919506172, + 7571.135235061727, + 7588.109488888887, + 7608.016680987654, + 7630.856811358025, + 7656.62988, + 7685.335886913581, + 7716.974832098764, + 7751.546715555554, + 7789.051537283948, + 7829.48929728395, + 7872.8599955555555, + 7919.163632098766, + 7968.40020691358, + 8020.5697199999995, + 8075.6721713580255, + 8133.707560987656, + 8194.675888888887, + 8258.57715506173, + 8325.411359506174, + 8395.178502222223, + 8467.87858320988, + 8543.511602469134, + 8622.07756, + 8703.57645580247, + 8788.008289876543, + 8875.373062222221, + 8965.670772839505, + 9058.901421728395, + 9155.065008888892, + 9254.161534320987, + 9356.190998024693, + 9461.153399999997, + 7905.311516, + 7910.742742469136, + 7919.106907209875, + 7930.404010222222, + 7944.634051506171, + 7961.79703106173, + 7981.89294888889, + 8004.9218049876545, + 8030.883599358026, + 8059.778332000001, + 8091.606002913581, + 8126.3666120987655, + 8164.060159555555, + 8204.68664528395, + 8248.246069283949, + 8294.738431555554, + 8344.163732098765, + 8396.52197091358, + 8451.813148, + 8510.037263358025, + 8571.194316987654, + 8635.284308888888, + 8702.307239061729, + 8772.26310750617, + 8845.15191422222, + 8920.973659209878, + 8999.728342469136, + 9081.415963999998, + 9166.03652380247, + 9253.590021876542, + 9344.076458222222, + 9437.495832839508, + 9533.848145728396, + 9633.13339688889, + 9735.351586320987, + 9840.50271402469, + 9948.586779999998, + 7541.189979999999, + 7543.465302469136, + 7548.673563209877, + 7556.814762222223, + 7567.8888995061725, + 7581.895975061729, + 7598.835988888888, + 7618.708940987654, + 7641.514831358025, + 7667.253660000001, + 7695.925426913582, + 7727.5301320987655, + 7762.067775555554, + 7799.53835728395, + 7839.941877283951, + 7883.278335555557, + 7929.547732098766, + 7978.750066913582, + 8030.885339999999, + 8085.953551358026, + 8143.954700987654, + 8204.88878888889, + 8268.75581506173, + 8335.555779506172, + 8405.288682222223, + 8477.954523209875, + 8553.553302469136, + 8632.08502, + 8713.54967580247, + 8797.947269876544, + 8885.277802222221, + 8975.541272839508, + 9068.737681728395, + 9164.86702888889, + 9263.929314320989, + 9365.92453802469, + 9470.852699999998, + 7917.947731999998, + 7923.397582469135, + 7931.780371209875, + 7943.096098222221, + 7957.344763506171, + 7974.526367061729, + 7994.640908888888, + 8017.688388987654, + 8043.668807358024, + 8072.582164, + 8104.42845891358, + 8139.207692098765, + 8176.919863555554, + 8217.564973283948, + 8261.14302128395, + 8307.654007555555, + 8357.097932098766, + 8409.47479491358, + 8464.784596, + 8523.027335358025, + 8584.203012987653, + 8648.311628888887, + 8715.35318306173, + 8785.327675506172, + 8858.23510622222, + 8934.075475209875, + 9012.848782469135, + 9094.555028, + 9179.194211802467, + 9266.766333876543, + 9357.27139422222, + 9450.709392839506, + 9547.080329728395, + 9646.38420488889, + 9748.621018320988, + 9853.790770024689, + 9961.893459999998, + 7552.03282, + 7554.273902469136, + 7559.447923209877, + 7567.554882222223, + 7578.594779506173, + 7592.567615061729, + 7609.4733888888895, + 7629.312100987655, + 7652.0837513580245, + 7677.788340000001, + 7706.4258669135825, + 7737.996332098765, + 7772.499735555556, + 7809.93607728395, + 7850.305357283951, + 7893.607575555557, + 7939.842732098766, + 7989.010826913581, + 8041.111860000001, + 8096.145831358024, + 8154.112740987654, + 8215.012588888889, + 8278.84537506173, + 8345.611099506172, + 8415.309762222221, + 8487.941363209877, + 8563.505902469136, + 8642.003379999998, + 8723.433795802472, + 8807.797149876542, + 8895.09344222222, + 8985.32267283951, + 9078.484841728397, + 9174.579948888892, + 9273.607994320988, + 9375.568978024692, + 9480.462899999999, + 7930.494847999999, + 7935.963322469135, + 7944.364735209876, + 7955.699086222221, + 7969.966375506172, + 7987.166603061729, + 8007.299768888886, + 8030.3658729876515, + 8056.3649153580245, + 8085.296896000001, + 8117.161814913579, + 8151.959672098764, + 8189.690467555554, + 8230.35420128395, + 8273.950873283948, + 8320.480483555553, + 8369.943032098765, + 8422.338518913579, + 8477.666943999999, + 8535.928307358023, + 8597.122608987653, + 8661.249848888887, + 8728.310027061727, + 8798.303143506171, + 8871.22919822222, + 8947.088191209876, + 9025.880122469134, + 9107.604991999999, + 9192.262799802467, + 9279.85354587654, + 9370.377230222219, + 9463.833852839507, + 9560.223413728394, + 9659.545912888887, + 9761.80135032098, + 9866.989726024689, + 9975.111039999998, + 7562.786559999999, + 7564.9934024691365, + 7570.133183209878, + 7578.205902222223, + 7589.211559506173, + 7603.1501550617295, + 7620.02168888889, + 7639.826160987655, + 7662.563571358025, + 7688.2339200000015, + 7716.837206913582, + 7748.373432098766, + 7782.842595555557, + 7820.244697283951, + 7860.5797372839515, + 7903.8477155555565, + 7950.048632098766, + 7999.182486913581, + 8051.24928, + 8106.249011358027, + 8164.1816809876545, + 8225.047288888887, + 8288.84583506173, + 8355.577319506174, + 8425.241742222222, + 8497.839103209879, + 8573.369402469136, + 8651.832639999999, + 8733.22881580247, + 8817.557929876544, + 8904.819982222223, + 8995.014972839508, + 9088.142901728397, + 9184.20376888889, + 9283.197574320988, + 9385.124318024693, + 9489.984, + 7942.952863999999, + 7948.439962469134, + 7956.859999209876, + 7968.212974222221, + 7982.498887506172, + 7999.717739061729, + 8019.869528888888, + 8042.954256987654, + 8068.971923358026, + 8097.922528, + 8129.806070913581, + 8164.622552098766, + 8202.371971555556, + 8243.054329283948, + 8286.669625283948, + 8333.217859555554, + 8382.699032098764, + 8435.113142913578, + 8490.460192, + 8548.740179358027, + 8609.953104987653, + 8674.098968888888, + 8741.177771061728, + 8811.189511506172, + 8884.134190222223, + 8960.011807209878, + 9038.822362469135, + 9120.565856000001, + 9205.24228780247, + 9292.851657876543, + 9383.393966222222, + 9476.869212839507, + 9573.277397728396, + 9672.61852088889, + 9774.892582320987, + 9880.099582024692, + 9988.23952, + 7573.4511999999995, + 7575.623802469136, + 7580.729343209877, + 7588.767822222222, + 7599.739239506172, + 7613.643595061729, + 7630.480888888889, + 7650.251120987655, + 7672.954291358024, + 7698.5904, + 7727.159446913582, + 7758.661432098765, + 7793.096355555555, + 7830.46421728395, + 7870.76501728395, + 7913.998755555556, + 7960.1654320987645, + 8009.2650469135815, + 8061.2976, + 8116.263091358025, + 8174.161520987656, + 8234.99288888889, + 8298.757195061731, + 8365.454439506173, + 8435.084622222224, + 8507.64774320988, + 8583.143802469136, + 8661.5728, + 8742.93473580247, + 8827.229609876544, + 8914.457422222222, + 9004.618172839508, + 9097.711861728396, + 9193.738488888892, + 9292.698054320988, + 9394.59055802469, + 9499.415999999997, + 7955.3217799999975, + 7960.827502469134, + 7969.266163209875, + 7980.637762222221, + 7994.942299506171, + 8012.179775061728, + 8032.3501888888895, + 8055.453540987654, + 8081.489831358023, + 8110.459059999998, + 8142.361226913582, + 8177.196332098765, + 8214.964375555555, + 8255.66535728395, + 8299.29927728395, + 8345.866135555556, + 8395.365932098764, + 8447.798666913579, + 8503.16434, + 8561.462951358024, + 8622.694500987653, + 8686.858988888887, + 8753.95641506173, + 8823.986779506171, + 8896.950082222222, + 8972.846323209875, + 9051.675502469134, + 9133.437619999999, + 9218.13267580247, + 9305.760669876543, + 9396.321602222219, + 9489.815472839506, + 9586.242281728393, + 9685.602028888892, + 9787.894714320988, + 9893.120338024688, + 10001.2789, + 7584.026739999998, + 7586.1651024691355, + 7591.236403209878, + 7599.240642222223, + 7610.177819506173, + 7624.04793506173, + 7640.850988888888, + 7660.586980987656, + 7683.2559113580255, + 7708.85778, + 7737.392586913584, + 7768.860332098768, + 7803.261015555555, + 7840.594637283951, + 7880.861197283951, + 7924.060695555555, + 7970.193132098766, + 8019.25850691358, + 8071.256819999999, + 8126.188071358024, + 8184.052260987656, + 8244.84938888889, + 8308.579455061728, + 8375.242459506171, + 8444.838402222222, + 8517.367283209878, + 8592.829102469135, + 8671.22386, + 8752.551555802469, + 8836.812189876544, + 8924.005762222223, + 9014.132272839508, + 9107.191721728395, + 9203.18410888889, + 9302.109434320988, + 9403.967698024691, + 9508.7589, + 7967.601595999999, + 7973.125942469136, + 7981.583227209876, + 7992.973450222222, + 8007.296611506172, + 8024.552711061729, + 8044.741748888887, + 8067.863724987655, + 8093.918639358025, + 8122.906492, + 8154.827282913581, + 8189.681012098767, + 8227.467679555553, + 8268.187285283948, + 8311.839829283948, + 8358.425311555553, + 8407.943732098765, + 8460.395090913578, + 8515.779387999999, + 8574.096623358024, + 8635.346796987653, + 8699.529908888888, + 8766.645959061729, + 8836.69494750617, + 8909.676874222221, + 8985.591739209876, + 9064.439542469132, + 9146.220283999999, + 9230.933963802468, + 9318.58058187654, + 9409.16013822222, + 9502.672632839507, + 9599.118065728393, + 9698.49643688889, + 9800.807746320987, + 9906.05199402469, + 10014.229179999997, + 7594.51318, + 7596.617302469135, + 7601.654363209878, + 7609.624362222223, + 7620.527299506174, + 7634.363175061729, + 7651.131988888889, + 7670.833740987655, + 7693.468431358026, + 7719.036060000001, + 7747.536626913582, + 7778.970132098766, + 7813.336575555556, + 7850.63595728395, + 7890.86827728395, + 7934.033535555556, + 7980.131732098766, + 8029.162866913581, + 8081.126939999999, + 8136.023951358025, + 8193.853900987655, + 8254.616788888889, + 8318.31261506173, + 8384.941379506174, + 8454.503082222223, + 8526.997723209877, + 8602.425302469137, + 8680.78582, + 8762.079275802469, + 8846.305669876543, + 8933.465002222221, + 9023.557272839505, + 9116.582481728396, + 9212.54062888889, + 9311.431714320988, + 9413.255738024689, + 9518.012699999997, + 7979.792311999999, + 7985.335282469135, + 7993.811191209877, + 8005.220038222222, + 8019.561823506171, + 8036.83654706173, + 8057.044208888888, + 8080.184808987655, + 8106.258347358025, + 8135.264824, + 8167.20423891358, + 8202.076592098767, + 8239.881883555554, + 8280.620113283949, + 8324.29128128395, + 8370.895387555554, + 8420.432432098765, + 8472.902414913578, + 8528.305336000001, + 8586.641195358025, + 8647.909992987654, + 8712.111728888887, + 8779.246403061728, + 8849.314015506174, + 8922.314566222223, + 8998.248055209879, + 9077.114482469135, + 9158.913847999998, + 9243.64615180247, + 9331.311393876544, + 9421.909574222222, + 9515.44069283951, + 9611.904749728395, + 9711.301744888891, + 9813.631678320988, + 9918.894550024692, + 10027.09036, + 7604.910519999999, + 7606.980402469136, + 7611.983223209879, + 7619.918982222224, + 7630.787679506174, + 7644.58931506173, + 7661.323888888889, + 7680.991400987657, + 7703.591851358025, + 7729.125240000002, + 7757.591566913583, + 7788.990832098767, + 7823.323035555556, + 7860.58817728395, + 7900.786257283953, + 7943.917275555557, + 7989.981232098767, + 8038.97812691358, + 8090.9079600000005, + 8145.770731358026, + 8203.566440987655, + 8264.29508888889, + 8327.956675061729, + 8394.551199506173, + 8464.078662222222, + 8536.539063209879, + 8611.932402469138, + 8690.258679999999, + 8771.517895802472, + 8855.710049876545, + 8942.835142222222, + 9032.893172839507, + 9125.884141728397, + 9221.808048888892, + 9320.66489432099, + 9422.454678024693, + 9527.177399999999, + 7991.8939279999995, + 7997.455522469136, + 8005.950055209878, + 8017.3775262222225, + 8031.737935506172, + 8049.0312830617295, + 8069.257568888888, + 8092.416792987652, + 8118.508955358026, + 8147.5340559999995, + 8179.492094913579, + 8214.383072098766, + 8252.206987555555, + 8292.963841283949, + 8336.65363328395, + 8383.276363555557, + 8432.832032098766, + 8485.32063891358, + 8540.742184, + 8599.096667358024, + 8660.384088987654, + 8724.604448888887, + 8791.757747061729, + 8861.84398350617, + 8934.86315822222, + 9010.815271209876, + 9089.700322469136, + 9171.518312, + 9256.269239802466, + 9343.953105876542, + 9434.56991022222, + 9528.119652839507, + 9624.602333728395, + 9724.017952888891, + 9826.366510320988, + 9931.64800602469, + 10039.862439999999, + 7615.218759999999, + 7617.254402469134, + 7622.222983209876, + 7630.124502222222, + 7640.958959506172, + 7654.726355061728, + 7671.426688888889, + 7691.0599609876535, + 7713.626171358024, + 7739.125319999999, + 7767.557406913581, + 7798.922432098764, + 7833.220395555554, + 7870.451297283948, + 7910.61513728395, + 7953.711915555554, + 7999.741632098766, + 8048.70428691358, + 8100.599880000001, + 8155.428411358023, + 8213.189880987655, + 8273.884288888888, + 8337.511635061728, + 8404.071919506172, + 8473.56514222222, + 8545.991303209878, + 8621.350402469137, + 8699.642439999998, + 8780.867415802468, + 8865.025329876542, + 8952.11618222222, + 9042.139972839508, + 9135.096701728397, + 9230.986368888889, + 9329.808974320986, + 9431.564518024692, + 9536.252999999997, + 8003.906443999998, + 8009.486662469135, + 8017.999819209875, + 8029.44591422222, + 8043.824947506172, + 8061.136919061728, + 8081.381828888889, + 8104.559676987654, + 8130.670463358024, + 8159.714188000001, + 8191.690850913581, + 8226.600452098763, + 8264.442991555554, + 8305.21846928395, + 8348.92688528395, + 8395.568239555554, + 8445.142532098766, + 8497.64976291358, + 8553.089931999999, + 8611.463039358025, + 8672.769084987653, + 8737.008068888887, + 8804.179991061728, + 8874.284851506172, + 8947.322650222222, + 9023.293387209875, + 9102.197062469135, + 9184.033676, + 9268.80322780247, + 9356.50571787654, + 9447.14114622222, + 9540.709512839505, + 9637.210817728394, + 9736.645060888892, + 9839.012242320987, + 9944.312362024692, + 10052.545420000002, + 7625.437899999998, + 7627.439302469134, + 7632.373643209875, + 7640.240922222221, + 7651.041139506171, + 7664.774295061727, + 7681.440388888887, + 7701.039420987653, + 7723.571391358023, + 7749.036299999999, + 7777.434146913582, + 7808.764932098765, + 7843.028655555553, + 7880.225317283949, + 7920.354917283949, + 7963.417455555554, + 8009.412932098766, + 8058.341346913581, + 8110.202699999999, + 8164.9969913580235, + 8222.724220987655, + 8283.384388888888, + 8346.977495061728, + 8413.503539506173, + 8482.96252222222, + 8555.354443209877, + 8630.679302469134, + 8708.9371, + 8790.127835802467, + 8874.251509876542, + 8961.30812222222, + 9051.297672839506, + 9144.220161728395, + 9240.075588888889, + 9338.863954320987, + 9440.585258024692, + 9545.239499999998, + 8015.829859999998, + 8021.428702469134, + 8029.960483209877, + 8041.42520222222, + 8055.822859506172, + 8073.153455061728, + 8093.41698888889, + 8116.613460987654, + 8142.742871358024, + 8171.805219999999, + 8203.80050691358, + 8238.728732098765, + 8276.589895555553, + 8317.383997283949, + 8361.11103728395, + 8407.771015555554, + 8457.363932098766, + 8509.88978691358, + 8565.348579999998, + 8623.740311358024, + 8685.064980987652, + 8749.322588888886, + 8816.513135061728, + 8886.636619506173, + 8959.693042222223, + 9035.682403209878, + 9114.604702469134, + 9196.459939999997, + 9281.248115802468, + 9368.96922987654, + 9459.62328222222, + 9553.210272839508, + 9649.730201728393, + 9749.183068888891, + 9851.568874320987, + 9956.88761802469, + 10065.139299999997, + 7635.56794, + 7637.535102469135, + 7642.435203209876, + 7650.268242222222, + 7661.034219506172, + 7674.733135061729, + 7691.3649888888895, + 7710.929780987654, + 7733.427511358025, + 7758.858180000001, + 7787.221786913582, + 7818.518332098765, + 7852.747815555554, + 7889.91023728395, + 7930.005597283951, + 7973.033895555557, + 8018.995132098766, + 8067.88930691358, + 8119.71642, + 8174.476471358025, + 8232.169460987656, + 8292.79538888889, + 8356.35425506173, + 8422.846059506172, + 8492.270802222221, + 8564.628483209877, + 8639.919102469134, + 8718.142659999998, + 8799.29915580247, + 8883.388589876542, + 8970.41096222222, + 9060.366272839507, + 9153.254521728395, + 9249.075708888888, + 9347.829834320988, + 9449.51689802469, + 9554.136899999996, + 8027.664176, + 8033.281642469135, + 8041.832047209877, + 8053.31539022222, + 8067.731671506172, + 8085.080891061729, + 8105.363048888888, + 8128.578144987653, + 8154.726179358024, + 8183.807152, + 8215.821062913581, + 8250.767912098765, + 8288.647699555553, + 8329.460425283949, + 8373.20608928395, + 8419.884691555555, + 8469.496232098767, + 8522.04071091358, + 8577.518128, + 8635.928483358026, + 8697.271776987653, + 8761.548008888887, + 8828.75717906173, + 8898.899287506172, + 8971.974334222221, + 9047.982319209876, + 9126.923242469134, + 9208.797104, + 9293.60390380247, + 9381.343641876543, + 9472.01631822222, + 9565.62193283951, + 9662.160485728393, + 9761.631976888893, + 9864.036406320984, + 9969.37377402469, + 10077.644079999998, + 7636.688000895607, + 7638.651358917255, + 7643.547655210508, + 7651.376889775365, + 7662.139062611827, + 7675.834173719894, + 7692.462223099568, + 7712.023210750845, + 7734.517136673729, + 7759.944000868216, + 7788.303803334307, + 7819.596544072004, + 7853.822223081305, + 7890.980840362213, + 7931.072395914726, + 7974.096889738844, + 8020.0543218345665, + 8068.944692201892, + 8120.768000840822, + 8175.524247751358, + 8233.213432933502, + 8293.835556387246, + 8357.3906181126, + 8423.878618109557, + 8493.299556378115, + 8565.653432918283, + 8640.940247730055, + 8719.16000081343, + 8800.31269216841, + 8884.398321794997, + 8971.416889693186, + 9061.368395862984, + 9154.252840304387, + 9250.070223017392, + 9348.820544002003, + 9450.503803258218, + 9555.120000786037, + 8028.973601047097, + 8034.593136851221, + 8043.145610926953, + 8054.631023274286, + 8069.049373893224, + 8086.4006627837725, + 8106.684889945921, + 8129.902055379674, + 8156.052159085034, + 8185.135201061996, + 8217.151181310566, + 8252.10009983074, + 8289.98195662252, + 8330.7967516859, + 8374.544485020893, + 8421.225156627486, + 8470.838766505683, + 8523.385314655487, + 8578.864801076897, + 8637.27722576991, + 8698.622588734528, + 8762.90088997075, + 8830.112129478579, + 8900.256307258014, + 8973.333423309052, + 9049.343477631695, + 9128.286470225943, + 9210.162401091795, + 9294.971270229256, + 9382.713077638316, + 9473.387823318983, + 9566.995507271258, + 9663.536129495134, + 9763.009689990622, + 9865.416188757707, + 9970.755625796397, + 10079.028001106695, + 8067.623199999998, + 8063.803802469135, + 8062.917343209877, + 8064.963822222221, + 8069.943239506171, + 8077.855595061727, + 8088.700888888887, + 8102.479120987654, + 8119.190291358023, + 8138.834400000001, + 8161.411446913581, + 8186.921432098764, + 8215.364355555554, + 8246.740217283948, + 8281.049017283949, + 8318.290755555556, + 8358.465432098765, + 8401.57304691358, + 8447.613599999997, + 8496.587091358024, + 8548.493520987653, + 8603.332888888888, + 8661.105195061727, + 8721.810439506171, + 8785.44862222222, + 8852.019743209876, + 8921.523802469135, + 8993.960799999997, + 9069.330735802469, + 9147.63360987654, + 9228.869422222222, + 9313.038172839506, + 9400.139861728394, + 9490.17448888889, + 9583.142054320988, + 9679.04255802469, + 9777.875999999998, + 8747.742079999998, + 8756.507002469136, + 8768.204863209878, + 8782.83566222222, + 8800.39939950617, + 8820.896075061728, + 8844.325688888888, + 8870.688240987653, + 8899.983731358023, + 8932.21216, + 8967.37352691358, + 9005.467832098766, + 9046.495075555553, + 9090.45525728395, + 9137.34837728395, + 9187.174435555555, + 9239.933432098764, + 9295.62536691358, + 9354.25024, + 9415.808051358024, + 9480.298800987652, + 9547.722488888887, + 9618.07911506173, + 9691.368679506171, + 9767.591182222219, + 9846.746623209876, + 9928.83500246913, + 10013.856319999997, + 10101.810575802467, + 10192.69776987654, + 10286.51790222222, + 10383.270972839504, + 10482.956981728392, + 10585.57592888889, + 10691.12781432099, + 10799.61263802469, + 10911.030399999998 + ] + } + }, + "use_defrost_map": true + } + }, + "heat_source_type": "AIRTOWATERHEATPUMP", + "id": "compressor", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ], + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 8.333333333333334, + "temperature_weight_distribution": { + "normalized_height": [ + 0.25, + 0.3333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "compressor", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 7.257125279564129, + "volume": 2.271246 + } + } + }, + "depresses_temperature": false, + "fixed_volume": false, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 24, + "standard_setpoint": 330.3722222222222, + "system_type": "CENTRAL" +} \ No newline at end of file diff --git a/examples/UEF2generic.json b/examples/UEF2generic.json new file mode 100644 index 0000000..825a503 --- /dev/null +++ b/examples/UEF2generic.json @@ -0,0 +1,210 @@ +{ + "depresses_temperature": false, + "fixed_volume": true, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.5, + 0.5833333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 10.366944444444444, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "compressor", + "followed_by_heat_source_id": "compressor", + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 0.16666666666666666, + 0.25, + 1.0 + ], + "weight": [ + 0.0, + 0.25, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4000.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "shut_off_logic": [ + { + "comparison_type": "GREATER_THAN", + "heating_logic": { + "absolute_temperature": 303.2117222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "backup_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSCONDENSERWATERHEATSOURCE" + }, + "performance": { + "coil_configuration": "WRAPPED", + "compressor_lockout_temperature_hysteresis": 1.1111111111111112, + "maximum_refrigerant_temperature": 344.26111111111106, + "performance_map": { + "grid_variables": { + "evaporator_environment_dry_bulb_temperature": [ + 275.92777777777775, + 283.15, + 294.26111111111106, + 322.0388888888889 + ], + "heat_source_temperature": [ + 273.15, + 344.26111111111106 + ] + }, + "lookup_variables": { + "heating_capacity": [ + 744.9790886703414, + 231.02498419450157, + 875.0590068648833, + 199.90063466156866, + 1042.397568705024, + 136.78224015360146, + 1286.8873637609126, + -101.80424527799661 + ], + "input_power": [ + 261.7388234, + 458.9795785999999, + 249.136028, + 497.42364399999997, + 229.74711200000007, + 556.5683599999998, + 181.27482199999997, + 704.4301499999999 + ] + } + } + } + }, + "heat_source_type": "CONDENSER", + "id": "compressor", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 18.715722222222222, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 6.884444444444444, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.3333333333333333, + "fittings_ua": 0.0, + "ua": 1.8055555555555556, + "volume": 0.17034345 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/examples/restankRealistic.json b/examples/restankRealistic.json new file mode 100644 index 0000000..91a8c7f --- /dev/null +++ b/examples/restankRealistic.json @@ -0,0 +1,124 @@ +{ + "depresses_temperature": false, + "fixed_volume": false, + "integrated_system": { + "metadata": { + "schema": "RSINTEGRATEDWATERHEATER" + }, + "performance": { + "heat_source_configurations": [ + { + "followed_by_heat_source_id": "resistiveElementBottom", + "heat_distribution": { + "normalized_height": [ + 0.75, + 0.8333333333333333, + 1.0 + ], + "weight": [ + 0.0, + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementTop", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 20.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.6666666666666666, + 1.0 + ], + "weight": [ + 0.0, + 1.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + }, + { + "heat_distribution": { + "normalized_height": [ + 0.08333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + }, + "heat_source": { + "metadata": { + "schema": "RSRESISTANCEWATERHEATSOURCE" + }, + "performance": { + "input_power": 4500.0 + } + }, + "heat_source_type": "RESISTANCE", + "id": "resistiveElementBottom", + "turn_on_logic": [ + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 20.0, + "temperature_weight_distribution": { + "normalized_height": [ + 0.3333333333333333, + 1.0 + ], + "weight": [ + 1.0, + 0.0 + ] + } + }, + "heating_logic_type": "TEMPERATURE_BASED" + }, + { + "comparison_type": "LESS_THAN", + "heating_logic": { + "differential_temperature": 15.0, + "standby_temperature_location": "TOP_OF_TANK" + }, + "heating_logic_type": "TEMPERATURE_BASED" + } + ] + } + ], + "primary_heat_source_id": "resistiveElementTop", + "tank": { + "metadata": { + "schema": "RSTANK" + }, + "performance": { + "bottom_fraction_of_tank_mixing_on_draw": 0.0, + "fittings_ua": 0.0, + "ua": 2.7777777777777777, + "volume": 0.1892705 + } + } + } + }, + "metadata": { + "schema": "HPWHSimInput" + }, + "number_of_nodes": 12, + "standard_setpoint": 325.92777777777775, + "system_type": "INTEGRATED" +} \ No newline at end of file diff --git a/schema/RSAIRTOWATERHEATPUMP.schema.yaml b/schema/RSAIRTOWATERHEATPUMP.schema.yaml index 36ec2a5..14885c8 100644 --- a/schema/RSAIRTOWATERHEATPUMP.schema.yaml +++ b/schema/RSAIRTOWATERHEATPUMP.schema.yaml @@ -104,7 +104,7 @@ GridVariables: Description: "Outlet temperature used by single-pass central water-heating systems" Data Type: "[Numeric]" Units: "K" - Required: True + Required: False LookupVariables: Object Type: "Data Group" From 08256b4d0887cca79d6a92360b67db050c360653 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Wed, 22 Jan 2025 09:36:39 -0700 Subject: [PATCH 10/15] Update lattice. --- poetry.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 4644774..d3bb0dd 100644 --- a/poetry.lock +++ b/poetry.lock @@ -465,7 +465,7 @@ stringcase = ">=1.2.0" type = "git" url = "https://github.com/bigladder/lattice.git" reference = "cpp-cleanup" -resolved_reference = "fddff516b9d9f86b20f0da6a1901b92bf544dac9" +resolved_reference = "df744aec1873fefe421e61ea7537d69a102a00a3" [[package]] name = "markdown" From 3d9ee0f378b5cb03bcfddff71da0f0bbd1669f8d Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Wed, 22 Jan 2025 09:51:12 -0700 Subject: [PATCH 11/15] Add reference. --- schema/HeatSourceConfiguration.schema.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/HeatSourceConfiguration.schema.yaml b/schema/HeatSourceConfiguration.schema.yaml index 0f876da..3f85ac1 100644 --- a/schema/HeatSourceConfiguration.schema.yaml +++ b/schema/HeatSourceConfiguration.schema.yaml @@ -7,6 +7,7 @@ Schema: - "RSRESISTANCEWATERHEATSOURCE" - "RSCONDENSERWATERHEATSOURCE" - "RSAIRTOWATERHEATPUMP" + - "ASHRAE205" HeatingLogicTemplate: Object Type: "Data Group Template" From d715054db508a401dc594971ae0f7818a0629779 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Wed, 22 Jan 2025 11:28:26 -0700 Subject: [PATCH 12/15] Update examples. --- examples/NyleC125A_C_MP.json | 92 ++++++++++------ examples/NyleC125A_MP.json | 83 ++++++++------ examples/NyleC185A_C_MP.json | 96 ++++++++++------ examples/NyleC185A_MP.json | 89 ++++++++------- examples/NyleC250A_C_MP.json | 102 ++++++++++------- examples/NyleC250A_MP.json | 95 +++++++++------- examples/NyleC60A_C_MP.json | 90 +++++++++------ examples/NyleC60A_MP.json | 87 ++++++++------- examples/NyleC90A_C_MP.json | 96 ++++++++++------ examples/NyleC90A_MP.json | 89 ++++++++------- examples/QAHV_N136TAU_HPB_SP.json | 177 ++++++++++++++++++------------ 11 files changed, 661 insertions(+), 435 deletions(-) diff --git a/examples/NyleC125A_C_MP.json b/examples/NyleC125A_C_MP.json index ea9ea6a..b762265 100644 --- a/examples/NyleC125A_C_MP.json +++ b/examples/NyleC125A_C_MP.json @@ -28,10 +28,12 @@ "performance_map": { "grid_variables": { "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -45,54 +47,78 @@ "lookup_variables": { "heating_capacity": [ 27130.0, - 26750.000002039997, + 26750.00000204, 26229.99999975, - 25840.00000494, - 25630.00000262, + 25840.000004940004, + 25630.000002620003, 25099.999991970002, - 37030.00000037, - 36040.0000014, - 34980.00000488, - 33990.00000295, - 32839.9999975, - 31880.000001689998, + 27130.0, + 26750.000002040008, + 26229.999999750005, + 25840.000004940008, + 25630.000002620007, + 25099.999991970002, + 37030.00000036998, + 36040.000001399996, + 34980.000004879985, + 33990.000002949986, + 32839.99999749999, + 31880.000001689987, 50009.999997750005, - 47860.000000579996, + 47860.00000058001, 45969.999998190004, - 44060.0000064, + 44060.00000640001, 41599.99999584, 39570.00000765, 57119.999997060004, 54619.999998, - 51980.00000046, - 48499.99999849, + 51980.00000046001, + 48499.999998490006, + 43800.000006199996, + 40700.0000064, + 57119.999997060004, + 54619.999998, + 51980.00000046001, + 48499.999998490006, 43800.000006199996, 40700.0000064 ], "input_power": [ - 6400.0, - 7720.0, - 9650.0, - 12540.0, - 20540.0, + 6400.000000000001, + 7719.999999999998, + 9650.000000000004, + 12539.999999999998, + 20540.000000000007, 24690.0, - 6890.0, - 8280.0, - 10130.0, - 12850.0, - 19750.0, + 6400.000000000001, + 7719.999999999999, + 9650.000000000004, + 12539.999999999998, + 20540.000000000004, + 24689.999999999996, + 6890.000000000001, + 8279.999999999998, + 10130.000000000002, + 12849.999999999998, + 19750.000000000007, 24390.0, - 7690.0, + 7690.000000000003, 9070.0, - 10870.0, - 13440.0, - 19680.0, + 10870.000000000004, + 13439.999999999998, + 19680.000000000004, 22350.0, - 8580.0, - 9500.0, - 11270.0, - 13690.0, - 19720.0, + 8580.000000000002, + 9499.999999999998, + 11270.000000000004, + 13689.999999999998, + 19720.000000000004, + 22400.0, + 8580.000000000002, + 9499.999999999998, + 11270.000000000004, + 13689.999999999998, + 19720.000000000004, 22400.0 ] } diff --git a/examples/NyleC125A_MP.json b/examples/NyleC125A_MP.json index ea9ea6a..392476f 100644 --- a/examples/NyleC125A_MP.json +++ b/examples/NyleC125A_MP.json @@ -31,7 +31,8 @@ 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -45,54 +46,66 @@ "lookup_variables": { "heating_capacity": [ 27130.0, - 26750.000002039997, - 26229.99999975, - 25840.00000494, - 25630.00000262, + 26750.000002040008, + 26229.999999750005, + 25840.000004940008, + 25630.000002620007, 25099.999991970002, - 37030.00000037, - 36040.0000014, - 34980.00000488, - 33990.00000295, - 32839.9999975, - 31880.000001689998, + 37030.00000036998, + 36040.000001399996, + 34980.000004879985, + 33990.000002949986, + 32839.99999749999, + 31880.000001689987, 50009.999997750005, - 47860.000000579996, + 47860.00000058001, 45969.999998190004, - 44060.0000064, + 44060.00000640001, 41599.99999584, 39570.00000765, 57119.999997060004, 54619.999998, - 51980.00000046, - 48499.99999849, + 51980.00000046001, + 48499.999998490006, + 43800.000006199996, + 40700.0000064, + 57119.999997060004, + 54619.999998, + 51980.00000046001, + 48499.999998490006, 43800.000006199996, 40700.0000064 ], "input_power": [ - 6400.0, - 7720.0, - 9650.0, - 12540.0, - 20540.0, - 24690.0, - 6890.0, - 8280.0, - 10130.0, - 12850.0, - 19750.0, + 6400.000000000001, + 7719.999999999999, + 9650.000000000004, + 12539.999999999998, + 20540.000000000004, + 24689.999999999996, + 6890.000000000001, + 8279.999999999998, + 10130.000000000002, + 12849.999999999998, + 19750.000000000007, 24390.0, - 7690.0, + 7690.000000000003, 9070.0, - 10870.0, - 13440.0, - 19680.0, + 10870.000000000004, + 13439.999999999998, + 19680.000000000004, 22350.0, - 8580.0, - 9500.0, - 11270.0, - 13690.0, - 19720.0, + 8580.000000000002, + 9499.999999999998, + 11270.000000000004, + 13689.999999999998, + 19720.000000000004, + 22400.0, + 8580.000000000002, + 9499.999999999998, + 11270.000000000004, + 13689.999999999998, + 19720.000000000004, 22400.0 ] } diff --git a/examples/NyleC185A_C_MP.json b/examples/NyleC185A_C_MP.json index 3745b14..43000c1 100644 --- a/examples/NyleC185A_C_MP.json +++ b/examples/NyleC185A_C_MP.json @@ -28,10 +28,12 @@ "performance_map": { "grid_variables": { "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +46,79 @@ }, "lookup_variables": { "heating_capacity": [ - 41869.99999901, - 41470.00000484, - 40999.9999973, - 40529.99999339999, + 41869.999999010004, + 41470.00000484001, + 40999.99999730001, + 40529.9999934, 39819.99999864, 39350.00000952, - 55989.99999894, + 41869.99999901001, + 41470.00000484002, + 40999.999997300016, + 40529.9999934, + 39819.99999864001, + 39350.000009520016, + 55989.99999893999, 54999.9999997, - 53960.0000058, - 53049.99999857, - 51539.999992959994, - 50550.0000096, - 76010.0000016, - 74650.00000052, + 53960.000005799986, + 53049.999998569976, + 51539.99999295998, + 50550.000009599986, + 76010.00000160001, + 74650.00000052001, 71979.99999928, - 69700.00000490999, + 69700.00000491, 66570.00001042, 64380.00000959999, - 83699.9999975, - 79129.99999506, + 83699.99999750001, + 79129.99999506003, 76490.0000001, - 72799.99999329999, + 72799.9999933, + 67520.00000905, + 64049.99999076, + 83699.99999750001, + 79129.99999506003, + 76490.0000001, + 72799.9999933, 67520.00000905, 64049.99999076 ], "input_power": [ - 7570.0, - 11660.0, - 14050.0, + 7570.000000000005, + 11659.999999999996, + 14050.000000000007, 18300.0, - 25040.0, + 25040.000000000007, + 30480.0, + 7570.000000000003, + 11659.999999999993, + 14050.000000000007, + 18299.999999999996, + 25040.000000000007, 30480.0, - 6990.0, - 10460.0, - 14280.0, - 18190.0, - 26240.0, + 6990.000000000005, + 10459.999999999998, + 14280.000000000005, + 18189.999999999996, + 26240.000000000007, 32320.0, - 7870.0, - 12040.0, - 15020.0, - 18810.0, - 25990.0, + 7870.000000000005, + 12039.999999999996, + 15020.000000000004, + 18809.999999999996, + 25990.000000000007, 31260.0, - 8150.0, - 12460.0, - 15170.0, - 18950.0, - 26230.0, + 8150.000000000004, + 12459.999999999996, + 15170.000000000005, + 18949.999999999996, + 26230.000000000007, + 31620.0, + 8150.000000000004, + 12459.999999999996, + 15170.000000000005, + 18949.999999999996, + 26230.000000000007, 31620.0 ] } diff --git a/examples/NyleC185A_MP.json b/examples/NyleC185A_MP.json index 3745b14..b6dbeef 100644 --- a/examples/NyleC185A_MP.json +++ b/examples/NyleC185A_MP.json @@ -31,7 +31,8 @@ 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +45,67 @@ }, "lookup_variables": { "heating_capacity": [ - 41869.99999901, - 41470.00000484, - 40999.9999973, - 40529.99999339999, - 39819.99999864, - 39350.00000952, - 55989.99999894, + 41869.99999901001, + 41470.00000484002, + 40999.999997300016, + 40529.9999934, + 39819.99999864001, + 39350.000009520016, + 55989.99999893999, 54999.9999997, - 53960.0000058, - 53049.99999857, - 51539.999992959994, - 50550.0000096, - 76010.0000016, - 74650.00000052, + 53960.000005799986, + 53049.999998569976, + 51539.99999295998, + 50550.000009599986, + 76010.00000160001, + 74650.00000052001, 71979.99999928, - 69700.00000490999, + 69700.00000491, 66570.00001042, 64380.00000959999, - 83699.9999975, - 79129.99999506, + 83699.99999750001, + 79129.99999506003, 76490.0000001, - 72799.99999329999, + 72799.9999933, + 67520.00000905, + 64049.99999076, + 83699.99999750001, + 79129.99999506003, + 76490.0000001, + 72799.9999933, 67520.00000905, 64049.99999076 ], "input_power": [ - 7570.0, - 11660.0, - 14050.0, - 18300.0, - 25040.0, + 7570.000000000003, + 11659.999999999993, + 14050.000000000007, + 18299.999999999996, + 25040.000000000007, 30480.0, - 6990.0, - 10460.0, - 14280.0, - 18190.0, - 26240.0, + 6990.000000000005, + 10459.999999999998, + 14280.000000000005, + 18189.999999999996, + 26240.000000000007, 32320.0, - 7870.0, - 12040.0, - 15020.0, - 18810.0, - 25990.0, + 7870.000000000005, + 12039.999999999996, + 15020.000000000004, + 18809.999999999996, + 25990.000000000007, 31260.0, - 8150.0, - 12460.0, - 15170.0, - 18950.0, - 26230.0, + 8150.000000000004, + 12459.999999999996, + 15170.000000000005, + 18949.999999999996, + 26230.000000000007, + 31620.0, + 8150.000000000004, + 12459.999999999996, + 15170.000000000005, + 18949.999999999996, + 26230.000000000007, 31620.0 ] } diff --git a/examples/NyleC250A_C_MP.json b/examples/NyleC250A_C_MP.json index 0d2a8cf..a5b6a10 100644 --- a/examples/NyleC250A_C_MP.json +++ b/examples/NyleC250A_C_MP.json @@ -28,10 +28,12 @@ "performance_map": { "grid_variables": { "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +46,79 @@ }, "lookup_variables": { "heating_capacity": [ - 63359.9999109, + 63359.99991089998, 55039.999990899996, - 50089.999908, - 45549.9999828, - 37539.999949, + 50089.99990799999, + 45549.99998280001, + 37539.99994899998, 32359.9998568, - 83029.9999074, - 75699.99988480001, - 70160.0000004, - 65419.999927799996, - 56179.9999512, - 50379.999975, - 110019.999796, - 103399.99996, - 97799.9998885, - 90999.9998314, - 78669.99989590001, - 71379.9999585, - 128169.999801, - 117074.441834, - 107269.99985800001, - 96279.9998616, - 77889.9999199, + 63359.999910899984, + 55039.999990900025, + 50089.99990800002, + 45549.99998280002, + 37539.999949, + 32359.99985680002, + 83029.99990739996, + 75699.9998848, + 70160.00000039996, + 65419.999927799974, + 56179.99995119996, + 50379.99997499998, + 110019.99979600008, + 103399.99996000004, + 97799.99988850001, + 90999.99983140001, + 78669.9998959, + 71379.99995849998, + 128169.99980100006, + 117074.44183400006, + 107269.999858, + 96279.99986160002, + 77889.99991989997, + 66470.00001080001, + 128169.99980100006, + 117074.44183400006, + 107269.999858, + 96279.99986160002, + 77889.99991989997, 66470.00001080001 ], "input_power": [ 10890.0, - 12230.0, - 13550.0, + 12229.999999999998, + 13550.000000000002, 14580.0, 15740.0, 16720.0, - 11460.0, - 13760.0, - 15970.0, - 17790.0, - 20560.0, - 22500.0, + 10890.0, + 12230.0, + 13550.000000000005, + 14580.000000000002, + 15740.000000000004, + 16720.000000000007, + 11460.000000000002, + 13759.999999999996, + 15969.999999999998, + 17789.999999999996, + 20559.999999999996, + 22499.999999999993, 10360.0, - 14660.0, - 18070.0, - 21230.0, - 25810.0, + 14659.999999999995, + 18070.000000000004, + 21229.999999999996, + 25810.000000000007, 29010.0, - 8670.0, - 15050.0, - 18760.0, + 8670.000000000007, + 15049.999999999993, + 18760.000000000004, + 21870.0, + 26630.000000000004, + 30020.0, + 8670.000000000007, + 15049.999999999993, + 18760.000000000004, 21870.0, - 26630.0, + 26630.000000000004, 30020.0 ] } diff --git a/examples/NyleC250A_MP.json b/examples/NyleC250A_MP.json index 0d2a8cf..2060cab 100644 --- a/examples/NyleC250A_MP.json +++ b/examples/NyleC250A_MP.json @@ -31,7 +31,8 @@ 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +45,67 @@ }, "lookup_variables": { "heating_capacity": [ - 63359.9999109, - 55039.999990899996, - 50089.999908, - 45549.9999828, + 63359.999910899984, + 55039.999990900025, + 50089.99990800002, + 45549.99998280002, 37539.999949, - 32359.9998568, - 83029.9999074, - 75699.99988480001, - 70160.0000004, - 65419.999927799996, - 56179.9999512, - 50379.999975, - 110019.999796, - 103399.99996, - 97799.9998885, - 90999.9998314, - 78669.99989590001, - 71379.9999585, - 128169.999801, - 117074.441834, - 107269.99985800001, - 96279.9998616, - 77889.9999199, + 32359.99985680002, + 83029.99990739996, + 75699.9998848, + 70160.00000039996, + 65419.999927799974, + 56179.99995119996, + 50379.99997499998, + 110019.99979600008, + 103399.99996000004, + 97799.99988850001, + 90999.99983140001, + 78669.9998959, + 71379.99995849998, + 128169.99980100006, + 117074.44183400006, + 107269.999858, + 96279.99986160002, + 77889.99991989997, + 66470.00001080001, + 128169.99980100006, + 117074.44183400006, + 107269.999858, + 96279.99986160002, + 77889.99991989997, 66470.00001080001 ], "input_power": [ 10890.0, 12230.0, - 13550.0, - 14580.0, - 15740.0, - 16720.0, - 11460.0, - 13760.0, - 15970.0, - 17790.0, - 20560.0, - 22500.0, + 13550.000000000005, + 14580.000000000002, + 15740.000000000004, + 16720.000000000007, + 11460.000000000002, + 13759.999999999996, + 15969.999999999998, + 17789.999999999996, + 20559.999999999996, + 22499.999999999993, 10360.0, - 14660.0, - 18070.0, - 21230.0, - 25810.0, + 14659.999999999995, + 18070.000000000004, + 21229.999999999996, + 25810.000000000007, 29010.0, - 8670.0, - 15050.0, - 18760.0, + 8670.000000000007, + 15049.999999999993, + 18760.000000000004, 21870.0, - 26630.0, + 26630.000000000004, + 30020.0, + 8670.000000000007, + 15049.999999999993, + 18760.000000000004, + 21870.0, + 26630.000000000004, 30020.0 ] } diff --git a/examples/NyleC60A_C_MP.json b/examples/NyleC60A_C_MP.json index 890d9bf..d4bd0e4 100644 --- a/examples/NyleC60A_C_MP.json +++ b/examples/NyleC60A_C_MP.json @@ -28,10 +28,12 @@ "performance_map": { "grid_variables": { "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -45,54 +47,78 @@ "lookup_variables": { "heating_capacity": [ 12240.00000132, - 11989.99999929, - 11699.99999802, + 11989.999999290001, + 11699.999998020001, 11390.00000109, 11249.999997320001, 10900.000000650001, - 16509.99999996, - 16110.000001479999, - 15629.99999971, - 15110.00000136, - 14349.99999915, - 13890.0000009, - 21759.99999834, - 21330.000002160003, - 20549.999999, - 19780.000000800002, - 18489.99999644, - 17769.9999972, - 24530.00000195, - 24120.00000072, - 23039.99999841, + 12240.000001320004, + 11989.999999290003, + 11699.999998020005, + 11390.000001090004, + 11249.999997320003, + 10900.000000650005, + 16509.999999959993, + 16110.000001479993, + 15629.999999709997, + 15110.000001359995, + 14349.999999149995, + 13890.000000899994, + 21759.999998340005, + 21330.00000216001, + 20549.999999000003, + 19780.000000800006, + 18489.999996440005, + 17769.999997199997, + 24530.000001949997, + 24120.000000720003, + 23039.999998409992, + 21670.00000282, + 19520.000001610002, + 18409.99999905, + 24530.000001949997, + 24120.000000720003, + 23039.999998409992, 21670.00000282, 19520.000001610002, 18409.99999905 ], "input_power": [ - 3640.0, + 3640.0000000000005, 4110.0, - 4860.0, + 4860.000000000002, 5970.0, - 8680.0, + 8680.000000000002, + 9950.0, + 3640.0000000000005, + 4110.0, + 4860.000000000002, + 5969.999999999999, + 8680.000000000002, 9950.0, 3720.0, - 4270.0, - 4990.0, - 6030.0, - 8550.0, + 4269.999999999999, + 4990.000000000002, + 6029.999999999999, + 8550.000000000002, 10020.0, - 3980.0, + 3980.0000000000014, 4530.0, - 5240.0, - 6240.0, - 8540.0, + 5240.000000000001, + 6239.999999999999, + 8540.000000000002, + 9549.999999999998, + 4450.0, + 4680.0, + 5370.000000000001, + 6339.999999999999, + 8590.000000000002, 9550.0, 4450.0, 4680.0, - 5370.0, - 6340.0, - 8590.0, + 5370.000000000001, + 6339.999999999999, + 8590.000000000002, 9550.0 ] } diff --git a/examples/NyleC60A_MP.json b/examples/NyleC60A_MP.json index 890d9bf..01e994a 100644 --- a/examples/NyleC60A_MP.json +++ b/examples/NyleC60A_MP.json @@ -31,7 +31,8 @@ 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +45,67 @@ }, "lookup_variables": { "heating_capacity": [ - 12240.00000132, - 11989.99999929, - 11699.99999802, - 11390.00000109, - 11249.999997320001, - 10900.000000650001, - 16509.99999996, - 16110.000001479999, - 15629.99999971, - 15110.00000136, - 14349.99999915, - 13890.0000009, - 21759.99999834, - 21330.000002160003, - 20549.999999, - 19780.000000800002, - 18489.99999644, - 17769.9999972, - 24530.00000195, - 24120.00000072, - 23039.99999841, + 12240.000001320004, + 11989.999999290003, + 11699.999998020005, + 11390.000001090004, + 11249.999997320003, + 10900.000000650005, + 16509.999999959993, + 16110.000001479993, + 15629.999999709997, + 15110.000001359995, + 14349.999999149995, + 13890.000000899994, + 21759.999998340005, + 21330.00000216001, + 20549.999999000003, + 19780.000000800006, + 18489.999996440005, + 17769.999997199997, + 24530.000001949997, + 24120.000000720003, + 23039.999998409992, + 21670.00000282, + 19520.000001610002, + 18409.99999905, + 24530.000001949997, + 24120.000000720003, + 23039.999998409992, 21670.00000282, 19520.000001610002, 18409.99999905 ], "input_power": [ - 3640.0, + 3640.0000000000005, 4110.0, - 4860.0, - 5970.0, - 8680.0, + 4860.000000000002, + 5969.999999999999, + 8680.000000000002, 9950.0, 3720.0, - 4270.0, - 4990.0, - 6030.0, - 8550.0, + 4269.999999999999, + 4990.000000000002, + 6029.999999999999, + 8550.000000000002, 10020.0, - 3980.0, + 3980.0000000000014, 4530.0, - 5240.0, - 6240.0, - 8540.0, + 5240.000000000001, + 6239.999999999999, + 8540.000000000002, + 9549.999999999998, + 4450.0, + 4680.0, + 5370.000000000001, + 6339.999999999999, + 8590.000000000002, 9550.0, 4450.0, 4680.0, - 5370.0, - 6340.0, - 8590.0, + 5370.000000000001, + 6339.999999999999, + 8590.000000000002, 9550.0 ] } diff --git a/examples/NyleC90A_C_MP.json b/examples/NyleC90A_C_MP.json index 768a7dc..f813790 100644 --- a/examples/NyleC90A_C_MP.json +++ b/examples/NyleC90A_C_MP.json @@ -28,10 +28,12 @@ "performance_map": { "grid_variables": { "evaporator_environment_dry_bulb_temperature": [ + 274.81666666666666, 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +46,79 @@ }, "lookup_variables": { "heating_capacity": [ - 21130.0000002, + 21130.000000199998, 20980.00000136, - 20279.99999728, - 19899.99999632, + 20279.999997280003, + 19899.999996320003, 19199.99999711, 18740.00000001, - 29019.99999946, - 28189.99999858, - 27370.000003139998, + 21130.000000200005, + 20980.00000136001, + 20279.999997280003, + 19899.999996320006, + 19199.999997110004, + 18740.000000010004, + 29019.999999459993, + 28189.99999857999, + 27370.00000313999, 26579.999995600003, - 25390.000001760003, - 24580.0000005, - 39400.00000159, - 37689.999998939995, - 36340.000001759996, - 34760.000003149995, + 25390.000001759992, + 24580.000000499993, + 39400.000001590015, + 37689.99999894002, + 36340.00000176, + 34760.00000315, 32489.999994060003, - 30979.9999947, + 30979.999994700007, 45769.999999140004, 43659.99999711, - 41710.00000416, + 41710.00000415999, 39439.999999399995, - 36269.9999955, + 36269.999995499995, + 34159.999998299994, + 45769.999999140004, + 43659.99999711, + 41710.00000415999, + 39439.999999399995, + 36269.999995499995, 34159.999998299994 ], "input_power": [ - 4410.0, - 6040.0, - 7240.0, + 4410.000000000001, + 6039.999999999998, + 7240.000000000003, + 9140.0, + 12230.000000000004, + 14730.0, + 4410.000000000002, + 6039.999999999999, + 7240.000000000003, 9140.0, - 12230.0, + 12230.000000000002, 14730.0, - 4780.0, - 6610.0, - 7740.0, + 4780.000000000002, + 6609.999999999997, + 7740.000000000002, 9400.0, - 12470.0, + 12470.000000000004, 14750.0, - 5510.0, - 6660.0, - 8440.0, - 9950.0, - 13060.0, - 15350.0, - 6780.0, - 7790.0, - 8810.0, - 10010.0, - 11910.0, + 5510.000000000005, + 6660.000000000002, + 8440.000000000002, + 9949.999999999998, + 13059.999999999998, + 15349.999999999993, + 6780.000000000001, + 7789.999999999998, + 8810.000000000002, + 10009.999999999998, + 11910.000000000002, + 13350.0, + 6780.000000000001, + 7789.999999999998, + 8810.000000000002, + 10009.999999999998, + 11910.000000000002, 13350.0 ] } diff --git a/examples/NyleC90A_MP.json b/examples/NyleC90A_MP.json index 768a7dc..9951b41 100644 --- a/examples/NyleC90A_MP.json +++ b/examples/NyleC90A_MP.json @@ -31,7 +31,8 @@ 277.59444444444443, 288.7055555555555, 299.81666666666666, - 305.3722222222222 + 305.3722222222222, + 327.59444444444443 ], "heat_source_temperature": [ 277.59444444444443, @@ -44,55 +45,67 @@ }, "lookup_variables": { "heating_capacity": [ - 21130.0000002, - 20980.00000136, - 20279.99999728, - 19899.99999632, - 19199.99999711, - 18740.00000001, - 29019.99999946, - 28189.99999858, - 27370.000003139998, + 21130.000000200005, + 20980.00000136001, + 20279.999997280003, + 19899.999996320006, + 19199.999997110004, + 18740.000000010004, + 29019.999999459993, + 28189.99999857999, + 27370.00000313999, 26579.999995600003, - 25390.000001760003, - 24580.0000005, - 39400.00000159, - 37689.999998939995, - 36340.000001759996, - 34760.000003149995, + 25390.000001759992, + 24580.000000499993, + 39400.000001590015, + 37689.99999894002, + 36340.00000176, + 34760.00000315, 32489.999994060003, - 30979.9999947, + 30979.999994700007, 45769.999999140004, 43659.99999711, - 41710.00000416, + 41710.00000415999, 39439.999999399995, - 36269.9999955, + 36269.999995499995, + 34159.999998299994, + 45769.999999140004, + 43659.99999711, + 41710.00000415999, + 39439.999999399995, + 36269.999995499995, 34159.999998299994 ], "input_power": [ - 4410.0, - 6040.0, - 7240.0, + 4410.000000000002, + 6039.999999999999, + 7240.000000000003, 9140.0, - 12230.0, + 12230.000000000002, 14730.0, - 4780.0, - 6610.0, - 7740.0, + 4780.000000000002, + 6609.999999999997, + 7740.000000000002, 9400.0, - 12470.0, + 12470.000000000004, 14750.0, - 5510.0, - 6660.0, - 8440.0, - 9950.0, - 13060.0, - 15350.0, - 6780.0, - 7790.0, - 8810.0, - 10010.0, - 11910.0, + 5510.000000000005, + 6660.000000000002, + 8440.000000000002, + 9949.999999999998, + 13059.999999999998, + 15349.999999999993, + 6780.000000000001, + 7789.999999999998, + 8810.000000000002, + 10009.999999999998, + 11910.000000000002, + 13350.0, + 6780.000000000001, + 7789.999999999998, + 8810.000000000002, + 10009.999999999998, + 11910.000000000002, 13350.0 ] } diff --git a/examples/QAHV_N136TAU_HPB_SP.json b/examples/QAHV_N136TAU_HPB_SP.json index 3532743..3b2f970 100644 --- a/examples/QAHV_N136TAU_HPB_SP.json +++ b/examples/QAHV_N136TAU_HPB_SP.json @@ -58,7 +58,8 @@ 307.15, 309.15, 311.15, - 313.15 + 313.15, + 373.15 ], "heat_source_temperature": [ 278.15, @@ -91,31 +92,31 @@ 17065.159167919715, 16386.556194907593, 20394.934714345098, - 19955.190589889644, + 19955.19058988964, 19088.925895378015, - 18059.94422863198, + 18059.944228631975, 17249.942224210463, 20394.934714345098, - 19955.190589889644, + 19955.19058988964, 19088.925895378015, - 18059.94422863198, + 18059.944228631975, 17249.942224210463, - 20068.442989259092, + 20068.44298925909, 19673.26173122385, - 18733.048261652722, + 18733.04826165272, 17784.635551676485, - 17056.97144892632, - 22101.10989590932, - 21608.60487437826, - 20645.586120677213, - 19590.21907196317, + 17056.971448926317, + 22101.109895909318, + 21608.604874378252, + 20645.586120677206, + 19590.219071963165, 18738.001799051915, - 22101.10989590932, - 21608.60487437826, - 20645.586120677213, - 19590.21907196317, + 22101.109895909318, + 21608.604874378252, + 20645.586120677206, + 19590.219071963165, 18738.001799051915, - 21799.005055205507, + 21799.005055205504, 21379.99184098881, 20286.46229471728, 19280.828426580258, @@ -135,32 +136,32 @@ 21931.856015313904, 20834.25043667972, 20008.484147047344, - 25583.810969228944, - 24985.774411235136, - 23811.68247991104, - 22642.859648127072, - 21661.368106280916, - 25583.810969228944, - 24985.774411235136, - 23811.68247991104, - 22642.859648127072, - 21661.368106280916, + 25583.81096922894, + 24985.774411235132, + 23811.682479911036, + 22642.85964812707, + 21661.36810628091, + 25583.81096922894, + 24985.774411235132, + 23811.682479911036, + 22642.85964812707, + 21661.36810628091, 25232.879182191093, - 24681.008445867385, - 23536.388373109745, + 24681.008445867377, + 23536.388373109738, 22305.915216629957, 21447.440209363114, 27325.17024667092, - 26663.796342673053, + 26663.79634267305, 25381.539913431225, 24225.915869435674, 23170.540161413082, 27325.17024667092, - 26663.796342673053, + 26663.79634267305, 25381.539913431225, 24225.915869435674, 23170.540161413082, - 26908.93654715075, + 26908.936547150748, 26357.074544111525, 25089.797213345886, 23859.331240215924, @@ -168,24 +169,24 @@ 28996.153803417852, 28384.04616202688, 26977.772898113486, - 25703.422487035506, - 24669.158841725955, + 25703.42248703551, + 24669.15884172596, 28996.153803417852, 28384.04616202688, 26977.772898113486, - 25703.422487035506, - 24669.158841725955, + 25703.42248703551, + 24669.15884172596, 28557.757243454565, 27910.499594826768, - 26622.783767096178, - 25322.816588814778, - 24309.012523189027, - 30674.182950978236, + 26622.78376709618, + 25322.81658881478, + 24309.01252318903, + 30674.182950978233, 29998.748409041604, 28574.002758884424, 27212.59575452135, 26083.357059081183, - 30674.182950978236, + 30674.182950978233, 29998.748409041604, 28574.002758884424, 27212.59575452135, @@ -466,20 +467,20 @@ 40014.91856223966, 40023.08982644207, 39993.060086477446, - 40003.6168830077, + 40003.61688300769, 39998.33803902207, - 39971.954425801654, + 39971.95442580165, 39993.05955237562, 39993.060086477446, - 40003.6168830077, + 40003.61688300769, 39998.33803902207, - 39971.954425801654, + 39971.95442580165, 39993.05955237562, - 40021.04746052928, - 40000.60837778565, - 40014.92313516783, - 40014.92081452117, - 40023.09084435882, + 40021.04746052927, + 40000.60837778564, + 40014.923135167825, + 40014.92081452116, + 40023.09084435881, 39971.950716725616, 40003.6196680901, 39998.339570044525, @@ -584,6 +585,21 @@ 40000.60425555776, 40014.917843687486, 40014.92381726952, + 40023.09842929096, + 40024.721443974144, + 40003.61601214185, + 39998.337514349856, + 39971.954425801654, + 39993.06670181084, + 40024.721443974144, + 40003.61601214185, + 39998.337514349856, + 39971.954425801654, + 39993.06670181084, + 40021.0487177291, + 40000.60425555776, + 40014.917843687486, + 40014.92381726952, 40023.09842929096 ], "input_power": [ @@ -618,14 +634,14 @@ 17318.609099420188, 17400.36770559626, 16690.60116821493, - 16954.4412161366, - 16943.888654176564, - 16943.888654176564, + 16954.441216136598, + 16943.88865417656, + 16943.88865417656, 16975.549339932142, 16690.60116821493, - 16954.4412161366, - 16943.888654176564, - 16943.888654176564, + 16954.441216136598, + 16943.88865417656, + 16943.88865417656, 16975.549339932142, 17197.137141757034, 17284.736505481567, @@ -647,19 +663,19 @@ 17555.70925732259, 17661.996845293415, 17735.5807908021, - 16933.333092341054, - 17186.622578219674, - 17239.389387853815, - 17186.622578219674, - 17281.604635486416, - 16933.333092341054, - 17186.622578219674, - 17239.389387853815, - 17186.622578219674, - 17281.604635486416, + 16933.33309234105, + 17186.62257821967, + 17239.38938785381, + 17186.62257821967, + 17281.604635486412, + 16933.33309234105, + 17186.62257821967, + 17239.38938785381, + 17186.62257821967, + 17281.604635486412, 17442.415960160823, - 17570.893627014917, - 17678.349166503733, + 17570.893627014913, + 17678.34916650373, 17858.218700066256, 17939.977306242363, 17028.31714952478, @@ -987,11 +1003,11 @@ 9482.45638043443, 10010.138476194754, 10759.44737216113, - 11561.604074399453, - 11240.407407367988, - 12053.326662849546, - 12797.333778894374, - 13271.536094616164, + 11561.60407439945, + 11240.407407367986, + 12053.326662849544, + 12797.333778894372, + 13271.536094616162, 9102.52415153349, 9123.631275370544, 9471.902818515906, @@ -1096,6 +1112,21 @@ 10779.05355830255, 11530.068383455302, 12257.724178248302, + 12707.399512092357, + 8849.237665530347, + 8849.237665530347, + 9493.008942394468, + 10010.138476194754, + 10770.00193403815, + 8849.237665530347, + 8849.237665530347, + 9493.008942394468, + 10010.138476194754, + 10770.00193403815, + 11065.209679877411, + 10779.05355830255, + 11530.068383455302, + 12257.724178248302, 12707.399512092357 ] } From 749532040b6d3edca1dc9fb899c2160228cd98c7 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Wed, 22 Jan 2025 14:03:43 -0700 Subject: [PATCH 13/15] Require outletT. --- schema/RSAIRTOWATERHEATPUMP.schema.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/RSAIRTOWATERHEATPUMP.schema.yaml b/schema/RSAIRTOWATERHEATPUMP.schema.yaml index 14885c8..15d498d 100644 --- a/schema/RSAIRTOWATERHEATPUMP.schema.yaml +++ b/schema/RSAIRTOWATERHEATPUMP.schema.yaml @@ -101,10 +101,10 @@ GridVariables: - "Water temperature may be vertically stratified across the heat source" - "The average water temperature may be weighted according to how heat is distributed to the water from the heat source" outlet_temperature: - Description: "Outlet temperature used by single-pass central water-heating systems" + Description: "Outlet temperature" Data Type: "[Numeric]" Units: "K" - Required: False + Required: True LookupVariables: Object Type: "Data Group" From 9de6455acdb82edfa5686fdd9ea5258c8ba08b61 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Wed, 22 Jan 2025 14:48:13 -0700 Subject: [PATCH 14/15] Replace examples. --- examples/ColmacCxA_10_MP.json | 3 +++ examples/ColmacCxA_15_MP.json | 3 +++ examples/ColmacCxA_20_MP.json | 3 +++ examples/ColmacCxA_25_MP.json | 3 +++ examples/ColmacCxA_30_MP.json | 3 +++ examples/ColmacCxV_5_MP.json | 3 +++ examples/NyleC125A_C_MP.json | 3 +++ examples/NyleC125A_MP.json | 3 +++ examples/NyleC185A_C_MP.json | 3 +++ examples/NyleC185A_MP.json | 3 +++ examples/NyleC250A_C_MP.json | 3 +++ examples/NyleC250A_MP.json | 3 +++ examples/NyleC60A_C_MP.json | 3 +++ examples/NyleC60A_MP.json | 3 +++ examples/NyleC90A_C_MP.json | 3 +++ examples/NyleC90A_MP.json | 3 +++ examples/RheemHPHD135.json | 3 +++ examples/RheemHPHD60.json | 3 +++ examples/Scalable_MP.json | 3 +++ 19 files changed, 57 insertions(+) diff --git a/examples/ColmacCxA_10_MP.json b/examples/ColmacCxA_10_MP.json index 5e4b59f..a52c702 100644 --- a/examples/ColmacCxA_10_MP.json +++ b/examples/ColmacCxA_10_MP.json @@ -94,6 +94,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/ColmacCxA_15_MP.json b/examples/ColmacCxA_15_MP.json index fa97ea2..3d272b4 100644 --- a/examples/ColmacCxA_15_MP.json +++ b/examples/ColmacCxA_15_MP.json @@ -94,6 +94,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/ColmacCxA_20_MP.json b/examples/ColmacCxA_20_MP.json index 20d67b5..4f63463 100644 --- a/examples/ColmacCxA_20_MP.json +++ b/examples/ColmacCxA_20_MP.json @@ -94,6 +94,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/ColmacCxA_25_MP.json b/examples/ColmacCxA_25_MP.json index 31fc29d..cd93aad 100644 --- a/examples/ColmacCxA_25_MP.json +++ b/examples/ColmacCxA_25_MP.json @@ -94,6 +94,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/ColmacCxA_30_MP.json b/examples/ColmacCxA_30_MP.json index e5ed4c0..bd38bd1 100644 --- a/examples/ColmacCxA_30_MP.json +++ b/examples/ColmacCxA_30_MP.json @@ -94,6 +94,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/ColmacCxV_5_MP.json b/examples/ColmacCxV_5_MP.json index 347363b..46d2c59 100644 --- a/examples/ColmacCxV_5_MP.json +++ b/examples/ColmacCxV_5_MP.json @@ -97,6 +97,9 @@ 329.15, 331.15, 333.15 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC125A_C_MP.json b/examples/NyleC125A_C_MP.json index b762265..e90b2cb 100644 --- a/examples/NyleC125A_C_MP.json +++ b/examples/NyleC125A_C_MP.json @@ -42,6 +42,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC125A_MP.json b/examples/NyleC125A_MP.json index 392476f..47043aa 100644 --- a/examples/NyleC125A_MP.json +++ b/examples/NyleC125A_MP.json @@ -41,6 +41,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC185A_C_MP.json b/examples/NyleC185A_C_MP.json index 43000c1..96757bc 100644 --- a/examples/NyleC185A_C_MP.json +++ b/examples/NyleC185A_C_MP.json @@ -42,6 +42,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC185A_MP.json b/examples/NyleC185A_MP.json index b6dbeef..48357aa 100644 --- a/examples/NyleC185A_MP.json +++ b/examples/NyleC185A_MP.json @@ -41,6 +41,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC250A_C_MP.json b/examples/NyleC250A_C_MP.json index a5b6a10..921f4dd 100644 --- a/examples/NyleC250A_C_MP.json +++ b/examples/NyleC250A_C_MP.json @@ -42,6 +42,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC250A_MP.json b/examples/NyleC250A_MP.json index 2060cab..f6e3f41 100644 --- a/examples/NyleC250A_MP.json +++ b/examples/NyleC250A_MP.json @@ -41,6 +41,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC60A_C_MP.json b/examples/NyleC60A_C_MP.json index d4bd0e4..0bf2ae4 100644 --- a/examples/NyleC60A_C_MP.json +++ b/examples/NyleC60A_C_MP.json @@ -42,6 +42,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC60A_MP.json b/examples/NyleC60A_MP.json index 01e994a..bc81f65 100644 --- a/examples/NyleC60A_MP.json +++ b/examples/NyleC60A_MP.json @@ -41,6 +41,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC90A_C_MP.json b/examples/NyleC90A_C_MP.json index f813790..c28f948 100644 --- a/examples/NyleC90A_C_MP.json +++ b/examples/NyleC90A_C_MP.json @@ -42,6 +42,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/NyleC90A_MP.json b/examples/NyleC90A_MP.json index 9951b41..c01621f 100644 --- a/examples/NyleC90A_MP.json +++ b/examples/NyleC90A_MP.json @@ -41,6 +41,9 @@ 310.92777777777775, 327.59444444444443, 338.7055555555555 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/RheemHPHD135.json b/examples/RheemHPHD135.json index 540162b..8a82d51 100644 --- a/examples/RheemHPHD135.json +++ b/examples/RheemHPHD135.json @@ -88,6 +88,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/RheemHPHD60.json b/examples/RheemHPHD60.json index 5fde0c8..11bdae4 100644 --- a/examples/RheemHPHD60.json +++ b/examples/RheemHPHD60.json @@ -88,6 +88,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { diff --git a/examples/Scalable_MP.json b/examples/Scalable_MP.json index b70e933..c8fab09 100644 --- a/examples/Scalable_MP.json +++ b/examples/Scalable_MP.json @@ -164,6 +164,9 @@ 340.3104938271605, 342.2858024691358, 344.26111111111106 + ], + "outlet_temperature": [ + 330.3722222222222 ] }, "lookup_variables": { From 9afac7d07ec935df5b29e2b2d12f494f8036f214 Mon Sep 17 00:00:00 2001 From: Phil Ahrenkiel Date: Thu, 23 Jan 2025 09:46:53 -0700 Subject: [PATCH 15/15] Change field names. --- schema/RSAIRTOWATERHEATPUMP.schema.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schema/RSAIRTOWATERHEATPUMP.schema.yaml b/schema/RSAIRTOWATERHEATPUMP.schema.yaml index 15d498d..f31d16d 100644 --- a/schema/RSAIRTOWATERHEATPUMP.schema.yaml +++ b/schema/RSAIRTOWATERHEATPUMP.schema.yaml @@ -92,16 +92,16 @@ GridVariables: Data Type: "[Numeric]" Units: "K" Required: True - heat_source_temperature: - Description: "Average water temperature at the heat source" + condenser_entering_temperature: + Description: "Average water temperature entering the condenser" Data Type: "[Numeric]" Units: "K" Required: True Notes: - "Water temperature may be vertically stratified across the heat source" - "The average water temperature may be weighted according to how heat is distributed to the water from the heat source" - outlet_temperature: - Description: "Outlet temperature" + condenser_leaving_temperature: + Description: "Average water temperature leaving the condenser" Data Type: "[Numeric]" Units: "K" Required: True